/* Reset & Base Styles */
      :root {
        --primary: #23251a;
        --secondary: #181a13;
        --accent: #23251a;
        --text: #f8f8f8;
        --card: rgba(60, 66, 40, 0.6);
        --border: #3c4228;
        --highlight: #f8f8f8;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Poppins", sans-serif;
        background: var(--secondary);
        color: var(--text);
        line-height: 1.6;
      }
      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 60px;
        background: var(--primary);
        color: var(--text);
        position: sticky;
        top: 0;
        z-index: 10;
      }
      header h1 {
        font-size: 24px;
        font-weight: 700;
      }
      nav ul {
        display: flex;
        gap: 30px;
        list-style: none;
      }
      nav ul li a {
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
      }
      nav ul li a:hover {
        color: var(--highlight);
      }
      .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 80px 60px;
        background: var(--accent);
        flex-wrap: wrap;
      }
      .hero-text {
        max-width: 500px;
      }
      .hero-text h2 {
        font-size: 40px;
        margin-bottom: 20px;
        color: var(--highlight);
      }
      .hero-text span {
        color: var(--text);
        font-weight: bold;
        background: #3c4228;
        padding: 2px 8px;
        border-radius: 5px;
      }
      .btn {
        display: inline-block;
        background: #3c4228;
        color: var(--text);
        padding: 10px 20px;
        border-radius: 8px;
        text-decoration: none;
        margin-top: 15px;
        transition: transform 0.3s, background 0.3s;
        border: none;
        cursor: pointer;
      }
      .btn:hover {
        background: #181a13;
        color: var(--highlight);
        transform: scale(1.05);
      }
      .hero img {
        width: 400px;
        border-radius: 20px;
        transition: transform 0.4s;
      }
      .hero img:hover {
        transform: rotate(-2deg) scale(1.05);
      }
      .products {
        padding: 60px;
      }
      .products h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 32px;
        color: var(--highlight);
      }
      .products h3 {
        color: var(--highlight);
        margin-top: 30px;
        margin-bottom: 10px;
      }
      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-left: 10px;
      }
      .product {
        background: var(--card);
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid var(--border);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        min-width: 200px;
        max-width: 250px;
        margin: 0 auto;
      }
      .product img {
        width: 100%;
        max-width: 180px;
        height: auto;
        border-radius: 12px;
        margin-bottom: 15px;
        background: var(--secondary);
        object-fit: contain;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }
      .product:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        border-color: var(--highlight);
      }
      .product h3 {
        margin: 10px 0;
        color: var(--highlight);
      }
      .product p {
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--text);
      }
      select {
        padding: 5px;
        margin: 10px 0;
        width: 100%;
        border-radius: 6px;
        border: 1px solid var(--border);
        background: #23251a;
        color: var(--text);
      }
      .cart {
        margin-top: 60px;
        padding: 30px;
        border-radius: 15px;
        background: var(--card);
        color: var(--text);
        border: 1px solid var(--border);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }
      .cart h2 {
        margin-bottom: 20px;
        text-align: center;
        color: var(--highlight);
      }
      .cart ul {
        list-style: none;
        padding: 0;
      }
      .cart ul li {
        border-bottom: 1px dashed var(--border);
        padding: 5px 0;
      }
      .total {
        font-weight: bold;
        margin-top: 15px;
        text-align: right;
        color: var(--highlight);
      }
      #map {
        height: 300px;
        margin-top: 20px;
        border-radius: 12px;
        overflow: hidden;
        margin-left: 5px;
        margin-right: 5px;
      }
      footer {
        margin-top: 80px;
        background: var(--primary);
        color: var(--text);
        text-align: center;
        padding: 20px;
      }

      /* SWIPE GRID MOBILE */
      @media (max-width: 768px) {
        header {
          flex-direction: column;
          padding: 15px 20px;
          gap: 10px;
        }
        h1 {
          display: none;
        }
        .hero {
          flex-direction: column;
          padding: 40px 20px;
          text-align: center;
        }
        .hero img {
          width: 90vw;
          max-width: 320px;
          margin-top: 25px;
        }
        .products {
          padding: 30px 10px;
        }
        .cart {
          padding: 15px 5px;
          margin-top: 30px;
        }
        /* ubah grid jadi horizontal scroll */
        .grid {
          display: flex;
          flex-direction: row;
          overflow-x: auto;
          gap: 16px;
          padding-bottom: 10px;
          scroll-snap-type: x mandatory;
        }
        .product {
          flex: 0 0 75vw;
          max-width: 80vw;
          min-width: 220px;
          margin: 0;
          scroll-snap-align: start;
        }
        .product img {
          max-width: 60vw;
          min-width: 120px;
        }
      }

      @media (max-width: 480px) {
        header {
          padding: 10px 5vw;
        }
        .hero-text h2 {
          font-size: 26px;
        }
        .products h2 {
          font-size: 22px;
        }
        .product {
          padding: 10px 5px;
        }
        .cart {
          font-size: 15px;
        }
        #map {
          height: 180px;
        }
        footer {
          padding: 12px 5px;
          font-size: 14px;
        }
        .grid {
          gap: 10px;
        }
        .product {
          min-width: 180px;
          max-width: 90vw;
        }
        .product img {
          max-width: 80vw;
        }
      }
