
        .banner-section {
            margin: 20px 0;
        }

        .banner-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .banner-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .banner-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            
            /* Efek transisi smooth */
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            
            /* Shadow untuk efek depth */
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slider-prev:hover {
    transform: translateY(-50%) translateX(0) scale(1.1);
}

.slider-next:hover {
    transform: translateY(-50%) translateX(0) scale(1.1);
}

.slider-nav i {
    font-size: 16px;
    font-weight: bold;
}

        .slider-prev {
            left: 15px;
            transform: translateY(-50%) translateX(-10px);
        }
        
        .slider-next {
            right: 15px;
            transform: translateY(-50%) translateX(10px);
        }
        
        .banner-slider:hover .slider-nav {
    opacity: 1;
    visibility: visible;
}

.banner-slider:hover .slider-prev {
    transform: translateY(-50%) translateX(0);
}

.banner-slider:hover .slider-next {
    transform: translateY(-50%) translateX(0);
}

        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 3;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-dot:hover {
            background: rgba(255,255,255,0.8);
        }
        
        
        .product-carousel-container {
    position: relative;
    margin: 20px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.product-container {
    display: flex;
    transition: transform 0.3s ease;
    gap: 15px;
}

.product-card {
    flex: 0 0 auto;
    width: 180px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #f8f9fa;
}

.product-info {
    padding: 12px;
}

.product-title {
    font-size: 13px;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 35px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #212128;
    margin-bottom: 4px;
}

.product-location {
    font-size: 11px;
    color: #9CA3AF;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
}

.rating-stars {
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-text {
    color: #6B7280;
}

.city-badge {
    background: #E8F5E8;
    color: var(--primary-blue);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20; /* Naikkan z-index dari 10 ke 20 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* Perkuat shadow */
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

.nav-button:hover {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-carousel-container:hover .nav-button {
    opacity: 1;
    visibility: visible;
}
.nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-prev {
    left: 5px;
}

.nav-next {
    right: 5px;
}

.nav-button i {
    color: #000;
    font-size: 14px;
}

@media (max-width: 768px) {
    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* KUNCI: 2 kolom dengan lebar sama */
        gap: 12px !important;
    }
    
    .product-card-grid {
        width: 100% !important; /* Biarkan mengikuti grid container */
        max-width: none !important;
    }
    
    .product-image-container {
        height: 140px; /* Sesuaikan tinggi gambar */
    }
    
    .product-info-grid {
        padding: 10px;
    }
    
    .product-title-grid {
        font-size: 12px;
        height: 32px;
        line-height: 1.2;
    }
    
    .nav-button {
        display: none;
    }
    
    .carousel-wrapper {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .product-container {
        transition: none;
    }
    
    .tab-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .product-price-grid {
        gap: 4px;
    }
    
    .discount-badge {
        font-size: 9px;
        padding: 1px 4px;
    }
    
    .wishlist-btn {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
    }
    
    .wishlist-btn i {
        font-size: 12px;
    }
}

/* Mobile kecil - UBAH INI JUGA */
@media (max-width: 576px) {
    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* TETAP 2 kolom */
        gap: 10px !important;
    }
    
    .product-card-grid {
        width: 100% !important;
    }
    
    .product-image-container {
        height: 120px; /* Lebih kecil untuk mobile */
    }
    
    .product-info-grid {
        padding: 8px;
    }
    
    .product-title-grid {
        font-size: 11px;
        height: 30px;
        line-height: 1.2;
    }
    
    .product-price-grid {
        margin-bottom: 4px;
    }
    
    .price-discount, .price-normal {
        font-size: 12px;
    }
    
    .product-rating-grid {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .product-store {
        font-size: 10px;
    }
    
    .tab-navigation {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tab-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .tab-item {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Extra small mobile */
@media (max-width: 320px) {
    .product-grid {
        gap: 8px !important;
    }
    
    .product-image-container {
        height: 100px;
    }
    
    .product-info-grid {
        padding: 6px;
    }
    
    .product-title-grid {
        font-size: 10px;
        height: 28px;
    }
}

.product-section {
    margin: 20px 0;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.tab-item {
    padding: 12px 20px;
    text-decoration: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.tab-item:hover {
    color: var(--primary-blue);
}

.tab-item.active {
    color: var(--primary-blue);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.product-card-grid {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

.product-card-grid:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-image-grid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wishlist Button */
.discount-badge {
    background: #ef4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.wishlist-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: scale(1.1);
}

.wishlist-btn i {
    color: #6b7280;
    font-size: 14px;
    transition: color 0.2s ease;
}

.wishlist-btn:hover i {
    color: #ef4444;
}

.wishlist-btn.active i {
    color: #ef4444;
}

.wishlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
}

.badge-ready {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

@keyframes heartPump {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.wishlist-btn.active {
    animation: heartPump 0.3s ease;
}

/* Product Info */
.product-info-grid {
    padding: 12px;
}

.product-card-grid:hover .product-image-grid {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.product-image-grid {
    transition: transform 0.3s ease;
}

.product-title-grid {
    font-size: 13px;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 35px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Price */
.product-price-grid {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.price-normal {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
}

.price-discount {
    font-size: 14px;
    font-weight: 600;
    color: #212128;
}

/* Bonus/Promo */
.product-bonus {
    font-size: 11px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 500;
}

.bonus-cod {
    color: #3b82f6;
}

/* Rating */
.product-rating-grid {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 11px;
}

.rating-stars-grid {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbf24;
}

.rating-count {
    color: #6b7280;
}

/* Store */
.product-store {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6b7280;
}

.verified-icon {
    color: var(--primary-blue);
    font-size: 10px;
}

.tab-content {
    transition: opacity 0.3s ease;
}

.tab-content.active {
    opacity: 1;
}

.tab-content:not(.active) {
    opacity: 0;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.badge-ready {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.no-products {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.no-products i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-products p {
    font-size: 16px;
    margin: 0;
}