     body {
      font-family: Poppins, sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    .marquee {
      background-color: blue;
      width: 100%;
      color: white;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
    }
    .marquee span {
      display: inline-block;
      padding-left: 100%;
      animation: marquee 10s linear infinite;
    }
    @keyframes marquee {
      0% { transform: translate(0, 0); }
      100% { transform: translate(-100%, 0); }
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px;
      flex-grow: 1;
    }
    .header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .header .title {
      font-size: 2em;
      font-weight: bold;
      color: #1a202c;
    }
    .header .subtitle {
      margin-top: 8px;
      font-size: 0.875em;
      color: #6b7280;
    }
    @media (min-width: 640px) {
      .header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }
    
    /* Style for search bar */
  .search-bar {
    width: 100%;
    max-width: 300px; /* Lebar maksimum dikurangi menjadi 300px */
    margin-top: 16px;
    position: relative;
    display: flex;
  }
  .search-bar input[type="text"] {
    flex-grow: 1;
    width: 100%;
    padding: 8px 16px; /* Padding dikurangi */
    border-radius: 8px 0 0 8px;
    border: 1px solid #e5e7eb;
    font-size: 0.875em; /* Ukuran font dikurangi */
    box-sizing: border-box;
  }
  .search-bar button {
    padding: 8px 16px; /* Padding dikurangi */
    background-color: #4f46e5;
    color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 0.875em; /* Ukuran font dikurangi */
    box-sizing: border-box;
  }
  .search-bar button:hover {
    background-color: #4338ca;
  }

    /* Style for product boxes */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
    @media (min-width: 640px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 1024px) {
      .product-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    .product-box {
      background-color: #f3f4f6;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 16px;
      text-align: center;
    }
    .product-box img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 16px;
    }
    .product-box h2 {
      font-size: 1.25em;
      font-weight: bold;
      margin-bottom: 8px;
      color: #1f2937;
    }
    .product-box p {
      color: #4b5563;
      margin-bottom: 16px;
      text-align: justify;
    }
    .product-box .price {
      font-size: 1.5em;
      color: #4f46e5;
      margin-bottom: 16px;
    }
    .whatsapp-button {
      display: inline-block;
      padding: 12px 24px;
      background-color: #25d366;
      color: white;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 16px;
      transition: background-color 0.2s;
    }
    .whatsapp-button:hover {
      background-color: #1ebe5b;
    }

    /* Footer styling */
    .footer {
        background-color: #222;
        color: #fff;
        text-align: center;
        padding: 20px 0;
        font-size: 14px;
    }
    .footer-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
    }
    .footer-section {
        flex: 1;
        margin: 10px;
    }
    .footer-section h3 {
        border-bottom: 2px solid #fff;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    .footer-section a img {
        width: 24px;
        margin: 5px;
    }
    .footer-bottom {
        margin-top: 20px;
        border-top: 1px solid #444;
        padding-top: 10px;
    }
    
    h3 {
    	text-align: center;
    	color: #FF8C00;
    }
    
    /*scroll-top-up*/
.scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: none;
      background-color: #4f46e5;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 16px;
    }
    .scroll-top:hover {
      background-color: #4338ca;
    }