:root {
    --color-bg: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    
    --color-brand: #059669;
    --color-brand-light: #D1FAE5;
    --color-brand-hover: #047857;
    
    --color-border: #E2E8F0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 50px;
    
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
    color: var(--color-text-main);
}
html {
    scroll-behavior: smooth;
}

.top-bar-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: #F97316;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 101; 
}

.marquee-track-fast {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    animation: scroll-marquee 60s linear infinite;
}

.top-bar-marquee span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.top-bar-marquee .dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    position: fixed;
    width: 100%;
    top: 36px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 65px; 
    width: auto;  
    display: block;
}

.footer-logo-img {
    height: 60px; 
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.cart-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    color: var(--color-text-main);
    transition: var(--transition);
}

.cart-icon:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}

#cart-badge {
    background: var(--color-brand);
    color: var(--color-surface);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.btn-continue-shopping {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    background: transparent;
    color: var(--color-brand);
    border: 2px solid var(--color-brand);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-continue-shopping:hover {
    background: rgba(5, 150, 105, 0.05);
}

.hero {
    margin-top: 106px;
    padding: 120px 5%;
    background-color: var(--color-brand-light); 
    background-image: linear-gradient(
        to bottom, 
        rgba(248, 250, 252, 0.5), 
        rgba(255, 255, 255, 1)     
    ), 
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.badge-fresh {
    display: inline-block;
    background: var(--color-brand-light);
    color: var(--color-brand);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--color-brand);
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    background: var(--color-brand);
    color: var(--color-surface);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.usp-marquee {
    background-color: var(--color-brand);
    color: var(--color-surface);
    padding: 14px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    animation: scroll-marquee 20s linear infinite;
}

.usp-marquee span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.usp-marquee .dot {
    font-size: 1.2rem;
    color: var(--color-brand-light);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.usp-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.products-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--color-surface);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border);
}

.product-img-wrapper {
    position: relative; 
    height: 240px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.ghee-bg { background-color: #FEF3C7; }    
.jaggery-bg { background-color: #FFEDD5; } 
.kakavi-bg { background-color: #E0F2FE; }  

.product-img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-bestseller { background-color: #F97316; color: #FFFFFF; }
.badge-new { background-color: var(--color-brand); color: #FFFFFF; }
.badge-soldout { background-color: #64748B; color: #FFFFFF; }

.product-info {
    padding: 0 8px;
}

.category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    min-height: 50px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-meta .category { margin-bottom: 0; }

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-rating .stars {
    color: #F59E0B;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.card-rating .reviews-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.variant-pills {
    display: flex;
    gap: 10px;
    margin: 16px 0;
}

.variant-pills input[type="radio"] {
    display: none; 
}

.variant-pills label {
    flex: 1; 
    text-align: center;
    padding: 10px 4px; 
    white-space: nowrap; 
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    background-color: var(--color-surface);
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-pills label:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.variant-pills input[type="radio"]:checked + label {
    border-color: var(--color-brand);
    background-color: rgba(16, 185, 129, 0.05);
    color: var(--color-brand);
}

.price-add-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.product-price {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0; 
}

.btn-add {
    background: var(--color-brand);
    color: var(--color-surface);
    border: none;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.btn-add:hover {
    background: var(--color-brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}

.stats-section {
    background-color: var(--color-brand-light);
    padding: 60px 5%;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-brand); 
}

.stat-num {
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-main); 
}

.about-section {
    padding: 100px 5%;
    background-color: var(--color-surface);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    min-height: 400px;
    border-radius: var(--radius-md); 
    overflow: hidden; 
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1); 
    position: relative;
    background-color: var(--color-brand-light); 
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: absolute; 
    top: 0;
    left: 0;
}

.reviews-section {
    padding: 80px 5%;
    background-color: var(--color-bg); 
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.review-card {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-brand-light);
    box-shadow: 0 15px 40px -10px rgba(5, 150, 105, 0.1);
}

.stars {
    color: #F59E0B; 
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1; 
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-brand-light);
    color: var(--color-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-modal {
    position: fixed;
    top: 0; right: -450px;
    width: 100%; max-width: 400px;
    height: 100vh;
    background: var(--color-surface);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-cart {
    background: var(--color-bg);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-cart:hover {
    background: #F1F5F9;
    color: var(--color-text-main);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--color-text-main);
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg);
    padding: 4px 8px;
    border-radius: var(--radius-pill);
}

.cart-controls button {
    background: none; border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    padding: 0 4px;
}

.cart-footer {
    padding: 24px;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    max-height: 65vh; 
    overflow-y: auto;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.customer-details input, 
.customer-details textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-bg);
    transition: var(--transition);
}

.customer-details textarea {
    resize: vertical; 
}

.customer-details input:focus, 
.customer-details textarea:focus {
    outline: none;
    border-color: var(--color-brand);
    background: var(--color-surface);
}

.btn-whatsapp {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
}

.site-footer {
    background-color: var(--color-text-main); 
    color: var(--color-surface);
    padding: 80px 5% 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--color-surface);
    margin-bottom: 20px;
}

.footer-brand p {
    color: #94A3B8; 
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-surface);
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-brand-light);
    transform: translateX(5px);
}

.footer-contact p {
    color: #94A3B8;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.developer-credit {
    text-align: right;
    line-height: 1.4;
}

.developer-credit a {
    color: var(--color-brand); 
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: #F97316; 
}

@media (max-width: 900px) {
    .about-grid, .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .stat-num {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 { 
        font-size: 2.2rem; 
    }
    
    .cart-modal { 
        right: -100%; 
        max-width: 100%; 
    }
    
    .products-section { 
        padding: 50px 5%; 
    }

    .reviews-grid {
        display: flex; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        gap: 16px;
        padding-bottom: 20px; 
        scrollbar-width: none; 
        -ms-overflow-style: none;  
    }

    .reviews-grid::-webkit-scrollbar {
        display: none; 
    }

    .review-card {
        flex: 0 0 85%; 
        scroll-snap-align: center; 
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .developer-credit {
        text-align: center;
    }
}

.cart-summary {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.total-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
    font-family: var(--font-heading);
}

.shipping-msg {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 16px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--color-brand-light);
    color: var(--color-brand-hover);
    font-weight: 600;
    transition: var(--transition);
}

.shipping-msg.success {
    background: #DCFCE7; 
    color: #166534; 
}

.scroll-to-top {
   position: fixed;
    bottom: 30px;
    right: 30px; 
    width: 45px;
    height: 45px;
    background-color: var(--color-brand);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; 
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--color-brand-hover);
    transform: translateY(-3px); 
}

.policy-header {
    position: relative !important; 
    background-color: var(--color-surface);
    padding: 20px 5%; 
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-brand-hover);
    transform: translateX(-4px);
}
.bottom-action {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.bottom-action .back-link {
    background: #DCFCE7; 
    padding: 10px 20px;
    border-radius: var(--radius-full);
}

.policy-container {
    max-width: 800px; 
    margin: 60px auto; 
    padding: 0 20px;
}

.policy-content {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.policy-content h1 {
    font-size: 2rem;
    color: var(--color-brand);
    margin-top: 10px; 
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.policy-divider {
    border: 0;
    height: 1px;
    background: var(--color-border);
    margin: 32px 0;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section {
    margin-bottom: 24px;
}

.policy-section h3 {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.policy-content p {
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.policy-content li {
    margin-bottom: 8px;
}

.exceptions-box {
    background-color: #FEF2F2; 
    border: 1px solid #FCA5A5;
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.exceptions-box h3 {
    color: #991B1B;
}

.exceptions-box p, .exceptions-box ol, .exceptions-box li {
    color: #7F1D1D;
}

.note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 16px;
    margin-bottom: 0 !important;
}

.policy-footer {
    text-align: center;
    padding: 24px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--color-border);
    margin-top: 40px;
}

@media (max-width: 600px) {
    .policy-content {
        padding: 24px 16px;
    }
    
    .policy-content h1 {
        font-size: 1.75rem;
    }
}
.bulk-enquiry-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); 
    padding: 60px 20px;
    margin: 40px auto 80px;
    border-radius: var(--radius-lg);
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bulk-content {
    max-width: 600px;
    margin: 0 auto;
}

.bulk-content h2 {
    font-size: 2.2rem;
    color: var(--color-brand);
    margin: 15px 0;
}

.bulk-content p {
    color: var(--color-text-main);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-whatsapp-bulk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; 
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-bulk:hover {
    background-color: #1EBE5D; 
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .bulk-enquiry-section {
        margin: 40px 15px 60px;
        padding: 40px 20px;
    }
    
    .bulk-content h2 {
        font-size: 1.8rem;
    }
}