        :root {
            --primary-dark: #7B3F00;
            --primary-medium: #C17736;
            --primary-light: #E39E4B;
            --accent-dark: #8D6E63;
            --accent-light: #D7CCC8;
            --background: #FFF9F0;
            --card-bg: #FFFFFF;
            --text-dark: #4E342E;
            --text-medium: #795548;
            --text-light: #FFFFFF;
            --shadow: 0 4px 20px rgba(123, 63, 0, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: var(--background);
            color: var(--text-dark);
            font-family: 'Raleway', sans-serif;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* Top Bar Styles */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: var(--text-light);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 900;
            letter-spacing: 1px;
            cursor: pointer;
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .logo .ampersand {
            font-size: 2.8rem;
            color: var(--accent-light);
            margin: 0 0.2rem;
            font-weight: 400;
        }
        
        .search-container {
            display: flex;
            align-items: center;
            flex: 0 1 500px;
            position: relative;
        }
        
        .search-container input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            color: var(--text-light);
            border-radius: 30px 0 0 30px;
            font-family: 'Raleway', sans-serif;
            transition: all 0.3s ease;
        }
        
        .search-container input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
        }
        
        .search-container input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-container button {
            padding: 0.9rem 1.2rem;
            background: var(--primary-light);
            color: var(--text-dark);
            border: none;
            cursor: pointer;
            border-radius: 0 30px 30px 0;
            transition: all 0.3s ease;
        }
        
        .search-container button:hover {
            background: #E8A75D;
        }
        
        .filter-btn {
            margin-left: 0.8rem;
            background: var(--accent-light);
            color: var(--text-dark);
            border: none;
            padding: 0.9rem 1.2rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .filter-btn:hover {
            background: #C9B6AE;
        }
        
        .contact-icons {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .contact-icons a {
            color: var(--text-light);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .contact-icons a:hover {
            color: var(--primary-light);
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .product-count {
            background: var(--primary-light);
            color: var(--text-dark);
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            margin-left: 1rem;
            font-size: 0.9rem;
        }
        
        /* Discount Banner */
        .discount-banner {
            background: linear-gradient(to right, var(--primary-medium), var(--primary-light));
            color: var(--text-light);
            text-align: center;
            padding: 1.5rem;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .discount-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 4s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }
        
        .discount-text {
            position: relative;
            z-index: 1;
        }
        
        /* Products Container */
        .products-container {
            padding: 3rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-medium);
            border-radius: 2px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .product-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: var(--shadow);
            border: 1px solid rgba(123, 63, 0, 0.1);
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(123, 63, 0, 0.2);
        }
        
        .discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-medium);
            color: var(--text-light);
            padding: 0.6rem 1rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 2;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .product-image-container {
            height: 260px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 1.8rem;
        }
        
        .product-name {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
            font-family: 'Playfair Display', serif;
        }
        
        .product-price {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .price-unit {
            font-size: 0.9rem;
            color: var(--text-medium);
            font-weight: normal;
        }
        
        .product-discount {
            color: #E53935;
            font-weight: 600;
            margin-left: 0.5rem;
            font-size: 1.1rem;
        }
        
        /* Product Detail Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(78, 52, 46, 0.95);
            z-index: 1000;
            overflow: auto;
            justify-content: center;
            align-items: flex-start;
            padding: 2rem;
        }
        
        .modal-content {
            background-color: var(--card-bg);
            margin: 2rem auto;
            width: 100%;
            max-width: 1000px;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            animation: modalFade 0.4s;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        @keyframes modalFade {
            from { opacity: 0; transform: translateY(-40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-header {
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .close-modal {
            font-size: 2rem;
            cursor: pointer;
            color: var(--accent-light);
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            transform: rotate(90deg);
        }
        
        .modal-body {
            display: flex;
            flex-direction: column;
            padding: 2rem;
        }
        
        .product-detail {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 900px) {
            .product-detail {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .product-detail-image {
            width: 100%;
            border-radius: 12px;
            max-height: 450px;
            object-fit: cover;
            box-shadow: var(--shadow);
        }
        
        .detail-info h2 {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            color: var(--text-dark);
            line-height: 1.2;
        }
        
        .detail-price {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .product-description {
            margin: 1.8rem 0;
            line-height: 1.8;
            color: var(--text-medium);
            font-size: 1.1rem;
        }
        
        .whatsapp-chat {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #25D366;
            color: white;
            padding: 1.2rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            gap: 0.8rem;
            font-size: 1rem;
        }
        
        .whatsapp-chat:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
        }
        
        /* Filter Modal */
        .filter-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(78, 52, 46, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        
        .filter-content {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        .price-range {
            margin: 1.8rem 0;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-top: 1.8rem;
        }
        
        .apply-filter, .reset-filter {
            padding: 0.9rem 1.8rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: 'Raleway', sans-serif;
        }
        
        .apply-filter {
            background: var(--primary-dark);
            color: var(--text-light);
        }
        
        .apply-filter:hover {
            background: var(--primary-medium);
        }
        
        .reset-filter {
            background: var(--accent-light);
            color: var(--text-dark);
        }
        
        .reset-filter:hover {
            background: #C9B6AE;
        }
        
        /* Loading Spinner */
        .spinner {
            border: 4px solid rgba(195, 155, 111, 0.2);
            border-left: 4px solid var(--primary-medium);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 3rem auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .top-bar {
                flex-direction: column;
                gap: 1.2rem;
                padding: 1.2rem;
            }
            
            .search-container {
                width: 100%;
                flex: none;
            }
            
            .logo {
                font-size: 2rem;
            }
            
            .logo .ampersand {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .products-container {
                padding: 2rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .modal {
                padding: 1rem;
            }
            
            .modal-content {
                margin: 1rem auto;
            }
            
            .discount-banner {
                font-size: 1.3rem;
                padding: 1.2rem;
            }
            
            .modal-header {
                padding: 1.2rem 1.5rem;
            }
            
            .modal-body {
                padding: 1.5rem;
            }
            
            .detail-info h2 {
                font-size: 1.8rem;
            }
            
            .detail-price {
                font-size: 1.5rem;
            }
            
            .whatsapp-chat {
                padding: 1rem 1.5rem;
                width: 100%;
            }
            
            .product-image-container {
                height: 220px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-icons {
                gap: 1rem;
            }
            
            .contact-icons a {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
            
            .product-count {
                padding: 0.3rem 0.8rem;
                font-size: 0.8rem;
            }
            
            .filter-btn {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
            
            .product-info {
                padding: 1.5rem;
            }
            
            .product-name {
                font-size: 1.2rem;
            }
            
            .product-price {
                font-size: 1.3rem;
            }
        }

        /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;  
    left: 20px;    
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        font-size: 22px;
        padding: 12px;
        bottom: 15px;  
        left: 15px;   
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        font-size: 20px;
        padding: 10px;
        bottom: 12px;
        left: 12px;
    }
}

/* Customize Nut Box Button */
.custom-box-container {
    background: linear-gradient(to right, #2c3e50, #4a6491);
    text-align: center;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.custom-box-btn {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-light) 100%);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 15px rgba(195, 155, 111, 0.3);
    letter-spacing: 0.5px;
}

.custom-box-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(195, 155, 111, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 100%);
}

.custom-box-btn:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for the custom box button */
@media (max-width: 768px) {
    .custom-box-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .custom-box-container {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .custom-box-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Review Button Styles */
.review-btn {
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-weight: 600;
}

.review-btn:hover {
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Adjust product-count margin for spacing */
.product-count {
    margin-left: 0.5rem;
}



