
.containermargin{
    width: 90%;
    margin: auto;
}
/* Overlay sederhana jika autoplay diblokir */
    #play-overlay {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.6);
      color: white;
      font-family: sans-serif;
      z-index: 9999;
      gap: 12px;
      flex-direction: column;
    }
    #play-overlay button {
      padding: 12px 20px;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }
    /* Hidden by default */
    #play-overlay.hidden { display: none; }
        /* Search Results Styles */
        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--card-bg);
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            max-height: 400px;
            overflow-y: auto;
            z-index: 1001;
            display: none;
        }

  #popup-ads {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .popup-content {
    position: relative;
    width: 50%;
    /* background: #1aff00; */
    /* border-radius:50px; */
    /* padding: 3px; */
    box-shadow: 0 5px 15px rgba(65, 65, 65, 0.3);
  }
  .close-btn {
    position: absolute;
    top: 7px;
    right: 10px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
  }
        .search-result-item {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            border-bottom: 1px solid var(--accent);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-result-item:hover {
            background-color: var(--accent);
        }

        .search-result-img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 6px;
            margin-right: 15px;
            background-color: var(--accent);
        }

        .search-result-info {
            flex: 1;
        }

        .search-result-name {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
            color: var(--text-primary);
        }

        .search-result-price {
            font-size: 11px;
            font-weight: 500;
            color: var(--highlight);
        }

        .search-result-type {
            font-size: 12px;
            color: var(--text-secondary);
            background-color: var(--accent);
            padding: 3px 8px;
            border-radius: 4px;
            margin-left: 10px;
        }

        .no-results {
            padding: 20px;
            text-align: center;
            color: var(--text-secondary);
        }

        /* Search loading indicator */
        .search-loading {
            display: none;
            position: absolute;
            right: 45px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
        }

        /* Price options for products */
        .price-options {
            margin-top: 10px;
            display: none;
        }

        .price-option {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            border-bottom: 1px dashed var(--accent);
        }

        .price-option:last-child {
            border-bottom: none;
        }

        .duration {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .product-card:hover .price-options {
            display: block;
        }
        /* tombol default hidden */
.product-card .overview-btn {
  display: none;
  margin-top: 10px;
  padding: 8px 12px;
  width: 100%;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

/* kalau card aktif → tombol muncul */
.product-card.active .overview-btn {
  display: inline-block;
}

        :root {
            --primary: #0a0a0a;
            --secondary: #ffffff;
            --accent: #1f1f1f;
            --text-primary: #f5f5f5;
            --text-secondary: #b0b0b0;
            --highlight: #a9ff00;
            --card-bg: #141414;
            --section-bg: #111111;
            --success: #4caf50;
            --warning: #ff9800;
            --danger: #f44336;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--primary);
            color: var(--text-primary);
            min-height: 100vh;
            padding-bottom: 70px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid var(--accent);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 15px;
        }

        .logo {
            font-size: 26px;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .logo span {
            color: var(--highlight);
        }

        .logo-icon {
            font-size: 20px;
            color: var(--highlight);
        }

        .search-bar {
            flex-grow: 1;
            max-width: 700px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 20px;
            padding-right: 50px;
            border-radius: 30px;
            border: none;
            background-color: var(--accent);
            color: var(--text-primary);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .search-bar input:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--highlight);
        }

        .search-bar i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            cursor: pointer;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-icon {
            color: var(--secondary);
            font-size: 22px;
            position: relative;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        a {
            text-decoration: none;
        }

        .header-icon:hover {
            transform: scale(1.1);
            color: var(--highlight);
        }

        .badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--highlight);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .tooltip {
            position: relative;
            display: inline-block;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: var(--accent);
            color: var(--text-primary);
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 12px;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

        /* Panel Informasi */
        .info-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 380px;
            height: 100vh;
            background-color: var(--primary);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            z-index: 1100;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .info-panel.active {
            right: 0;
        }

        .panel-header {
            padding: 20px;
            border-bottom: 1px solid var(--accent);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .panel-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--highlight);
        }

        .close-panel {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-panel:hover {
            color: var(--highlight);
        }

        .panel-content {
            padding: 20px;
            overflow-y: auto;
            flex-grow: 1;
        }

        .info-item {
            padding: 15px 0;
            border-bottom: 1px solid var(--accent);
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--highlight);
        }

        .info-desc {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }


        /* Navigation */
        nav {
            background-color: var(--accent);
            padding: 12px 0;
            overflow-x: auto;
            white-space: nowrap;
            position: sticky;
            top: 60px;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-links {
            display: inline-flex;
            gap: 25px;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--secondary);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--highlight);
        }

        /* Hero Banner */
        .hero {
            background-color: var(--section-bg);
            padding: 25px 0;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .banner-slider {
            position: relative;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
.banner {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-img.active {
  opacity: 1;
}

        .banner-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
        }

        .banner-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .banner-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            max-width: 600px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }



        /* Categories */
        .categories {
            padding: 30px 0;
            background-color: var(--primary);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 0 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

      

        .view-all {
            color: var(--highlight);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .view-all:hover {
            gap: 8px;
        }

        .categories-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .categories-container::-webkit-scrollbar {
            display: none;
        }

        .categories-scroll {
            display: flex;
            gap: 20px;
            padding-top: 25px;
            padding-bottom: 15px;

        }

        .category-item {
            min-width: 100px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-item:hover {
            transform: translateY(-5px);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            background-color: var(--card-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .category-item:hover .category-icon {
            background-color: var(--highlight);
            box-shadow: 0 6px 16px rgba(166, 255, 0, 0.3);
        }

        .category-icon i {
            font-size: 28px;
            color: var(--highlight);
            transition: all 0.3s ease;
        }

        .category-item:hover .category-icon i {
            color: white;
            transform: scale(1.1);
        }

        .category-name {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .category-item:hover .category-name {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Flash Sale */
        .flash-sale {
            padding-top: 25px;
            padding-bottom: 10px;
            background-color: var(--highlight);
            background-color: var(--highlight);
            position: relative;
            border-radius: 10px;
        }

        .flash-sale::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
            pointer-events: none;
        }

        .flash-sale-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 0 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .sale-tag {
            background-color: var(--danger);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            margin-right: 10px;
            display: inline-block;
        }

        .timer {
            display: flex;
            align-items: center;
            gap: 8px;
            color: black;
            font-weight: 600;
            font-size: 16px;
        }

        .timer-box {
            background-color: rgba(0, 0, 0, 0.312);
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            min-width: 40px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .products-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 10px 20px;
            scrollbar-width: none;
            scroll-behavior: smooth;
        }

        .products-scroll::-webkit-scrollbar {
            display: none;
        }

        .product-card {
            min-width: 200px;
            width: 200px;
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            position: relative;
            flex-shrink: 0;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--highlight);
            color: white;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .product-image {
            width: 100%;
            height: 180px;
            background-color: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .product-wishlist {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 32px;
            height: 32px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .product-wishlist:hover {
            background-color: var(--highlight);
            transform: scale(1.1);
        }

        .product-details {
            padding: 15px;
        }

        .product-name {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            height: 40px;
        }

        .product-price-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .product-price {
            font-weight: 700;
            color: var(--highlight);
            font-size: 18px;
        }

        .product-original-price {
            font-size: 10px;
            color: var(--text-secondary);
            text-decoration: line-through;
        }

        .product-discount {
            font-size: 12px;
            font-weight: 600;
            color: var(--success);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 8px;
        }

        .stars {
            color: var(--warning);
            font-size: 12px;
        }

        .rating-count {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .product-sold {
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-sold::before {
            content: '';
            width: 4px;
            height: 4px;
            background-color: var(--text-secondary);
            border-radius: 50%;
            display: inline-block;
        }

        .product-location {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Recommended Products */
        .recommended {
            padding: 30px 0;
            background-color: var(--primary);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            padding: 0 20px;
            max-width: 1400px;
            margin: 0 auto;
        }


/* Styling untuk container produk */
.allproduct {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px;
    perspective: 1000px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Styling untuk card produk */
.product-card-visa {
    height: 280px;
    perspective: 1500px;
    cursor: pointer;
}

.card-inner-visa {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.product-card-visa:hover .card-inner-visa {
    transform: rotateY(180deg);
}

.card-front-visa, .card-back-visa {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-front-visa {
    background: linear-gradient(135deg, #0c0c0c 0%, #232323 100%);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.card-back-visa {
    background: linear-gradient(135deg, #0c0c0c 0%, #232323 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
}



/* Gambar produk */
.card-image-container-visa {
    position: relative;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image-visa {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge-visa {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Detail produk */
.card-details-visa {
    flex-grow: 1;
}

.product-title-visa {
    font-size: 14px;
    margin: 0 0 10px 0;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-container-visa {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.price-label-visa {
    font-size: 10px;
    color: #aaa;
    margin-right: 5px;
}

.current-price-visa {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-right: 5px;
}

.price-duration-visa {
    font-size: 10px;
    color: #aaa;
}

/* Footer kartu */
.card-footer-visa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.rating-visa {
    display: flex;
    align-items: center;
}

.stars-visa {
    color: gold;
    margin-right: 5px;
    font-size: 12px;
}

.rating-value-visa {
    font-size: 12px;
    color: #aaa;
}

.location-visa {
    font-size: 12px;
    color: #aaa;
}

/* Bagian belakang kartu */
.magnetic-strip-visa {
    height: 40px;
    background: linear-gradient(90deg, #000000 0%, #333333 50%, #000000 100%);
    margin: -20px -20px 15px -20px;
}

.card-back-content-visa h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.product-description-visa {
    font-size: 12px;
    color: #ccc;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-stats-visa {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat-item-visa {
    text-align: center;
}

.stat-value-visa {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.stat-label-visa {
    font-size: 10px;
    color: #aaa;
}

.signature-strip-visa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.signature-visa {
    font-style: italic;
    font-size: 12px;
    color: #ccc;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.cvv-visa {
    font-size: 12px;
    color: #fff;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .allproduct {
        grid-template-columns: repeat(2, 1fr);
    }
        .popup-content {
    width: 80%;
   
  }
}

@media (max-width: 768px) {
    .allproduct {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .product-card-visa {
        height: 250px;
    }
     
}

@media (max-width: 480px) {
    .allproduct {
        grid-template-columns: 1fr;
    }

    .product-card-visa {
        height: 260px;
    }
    
    .card-front-visa, .card-back-visa {
        padding: 15px;
    }
}
        
        /* Footer */
        footer {
            background-color: var(--primary);
            padding: 40px 0 20px;
            border-top: 1px solid var(--accent);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--highlight);
            padding-left: 5px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--highlight);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--accent);
            color: var(--text-secondary);
            font-size: 13px;
        }

        /* Mobile Bottom Nav */
        .mobile-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--primary);
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            border-top: 1px solid var(--accent);
            z-index: 1000;
            display: none;
        }

        .mobile-nav-item {
            text-align: center;
            color: var(--text-secondary);
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
        }

        .mobile-nav-item.active {
            color: var(--highlight);
        }

        .mobile-nav-item i {
            display: block;
            font-size: 22px;
            margin-bottom: 5px;
        }

        .mobile-nav-item span {
            display: block;
        }

        .mobile-nav-item:hover {
            color: var(--highlight);
            transform: translateY(-3px);
        }

        /* Scroll buttons */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 10;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .scroll-btn.left {
            left: 10px;
        }

        .scroll-btn.right {
            right: 10px;
        }

        .products-container:hover .scroll-btn {
            opacity: 1;
        }
        .clrwhite{
            color: black;
        }
        /* Responsive */
        @media (max-width: 1200px) {
            .banner {
                height: 280px;
            }
            
            .banner-title {
                font-size: 28px;
            }
        }

        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
                row-gap: 15px;
            }
            
            .search-bar {
                order: 3;
                flex: 1 0 100%;
            }
            
            nav {
                top: 112px;
            }
            
            .banner {
                height: 240px;
            }
            
            .banner-title {
                font-size: 24px;
            }
            
            .banner-subtitle {
                font-size: 14px;
            }
            
            .category-icon {
                width: 60px;
                height: 60px;
            }
            
            .category-icon i {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 22px;
            }
            
            .header-icon {
                font-size: 20px;
            }
            
            nav {
                top: 104px;
            }
             .info-panel {
                width: 320px;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .search-bar {
                order: 3;
                max-width: 100%;
                margin-top: 10px;
                flex-basis: 100%;
            }
            .banner {
                height: 200px;
            }
            
            .banner-title {
                font-size: 20px;
            }
            
            .banner-btn {
                padding: 8px 20px;
                font-size: 14px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .products-grid, .discover-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 15px;
            }
            
            .product-card {
                min-width: 160px;
                width: 160px;
            }
            
            .product-image {
                height: 150px;
            }
            
            .mobile-nav {
                display: flex;
            }
            .discover-grid {
        grid-template-columns: repeat(2, 1fr); /* mobile: 2 kolom per baris */
    }
        }

        @media (max-width: 576px) {
            .header-container {
                padding: 10px 15px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            nav {
                top: 94px;
                padding: 10px 0;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .banner {
                height: 180px;
            }
            
            .banner-content {
                padding: 20px;
            }
            
            .banner-title {
                font-size: 18px;
                margin-bottom: 5px;
            }
            
            .category-item {
                min-width: 80px;
            }
            
            .category-icon {
                width: 50px;
                height: 50px;
            }
            
            .category-icon i {
                font-size: 20px;
            }
            
            .category-name {
                font-size: 12px;
            }
            
            .products-grid, .discover-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 12px;
            }
            
            .product-card {
                min-width: 140px;
                width: 140px;
            }
            
            .product-image {
                height: 130px;
            }
            
            .product-name {
                font-size: 13px;
            }
            
            .product-price {
                font-size: 16px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
              .info-panel {
                width: 100%;
                right: -100%;
            }
            
            .logo {
                font-size: 20px;
            }
            
            .header-icon {
                font-size: 20px;
            }
        }

        /* Animation Keyframes */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

         /* Tooltip */
        .tooltip {
            position: relative;
            display: inline-block;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            top: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 12px;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }