/* 
========================================
   Shakthi Foods - Custom Stylesheet
========================================
*/

:root {
    --primary-red: #a52019;
    --primary-dark-red: #8b130d;
    --primary-green: #427a31;
    --primary-dark-green: #2a571e;
    --primary-orange: #e66825;
    --primary-yellow: #f1b51c;
    --bg-beige: #fcf9f2;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-beige);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px; /* Padding for full width sections */
}

/* ========================================
   1. TOP BAR
======================================== */
.top-bar {
    background-color: var(--primary-red);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span, .top-bar-right span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar-right span:last-child {
    margin-right: 0;
}

.social-icons a {
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
}

/* ========================================
   2. MAIN HEADER
======================================== */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    max-height: 55px;
    width: auto;
}
.logo-icon {
    font-size: 32px;
    color: var(--primary-green);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.brand-sub {
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 2px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 400px;
    overflow: hidden;
}
.search-bar input {
    border: none;
    background: transparent;
    padding: 12px 15px;
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}
.search-bar button {
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.search-bar button:hover {
    background-color: var(--primary-dark-red);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}
.whatsapp-icon {
    background-color: #25D366;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.contact-text small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
}
.contact-text strong {
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 25px;
}
.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 5px;
}
.action-item i {
    font-size: 22px;
    color: var(--text-dark);
}
.action-item span {
    font-size: 13px;
    font-weight: 500;
}
.cart-icon-wrapper {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-red);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   3. NAVIGATION
======================================== */
.main-nav {
    background-color: var(--bg-beige);
    border-bottom: 1px solid #eee;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.main-nav a {
    display: inline-block;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: color 0.3s;
}
.main-nav a i {
    font-size: 12px;
    margin-left: 5px;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

/* ========================================
   4. HERO SECTION
======================================== */
.mobile-hero {
    display: none;
}
.hero-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}
.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-green);
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.deco-leaf {
    color: #c9a463;
    font-size: 20px;
}
.hero-title {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}
.hero-subtitle-green {
    color: var(--primary-green);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-tags {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
}
.hero-tags span {
    margin: 0 5px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #e1d3b9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #b89150;
}
.feature-icon p {
    font-size: 13px;
    font-weight: 600;
    max-width: 80px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}
.btn {
    padding: 12px 25px;
    border-radius: 4px;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-green {
    background-color: var(--primary-green);
    color: #fff;
}
.btn-orange {
    background-color: var(--primary-orange);
    color: #fff;
}
.btn-outline-orange {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}
.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 30px;
    padding: 15px 30px;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: right;
}
.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ========================================
   5. SECTIONS COMMON
======================================== */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.section-title h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-dark);
}
.title-deco {
    color: #d1b782;
    font-size: 24px;
}

/* ========================================
   6. CATEGORIES SECTION
======================================== */
.categories-section {
    padding: 50px 0;
    background-color: #fff;
}
.categories-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5eedf;
    border: none;
    color: var(--primary-orange);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.carousel-arrow:hover {
    background-color: #ebdcb9;
}
.categories-carousel {
    display: flex;
    flex: 1;
    justify-content: space-between;
    overflow-x: hidden;
}
.category-item {
    text-align: center;
    cursor: pointer;
}
.cat-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #f2f2f2;
    transition: border-color 0.3s, transform 0.3s;
}
.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-item:hover .cat-img-wrapper {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}
.category-item p {
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   7. BEST SELLING PRODUCTS
======================================== */
.products-section {
    padding: 60px 0;
    position: relative;
}
.view-all {
    position: absolute;
    right: 15px;
    top: 65px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* New Category Row Styles */
.product-category-row {
    margin-bottom: 40px;
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.category-header h3 {
    font-size: 22px;
    color: var(--primary-red);
    font-family: var(--font-heading);
    margin: 0;
}
.view-all-category {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
}
.view-all-category:hover {
    color: var(--primary-red);
}
.products-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) #f0f0f0;
}
.products-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}
.products-horizontal-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}
.products-horizontal-scroll::-webkit-scrollbar-thumb {
    background-color: var(--primary-red);
    border-radius: 4px;
}
.products-horizontal-scroll .product-card {
    flex: 0 0 calc(20% - 12px); /* Fits 5 products per row considering the 15px gap */
}
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #f2f2f2;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}
.badge-orange { background-color: var(--primary-yellow); color: #000; }
.badge-green { background-color: var(--primary-green); color: #fff; }
.badge-orange-dark { background-color: var(--primary-orange); color: #fff; }

.product-img {
    height: 190px;
    width: 100%;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
/* Stretch images from Photos folder to fill their cards and remove white borders */
.product-img img[src^="Photos/"] {
    transform: scale(1.35);
    mix-blend-mode: multiply;
}
.product-card:hover .product-img img {
    transform: scale(1.1);
}
.product-card:hover .product-img img[src^="Photos/"] {
    transform: scale(1.45);
}
.product-info {
    padding: 12px 12px 15px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}
.star-rating {
    color: #ffb400;
    font-size: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.star-rating span {
    color: #777;
    font-size: 11px;
    margin-left: 2px;
}
.weight {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 8px;
}
.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
}
.price-strike {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 13px;
}
.btn-add-cart {
    width: 100%;
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}
.btn-add-cart:hover {
    background-color: #d1581b;
}

/* ========================================
   8. WHY CHOOSE US
======================================== */
.why-choose-section {
    padding: 50px 0;
    background-color: #f7f3ea;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.features-grid-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.feat-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feat-icon {
    font-size: 30px;
    color: #b89150;
}
.feat-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
}
.feat-text p {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   9. FOOTER TOP (TESTIMONIALS)
======================================== */
.footer-top {
    background-color: var(--primary-dark-red);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
}
.footer-top h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}
.testimonial-deco {
    text-align: center;
    color: #c43c33;
    font-size: 24px;
    margin-bottom: 20px;
}
.testimonial-card {
    background-color: #fff;
    color: var(--text-dark);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}
.quote-icon {
    color: var(--primary-red);
    font-size: 20px;
    position: absolute;
}
.quote-icon:not(.right) { top: 20px; left: 20px; }
.quote-icon.right { bottom: 20px; right: 20px; }
.quote {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    padding: 0 15px;
}
.author {
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
}
.stars {
    color: #f1c40f;
    font-size: 12px;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
}
.dot.active {
    background-color: #fff;
}

/* Middle Circle Badge */
.pure-goodness {
    text-align: center;
}
.badge-circle {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.badge-inner {
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(165,32,25,1) 0%, rgba(139,19,13,1) 100%);
}
.badge-inner p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
}
.tradition-text {
    font-size: 18px;
}

/* Delivery Info */
.delivery-info {
    text-align: center;
}
.del-sub {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}
.delivery-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.del-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.del-icon i {
    font-size: 32px;
    color: var(--bg-beige);
}
.del-icon p {
    font-size: 13px;
    max-width: 80px;
}
.footer-jars {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 200px;
    opacity: 0.9;
}
.footer-jars img {
    width: 100%;
    border-radius: 10px;
}

/* ========================================
   10. BOTTOM CTA
======================================== */
.bottom-cta {
    background-color: var(--primary-dark-green);
    color: #fff;
    padding: 20px 0;
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-text h3 {
    font-size: 22px;
    margin-bottom: 5px;
}
.cta-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   11. FLOATING WHATSAPP
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 100;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* RESPONSIVE Adjustments (Mobile & Tablet) */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid-main { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-jars { display: none; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-features, .hero-buttons { justify-content: center; }
    .hero-subtitle { justify-content: center; }
    .search-bar { width: 250px; }
}

/* Base styles for new mobile elements */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-red);
    cursor: pointer;
}
.mobile-whatsapp-bar {
    display: none;
}
.header-right-mobile {
    display: none;
}
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar { display: none; } /* Hide top bar on mobile for cleaner look */
    
    /* Header Layout */
    .header-container { 
        flex-direction: row; 
        flex-wrap: wrap; 
        align-items: center; 
        justify-content: space-between; 
        padding: 10px 15px;
    }
    .mobile-menu-btn { display: block; order: 1; margin: 0; width: 60px; text-align: left; padding-left: 10px; }
    .logo { order: 2; margin: 0; flex: 1; justify-content: center; }
    .logo .brand-logo { max-height: 90px; } /* Increased logo size on mobile */
    .header-right-mobile { 
        display: flex; 
        order: 3; 
        align-items: center; 
        justify-content: flex-end;
        width: 60px;
        gap: 15px; 
    }
    .header-right-mobile .mobile-search-icon {
        color: var(--text-dark);
        font-size: 20px;
    }
    .header-right-mobile .cart-item .cart-icon-wrapper i {
        font-size: 22px;
        color: var(--text-dark);
    }
    
    .header-actions { display: none; } 
    .header-contact { display: none; }
    .search-bar { display: none; } /* Hidden, replaced by icon */
    
    /* Mobile WhatsApp Bar */
    .mobile-whatsapp-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        background: #fff;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    .wa-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .wa-icon i {
        background: #25d366;
        color: white;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 18px;
    }
    .wa-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }
    .wa-text small {
        font-size: 11px;
        color: #777;
    }
    .wa-text strong {
        font-size: 14px;
        color: var(--text-dark);
    }
    .wa-chevron {
        color: #999;
        font-size: 12px;
    }
    
    /* Hamburger Menu Toggle */
    .main-nav {
        display: none; /* Hidden by default on mobile */
        width: 100%;
        background: white;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul { 
        flex-direction: column; 
        align-items: center;
        gap: 0;
        padding: 10px 0;
    }
    .main-nav a { 
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px; 
        border-bottom: 1px solid #eee;
    }
    
    /* Hero Section Fix - Replace with image */
    .mobile-hero { display: block; }
    .desktop-hero { display: none !important; }
    
    .categories-section { padding: 40px 0 20px; }
    .categories-wrapper { padding: 0 10px; }
    .categories-carousel { 
        flex-wrap: nowrap; 
        overflow-x: auto; 
        justify-content: flex-start; 
        gap: 15px; 
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none; /* Firefox */
        padding-bottom: 10px;
    }
    .categories-carousel::-webkit-scrollbar { display: none; } /* Chrome */
    .category-item { flex: 0 0 auto; width: 85px; }
    .cat-img-wrapper { width: 75px; height: 75px; margin: 0 auto 8px; }
    
    /* Hide Desktop Arrows */
    .carousel-arrow { display: none !important; }
    
    /* Carousel Navigation Arrows */
    .mobile-only { display: block; }
    .categories-wrapper { position: relative; }
    .carousel-nav {
        position: absolute;
        top: 35px; /* Center them vertically over the category circles */
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 5px;
        pointer-events: none; /* Let clicks pass through the container */
    }
    .carousel-nav .nav-arrow {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: rgba(253, 250, 244, 0.9);
        border: 1px solid #ddd;
        color: var(--primary-orange);
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto; /* Enable clicks on the arrows themselves */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    /* View All Products Fix */
    .products-section { padding: 20px 0 40px; }
    .products-section .section-title { margin-bottom: 15px; }
    .products-section .section-title h2 { font-size: 20px; }
    .view-all { 
        position: absolute; 
        right: 15px;
        margin-top: -35px;
        font-size: 12px;
        color: var(--primary-red);
        font-weight: 600;
        text-transform: none;
    }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .products-horizontal-scroll .product-card { flex: 0 0 150px; }
    .product-img { height: 130px; }
    .product-info { padding: 10px; }
    .product-info h3 { font-size: 13px; line-height: 1.3; margin-bottom: 8px; }
    .weight { font-size: 11px; margin-bottom: 5px; }
    .price-row { margin-bottom: 8px; }
    .price { font-size: 15px; }
    .price-strike { font-size: 11px; }
    .btn-add-cart { padding: 8px; font-size: 11px; }
    .product-badge { font-size: 8px; padding: 3px 6px; }
    
    .features-grid-main { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
    .feat-box { flex-direction: column; text-align: center; align-items: center; }
    .feat-box h4 { font-size: 13px; margin-bottom: 5px; }
    .feat-box p { font-size: 10px; }
    .feat-icon { margin-bottom: 10px; }
    
    .footer-top { padding: 40px 0; }
    .delivery-icons { 
        flex-direction: row; 
        gap: 10px; 
        justify-content: space-around;
    }
    .del-icon { 
        flex: 1; 
        padding: 0 5px; 
    }
    .del-icon i { 
        font-size: 24px; 
        margin-bottom: 8px; 
    }
    .del-icon p { 
        font-size: 11px; 
        line-height: 1.2; 
    }
    .badge-circle { width: 150px; height: 150px; }
    .badge-inner p { font-size: 16px; }
    
    .cta-container { flex-direction: column; text-align: center; gap: 20px; }
    .bottom-cta { padding: 30px 0; }
    
    /* Restore Floating WhatsApp */
    .whatsapp-float { 
        display: flex;
        width: 50px; 
        height: 50px; 
        font-size: 28px; 
        bottom: 20px; 
        right: 20px; 
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-subtitle-green { font-size: 18px; }
    .products-section { padding-bottom: 40px; }
}

/* ========================================
   13. QUICK VIEW MODAL
======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: normal;
    color: #777;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-red);
}

.modal-grid {
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 1 1 50%;
    min-width: 300px;
    background-color: #fff;
    display: flex;
    padding: 0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

.modal-details {
    flex: 1 1 50%;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-details h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#modal-current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.sale-badge {
    background-color: var(--primary-red);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

#modal-desc {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.6;
}

.view-details-link {
    font-size: 13px;
    color: #333;
    text-decoration: underline;
    margin-bottom: 25px;
    display: inline-block;
}

.modal-options {
    margin-bottom: 25px;
}

.option-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
}

#selected-weight-label {
    display: none;
}

.weight-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.weight-btn {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: all 0.2s;
}

.weight-btn:hover {
    border-color: #ccc;
}

.weight-btn.active {
    background-color: #bfa47d;
    color: #fff;
    border-color: #bfa47d;
}

.modal-quantity {
    margin-top: auto;
}

.qty-action-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    height: 45px;
}

.qty-btn {
    background: #fff;
    border: none;
    width: 40px;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.qty-btn:hover {
    background: #f9f9f9;
}

.qty-input {
    width: 50px;
    height: 100%;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    pointer-events: none;
}

.modal-add-btn {
    flex: 1;
    height: 45px;
    font-size: 15px;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-add-btn:hover {
    background-color: #333;
    color: #fff;
}

.product-card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-grid {
        flex-direction: column;
    }
    .modal-image {
        padding: 0;
    }
    .modal-image img {
        max-height: 250px;
        border-radius: 8px 8px 0 0;
    }
    .modal-details {
        padding: 15px 20px 25px;
    }
    .modal-details h2 {
        font-size: 22px;
    }
}

#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.combo-img {
    position: relative;
    background: #f4f4f4;
}
.combo-img img {
    position: absolute;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.combo-img img.left-half {
    left: 0;
    clip-path: polygon(0 0, 55% 0, 45% 100%, 0 100%);
    z-index: 1;
}
.combo-img img.right-half {
    right: 0;
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%);
    z-index: 1;
}
/* ========================================
   HOME PAGE NEW SECTIONS
======================================== */

/* Why Choose Us */
.why-choose-new {
    padding: 60px 0;
    background-color: var(--bg-beige);
}
.why-choose-icons-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
.wci-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
}
.wci-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.wci-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
}
.wci-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* Special Combos */
.special-combos-section {
    background-color: var(--bg-beige);
}
.combos-wrapper {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.combos-banner-left {
    flex: 1;
    background-color: var(--primary-dark-red);
    color: #fff;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.combos-banner-left h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.combos-banner-left p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}
.btn-explore {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-dark-red);
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
}
.combos-bg-img {
    position: absolute;
    right: -50px;
    top: -20px;
    height: 120%;
    opacity: 0.8;
    z-index: 0;
    clip-path: circle(50% at 50% 50%);
}
.combos-banner-left * {
    position: relative;
    z-index: 1;
}
.combos-badges-right {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
}
.badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}
.c-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}
.c-badge i {
    font-size: 32px;
    color: var(--primary-orange);
}
.c-badge div {
    font-size: 13px;
    color: var(--text-dark);
}

/* How to Order */
.how-to-order-section {
    padding: 60px 0;
    background-color: var(--bg-beige);
}
.order-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}
.order-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 0;
}
.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-icon {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 14px;
}
.timeline-step .top-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-light);
}
.timeline-step h4 {
    font-size: 14px;
    margin-bottom: 5px;
}
.timeline-step p {
    font-size: 12px;
    color: var(--text-light);
}

/* Delivery & Satisfaction */
.delivery-satisfaction-section {
    padding: 40px 0;
    background-color: var(--bg-beige);
}
.ds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.ds-card {
    background: #fdfaf4;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}
.ds-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
}
.ds-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.ds-icons {
    display: flex;
    justify-content: space-around;
}
.ds-icon-box {
    text-align: center;
    font-size: 11px;
}
.ds-icon-box i {
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
    color: var(--primary-orange);
}
.pincode-form {
    display: flex;
    margin-bottom: 15px;
}
.pincode-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.pincode-form button {
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
}
.ds-mini-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-beige);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.quote-icon {
    font-size: 24px;
    color: #eee;
    margin-bottom: 15px;
}
.testi-quote {
    font-size: 14px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}
.testi-stars {
    color: var(--primary-yellow);
    font-size: 12px;
    margin-bottom: 15px;
}
.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.testi-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.testi-author span {
    font-size: 12px;
    font-weight: 600;
}

/* Instagram */
.instagram-section {
    padding: 60px 0;
    background-color: var(--bg-beige);
}
.insta-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.insta-info {
    flex: 0 0 250px;
    padding: 20px;
    text-align: center;
}
.btn-insta {
    display: inline-block;
    background-color: var(--primary-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}
.insta-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.insta-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

/* Blog */
.blog-section {
    padding: 60px 0;
    background-color: var(--bg-beige);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.blog-img-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-content {
    padding: 20px;
}
.blog-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}
.btn-read-more {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 600;
}

/* Newsletter */
.newsletter-section {
    background-color: #fdfaf4;
    padding: 40px 0;
    border-top: 1px solid #eee;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.nl-left h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 5px;
}
.nl-left p {
    font-size: 13px;
    color: var(--text-light);
}
.nl-center form {
    display: flex;
    width: 350px;
}
.nl-center input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.nl-center button {
    background-color: var(--primary-dark-red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    cursor: pointer;
}
.nl-right {
    display: flex;
    gap: 20px;
}
.nl-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nl-feature i {
    font-size: 24px;
    color: var(--primary-orange);
}
.nl-feature span {
    display: block;
    font-size: 13px;
    font-weight: bold;
}
.nl-feature small {
    font-size: 11px;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .ds-grid, .testi-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insta-wrapper, .combos-wrapper, .newsletter-inner {
        flex-direction: column;
    }
    .insta-gallery {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 20px;
    }
    .nl-center form {
        width: 100%;
        margin: 20px 0;
    }
    .order-timeline::before {
        display: none;
    }
    .order-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    .timeline-step {
        flex: 0 0 30%;
    }
}

@media (max-width: 768px) {
    .why-choose-icons-row {
        flex-direction: column;
        gap: 30px;
    }
    .ds-grid, .testi-grid, .blog-grid, .badge-grid {
        grid-template-columns: 1fr;
    }
    .nl-right {
        flex-direction: column;
        gap: 15px;
    }
    .timeline-step {
        flex: 0 0 45%;
    }
    .insta-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Added for centered combo image */
.combos-center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.4));
    border-radius: 10px;
}

@media (max-width: 991px) {
    .combos-center-img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 80%;
        margin: -30px auto;
        display: block;
        z-index: 2;
    }
}

/* Mobile responsive fixes for Special Combos */
@media (max-width: 768px) {
    .combos-banner-left {
        padding: 40px 20px;
        text-align: center;
    }
    .combos-banner-left h2 {
        font-size: 28px;
    }
    .combos-badges-right {
        padding: 40px 20px;
    }
    .combos-center-img {
        width: 90%;
        max-width: 250px;
        margin: -20px auto;
    }
    .special-combos-section {
        overflow: hidden;
    }
}

/* Update mobile responsive to place image beside text in Special Combos */
@media (max-width: 768px) {
    .combos-banner-left {
        padding: 30px 140px 30px 20px !important;
        text-align: left !important;
    }
    .combos-banner-left h2 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }
    .combos-banner-left p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    .btn-explore {
        padding: 10px 18px !important;
        font-size: 12px !important;
    }
    .combos-center-img {
        position: absolute !important;
        top: 50px !important;
        right: 10px !important;
        left: auto !important;
        transform: none !important;
        width: 130px !important;
        max-width: 130px !important;
        margin: 0 !important;
    }
}

/* Further fix for mobile combo image */
@media (max-width: 768px) {
    .combos-center-img {
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        left: auto !important;
        transform: translateY(-50%) !important;
        width: 100px !important;
        max-width: 100px !important;
        height: 100px !important;
        object-fit: cover !important;
        border-radius: 10px !important;
        margin: 0 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    }
    .combos-banner-left {
        padding: 30px 130px 30px 20px !important;
    }
}

/* Revert to center overlapping image and increase size */
@media (max-width: 768px) {
    .combos-center-img {
        position: relative !important;
        top: 0 !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        width: 85% !important;
        max-width: 320px !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 10px !important;
        margin: -40px auto 10px auto !important;
        display: block !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
    }
    .combos-banner-left {
        padding: 40px 20px 60px 20px !important;
        text-align: center !important;
    }
    .combos-banner-left h2 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }
    .combos-banner-left p {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }
}

/* Final fix for mobile: Image BESIDE text in Special Combos */
@media (max-width: 768px) {
    .combos-wrapper {
        position: relative !important;
    }
    .combos-banner-left {
        padding: 30px 130px 30px 20px !important;
        text-align: left !important;
        min-height: 160px !important;
    }
    .combos-banner-left h2 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    .combos-banner-left p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    .btn-explore {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
    .combos-center-img {
        position: absolute !important;
        top: 30px !important;
        right: 15px !important;
        left: auto !important;
        transform: none !important;
        width: 100px !important;
        max-width: 30% !important;
        height: 100px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        margin: 0 !important;
        display: block !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
        z-index: 5 !important;
    }
}

/* Increase image size on mobile */
@media (max-width: 768px) {
    .combos-center-img {
        width: 150px !important;
        height: 150px !important;
        max-width: 45% !important;
        top: 25px !important;
        right: 15px !important;
    }
    .combos-banner-left {
        padding: 30px 170px 30px 20px !important;
        min-height: 200px !important;
    }
}

/* Force badge grid to be 2 columns side-by-side on mobile */
@media (max-width: 768px) {
    .badge-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .c-badge {
        font-size: 13px !important;
    }
    .c-badge i {
        font-size: 24px !important;
    }
}

/* Increase font size in Special Combos mobile */
@media (max-width: 768px) {
    .combos-banner-left h2 {
        font-size: 34px !important;
        margin-bottom: 12px !important;
        line-height: 1.2 !important;
    }
    .combos-banner-left p {
        font-size: 18px !important;
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
    }
    .btn-explore {
        padding: 12px 22px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }
}

/* Make Why Choose Us items side-by-side on mobile */
@media (max-width: 768px) {
    .why-choose-icons-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 10px !important;
    }
    .wci-item {
        padding: 15px 10px !important;
    }
    .wci-item h4 {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }
    .wci-item p {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
    .wci-icon {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }
}

/* Convert testimonials grid into a carousel using CSS Scroll Snap */
.testi-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    padding-bottom: 20px !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    scroll-behavior: smooth !important;
}
.testi-grid::-webkit-scrollbar {
    display: none !important;
}
.testi-card {
    scroll-snap-align: center !important;
    flex: 0 0 calc(100% - 40px) !important; /* show a bit of the next card on mobile */
    min-width: 0 !important;
}

@media (min-width: 768px) {
    .testi-card {
        flex: 0 0 calc(50% - 10px) !important;
    }
}
@media (min-width: 992px) {
    .testi-card {
        flex: 0 0 calc(33.333% - 14px) !important;
    }
}

/* Desktop layout fix for Special Combos */
@media (min-width: 769px) {
    .combos-wrapper {
        position: relative !important;
        display: flex !important;
    }
    .combos-center-img {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 180px !important;
        height: 180px !important;
        object-fit: cover !important;
        border-radius: 10px !important;
        z-index: 10 !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    }
    .combos-banner-left {
        flex: 1 !important;
        padding-right: 120px !important;
    }
    .combos-badges-right {
        flex: 1 !important;
        padding-left: 120px !important;
    }
    .badge-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Increase desktop image size for Special Combos */
@media (min-width: 769px) {
    .combos-center-img {
        width: 280px !important;
        height: 280px !important;
        border-radius: 15px !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
    }
    .combos-banner-left {
        padding-right: 170px !important;
    }
    .combos-badges-right {
        padding-left: 170px !important;
    }
}

/* Make Blog section a carousel on mobile */
@media (max-width: 768px) {
    .blog-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding-bottom: 20px !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
        scroll-behavior: smooth !important;
    }
    .blog-grid::-webkit-scrollbar {
        display: none !important;
    }
    .blog-card {
        scroll-snap-align: center !important;
        flex: 0 0 calc(85% - 15px) !important;
        min-width: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* Fix WhatsApp Community Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0 !important;
    }
    .newsletter-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 30px 20px !important;
    }
    .nl-left h3 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    .nl-left p {
        font-size: 15px !important;
        margin-bottom: 0 !important;
    }
    .nl-center {
        width: 100% !important;
    }
    .nl-center form {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin: 0 !important;
    }
    .nl-center input {
        width: 100% !important;
        border-radius: 25px !important;
        border: 1px solid #ddd !important;
        text-align: center !important;
        padding: 12px 20px !important;
    }
    .nl-center button {
        width: 100% !important;
        border-radius: 25px !important;
        padding: 12px 20px !important;
    }
    .nl-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 15px !important;
        margin-top: 15px !important;
    }
    .nl-feature {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        min-width: 200px !important;
    }
}

/* ==========================================================================
   Shopping Cart Sidebar
   ========================================================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.cart-overlay.active {
    visibility: visible;
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}
.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}
.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}
.close-cart:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.empty-cart-msg {
    text-align: center;
    color: #888;
    margin-top: 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    position: relative;
}
.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}
.cart-item-info {
    flex: 1;
}
.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
}
.cart-item-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}
.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
}
.cart-item-qty {
    display: inline-block;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.8rem;
    margin-left: 10px;
}
.remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.remove-item:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.btn-checkout {
    width: 100%;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}
.btn-checkout:hover {
    background-color: #1ebe57;
}
.btn-checkout:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Make header cart icon clickable */
.cart-icon {
    cursor: pointer;
    transition: transform 0.2s;
}
.cart-icon:hover {
    transform: scale(1.1);
}

.cart-action-container { display: flex; justify-content: center; margin-top: 10px; height: 38px; }
.qty-controls { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--primary-green); border-radius: 4px; overflow: hidden; width: 100%; max-width: 120px; }
.qty-controls button { background: var(--primary-green); color: white; border: none; width: 32px; height: 100%; font-size: 18px; cursor: pointer; transition: background 0.2s; }
.qty-controls button:hover { background: #356327; }
.qty-val { font-weight: 600; font-size: 15px; color: #333; width: 30px; text-align: center; }

/* Quick View Modal Styles */
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); align-items: center; justify-content: center; }
.modal-content { background-color: #fff; border-radius: 8px; padding: 40px; width: 90%; max-width: 750px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: modalIn 0.3s ease-out forwards; }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 24px; font-weight: bold; color: #333; cursor: pointer; transition: color 0.2s; border: none; background: none; }
.close-modal:hover { color: var(--primary-red); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .modal-grid { grid-template-columns: 1fr; } }
.modal-image img { width: 100%; height: auto; border-radius: 4px; object-fit: cover; }
.modal-details h2 { font-family: "Times New Roman", Times, serif; color: #333; margin-top: 0; margin-bottom: 10px; font-size: 28px; font-weight: bold; }
.modal-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
#modal-current-price { font-size: 22px; font-weight: 800; color: #333; }
.price-strike { text-decoration: line-through; color: #888; font-size: 14px; }
.sale-badge { background: #b82b2b; color: #fff; padding: 4px 10px; font-size: 12px; font-weight: bold; border-radius: 12px; letter-spacing: 0.5px; }
#modal-desc { color: #555; line-height: 1.5; margin-bottom: 5px; font-size: 14px; }
.view-details-link { color: #555; text-decoration: underline; font-size: 13px; display: inline-block; margin-bottom: 25px; }
.option-label { font-weight: bold; margin-bottom: 10px; font-size: 14px; color: #000; }
.weight-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
.weight-btn { border: 1px solid #eee; background: #fdfdfd; padding: 10px 5px; border-radius: 4px; cursor: pointer; font-size: 12px; transition: all 0.2s; color: #555; }
.weight-btn.active, .weight-btn:hover { border-color: #c5a880; background: #c5a880; color: #fff; }
.qty-action-row { display: flex; gap: 15px; align-items: center; margin-top: 10px;}
.qty-selector { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; height: 40px; }
.qty-btn { background: #fff; color: #333; border: none; width: 40px; height: 100%; font-size: 18px; cursor: pointer; transition: background 0.2s; }
.qty-btn:hover { background: #f5f5f5; }
.qty-input { width: 40px; height: 100%; border: none; text-align: center; font-weight: bold; border-left: 1px solid #ddd; border-right: 1px solid #ddd; font-size: 16px; color: #333;}
.modal-add-btn { flex: 1; height: 40px; border-radius: 4px; font-size: 14px; font-weight: bold; background: #fff; border: 1px solid #333; color: #333; cursor: pointer; transition: all 0.2s; text-transform: none; }
.modal-add-btn:hover { background: #f5f5f5; }
#selected-weight-label { display: none; }




.cart-action-container { display: flex; justify-content: center; margin-top: 10px; height: 38px; }
.qty-controls { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--primary-green); border-radius: 4px; overflow: hidden; width: 100%; max-width: 120px; }
.qty-controls button { background: var(--primary-green); color: white; border: none; width: 32px; height: 100%; font-size: 18px; cursor: pointer; transition: background 0.2s; }
.qty-controls button:hover { background: #356327; }
.qty-val { font-weight: 600; font-size: 15px; color: #333; width: 30px; text-align: center; }
