/* ===== KONKAN SAMRAT - MAIN STYLESHEET ===== */
:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fef3c7;
    --secondary: #065f46;
    --secondary-light: #d1fae5;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
@media (max-width: 991.98px) {
    body { padding-bottom: 60px; }
    .whatsapp-btn { bottom: 80px; right: 16px; width: 48px; height: 48px; font-size: 1.4rem; } /* Push WhatsApp FAB above mobile social bar */
}

/* Typography */
.section-tag { display: inline-block; background: var(--primary-light); color: var(--primary-dark); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Header */
.site-header { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); z-index: 1000; }
.site-header .navbar { padding: 14px 0; }
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { font-size: 1.8rem; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; }
.nav-logo { height: 52px; width: auto; object-fit: contain; display: block; }
.navbar .nav-link { color: var(--text-dark) !important; font-weight: 500; padding: 8px 16px !important; border-radius: 8px; transition: all 0.2s; }
.navbar .nav-link:hover { background: var(--primary-light); color: var(--primary-dark) !important; }
.delivery-badge { font-size: 0.78rem; color: var(--secondary); font-weight: 600; background: var(--secondary-light); padding: 4px 12px; border-radius: 20px; }
.btn-cart { position: relative; background: var(--primary-light); border: none; width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: all 0.2s; color: var(--primary-dark); }
.btn-cart:hover { background: var(--primary); color: white; transform: scale(1.05); }
.cart-badge { position: absolute; top: -6px; right: -6px; background: #ef4444; color: white; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-user { background: none; border: 1.5px solid var(--border); padding: 8px 14px; border-radius: 25px; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-user:hover { border-color: var(--primary); background: var(--primary-light); }
.btn-login { background: var(--primary); border: none; padding: 10px 20px; border-radius: 25px; font-weight: 600; font-size: 0.9rem; cursor: pointer; color: var(--text-dark); transition: all 0.2s; }
.btn-login:hover { background: var(--primary-dark); color: white; }

/* Buttons */
.btn-primary-ks { background: var(--primary); color: var(--text-dark); border: none; padding: 12px 24px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.btn-primary-ks:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.4); }
.btn-outline-ks { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); padding: 10px 22px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.btn-outline-ks:hover { background: var(--text-dark); color: white; }

/* Slide-Out Cart */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1050; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-panel { position: fixed; top: 0; right: -420px; width: 420px; max-width: 100vw; height: 100vh; background: var(--white); z-index: 1051; display: flex; flex-direction: column; box-shadow: -4px 0 30px rgba(0,0,0,0.12); transition: right 0.35s cubic-bezier(0.4,0,0.2,1); }
.cart-panel.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 1.1rem; }
.cart-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; padding: 4px 8px; border-radius: 6px; color: var(--text-muted); }
.cart-close:hover { background: #f3f4f6; color: var(--text-dark); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 40px 0; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); background: #fafafa; }
.btn-checkout-cart { display: block; background: var(--text-dark); color: white; text-align: center; padding: 14px; border-radius: 12px; text-decoration: none; font-weight: 600; transition: all 0.2s; }
.btn-checkout-cart:hover { background: var(--primary-dark); color: white; }
.cart-item-row { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 56px; height: 56px; border-radius: 8px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; }
.cart-item-variant { color: var(--text-muted); font-size: 0.8rem; }
.cart-qty-control { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-qty-btn { width: 26px; height: 26px; border: 1px solid var(--border); background: white; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.2s; }
.cart-qty-btn:hover { background: var(--primary); border-color: var(--primary); }
.cart-item-price { font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.cart-remove-btn { background: none; border: none; color: #ef4444; cursor: pointer; font-size: 0.85rem; padding: 0; }
.free-delivery-bar { background: var(--secondary-light); color: var(--secondary); padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; margin-bottom: 12px; }
.delivery-progress { height: 4px; background: #a7f3d0; border-radius: 2px; margin-top: 6px; }
.delivery-progress-fill { height: 100%; background: var(--secondary); border-radius: 2px; transition: width 0.3s; }

/* Hero */
.hero-section { height: 100vh; min-height: 600px; }
.hero-bg { height: 100%; position: relative; background: linear-gradient(135deg, #fef9f0 0%, #fff7e6 50%, #fef3c7 100%); display: flex; align-items: center; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.text-highlight { color: var(--primary-dark); }
.hero-badge { display: inline-block; background: var(--secondary-light); color: var(--secondary); font-size: 0.85rem; font-weight: 600; padding: 6px 16px; border-radius: 25px; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: #4b5563; max-width: 520px; line-height: 1.7; }
.stat-number { font-size: 1.8rem; font-weight: 700; color: var(--primary-dark); font-family: 'Playfair Display', serif; display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mango-svg { width: 300px; height: 300px; filter: drop-shadow(0 16px 40px rgba(245,158,11,0.25)); animation: floatMango 3s ease-in-out infinite; }
@media (max-width: 991.98px) {
    .hero-mango-svg { width: 200px; height: 200px; }
    .hero-float-badge { display: none; }
}
.hero-mango-img { width: 360px; max-width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }
.hero-float-badge { position: absolute; background: white; padding: 10px 16px; border-radius: 12px; box-shadow: var(--shadow-lg); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 8px; line-height: 1.3; }
.badge-left { left: -30px; bottom: 100px; }
.badge-right { right: -20px; top: 80px; }
.badge-icon { font-size: 1.2rem; }

/* USP Strip */
.usp-strip { background: var(--text-dark); color: white; padding: 16px 0; }
.usp-item { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px; font-size: 0.9rem; font-weight: 500; }
.usp-item i { color: var(--primary); font-size: 1.2rem; }

/* Products */
.products-section { background: var(--bg-light); padding: 80px 0; }
.product-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s; height: 100%; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; overflow: hidden; }
.product-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder { height: 220px; background: linear-gradient(135deg, #fef9f0, #fef3c7); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.product-badge { position: absolute; top: 12px; left: 12px; background: #ef4444; color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; }
.product-info { padding: 20px; }
.product-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.product-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; min-height: 36px; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
.product-price-original { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.variant-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.variant-option { padding: 6px 12px; border: 1.5px solid var(--border); border-radius: 20px; font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: all 0.2s; user-select: none; }
.variant-option:hover { border-color: var(--primary); background: var(--primary-light); }
.variant-option.active { border-color: var(--primary); background: var(--primary); font-weight: 600; }
.variant-option.out-of-stock { opacity: 0.5; text-decoration: line-through; cursor: not-allowed; }
.qty-control { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--border); border-radius: 25px; padding: 4px 8px; }
.qty-btn { background: none; border: none; font-size: 1.1rem; cursor: pointer; padding: 0 4px; line-height: 1; color: var(--text-muted); transition: color 0.2s; }
.qty-btn:hover { color: var(--primary-dark); }
.qty-value { font-weight: 600; min-width: 18px; text-align: center; }
.btn-add-cart { background: var(--primary); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; color: var(--text-dark); display: flex; align-items: center; justify-content: center; }
.btn-add-cart:hover { background: var(--primary-dark); color: white; transform: scale(1.1); }
.btn-out-stock { background: #f3f4f6; border: 1.5px solid var(--border); padding: 8px 14px; border-radius: 20px; font-size: 0.8rem; cursor: pointer; color: var(--text-muted); }
.delivery-note { color: var(--text-muted); font-size: 0.9rem; }

/* Why Section */
.why-section { background: var(--white); padding: 80px 0; }
.why-card { text-align: center; padding: 32px 24px; border-radius: var(--radius); background: var(--bg-light); transition: all 0.3s; height: 100%; }
.why-card:hover { background: var(--primary-light); transform: translateY(-4px); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h4 { font-weight: 700; margin-bottom: 10px; }

/* Testimonials */
.testimonials-section { background: var(--bg-light); padding: 80px 0; }
.testimonial-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); height: 100%; }
.testimonial-text { color: #374151; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* FAQ */
.faq-section { background: white; padding: 80px 0; }
.faq-item { border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: 10px !important; overflow: hidden; }
.faq-btn { font-weight: 600 !important; color: var(--text-dark) !important; background: white !important; padding: 18px 20px !important; }
.faq-btn:not(.collapsed) { background: var(--primary-light) !important; color: var(--primary-dark) !important; }
.faq-answer { color: var(--text-muted); line-height: 1.7; }

/* Cashback Banner */
.cashback-banner { background: var(--bg-light); padding: 60px 0; }
.cashback-card { background: linear-gradient(135deg, var(--text-dark), #1f2937); color: white; padding: 40px; border-radius: var(--radius); }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, #fef9f0, #fef3c7); padding: 80px 0 60px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }
.page-hero-sm { background: var(--bg-light); padding: 40px 0; border-bottom: 1px solid var(--border); }
.page-hero-sm h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }

/* About Page */
.cert-badge { display: inline-flex; align-items: center; background: white; border: 1px solid var(--border); padding: 8px 16px; border-radius: 25px; font-size: 0.9rem; font-weight: 500; margin-right: 10px; margin-bottom: 10px; }
.farming-section { background: var(--bg-light); padding: 80px 0; }
.practice-card { background: white; padding: 28px 20px; border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; }
.practice-icon { font-size: 2.5rem; margin-bottom: 12px; }
.gi-section { background: white; padding: 60px 0; }
.gi-card { background: var(--primary-light); padding: 40px; border-radius: var(--radius); }
.gi-badge-large { width: 100px; height: 100px; background: var(--primary); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.4rem; text-align: center; line-height: 1.1; }
.team-section { background: var(--bg-light); padding: 80px 0; }
.team-card { background: white; padding: 28px 20px; border-radius: var(--radius); box-shadow: var(--shadow); }
.team-avatar { font-size: 4rem; }
.about-img-main .img-placeholder-large { height: 360px; background: linear-gradient(135deg, #fef3c7, #fed7aa); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 600; color: var(--primary-dark); }

/* Checkout */
.checkout-progress { display: flex; align-items: center; justify-content: center; }
.step { display: flex; align-items: center; flex-direction: column; gap: 6px; }
.step-circle { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--text-muted); transition: all 0.3s; }
.step.active .step-circle { background: var(--primary); border-color: var(--primary); color: var(--text-dark); }
.step span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.step.active span { color: var(--text-dark); font-weight: 600; }
.step-line { width: 80px; height: 2px; background: var(--border); margin: 0 8px 20px; }
.checkout-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.saved-address { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; margin-bottom: 8px; font-size: 0.9rem; transition: all 0.2s; }
.saved-address:hover, .saved-address.active { border-color: var(--primary); background: var(--primary-light); }
.payment-option { display: block; cursor: pointer; }
.payment-option-body { display: flex; flex-direction: column; padding: 16px; border: 1.5px solid var(--border); border-radius: 10px; margin-bottom: 10px; transition: all 0.2s; }
.payment-option input { display: none; }
.payment-option:has(input:checked) .payment-option-body { border-color: var(--primary); background: var(--primary-light); }
.cashback-redemption { background: var(--primary-light); border-radius: 10px; padding: 16px; border: 1px solid #fde68a; }
.free-delivery-nudge { background: var(--secondary-light); color: var(--secondary); padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; }
.milestone-nudge { background: var(--primary-light); color: var(--primary-dark); padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; }
.cart-summary-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }

/* Order Success */
.success-animation { display: flex; justify-content: center; }
.success-circle { width: 100px; height: 100px; background: var(--secondary-light); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--secondary); animation: successPop 0.5s ease; }
@keyframes successPop { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }
.order-success-card { background: var(--bg-light); border-radius: var(--radius); padding: 24px; text-align: left; }
.info-box { background: #eff6ff; border-radius: 8px; padding: 12px 16px; font-size: 0.9rem; }

/* Blog */
.search-bar { display: flex; border: 1.5px solid var(--border); border-radius: 30px; overflow: hidden; background: white; box-shadow: var(--shadow); }
.search-input { flex: 1; border: none; padding: 12px 20px; font-size: 0.95rem; outline: none; }
.search-btn { background: var(--primary); border: none; padding: 12px 20px; cursor: pointer; font-size: 1.1rem; transition: background 0.2s; }
.search-btn:hover { background: var(--primary-dark); }
.blog-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; height: 100%; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img-link { display: block; overflow: hidden; }
.blog-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-img-placeholder { height: 200px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.blog-body { padding: 20px; }
.blog-category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary-dark); text-decoration: none; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin: 8px 0 10px; }
.blog-title a { color: var(--text-dark); text-decoration: none; }
.blog-title a:hover { color: var(--primary-dark); }
.blog-excerpt { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.blog-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.blog-tag { font-size: 0.75rem; background: var(--primary-light); color: var(--primary-dark); padding: 3px 10px; border-radius: 12px; text-decoration: none; display: inline-block; transition: all 0.2s; }
.blog-tag:hover, .blog-tag.active { background: var(--primary); color: var(--text-dark); }
.sidebar-widget { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px; }
.sidebar-heading { font-weight: 700; font-size: 1rem; border-bottom: 2px solid var(--primary); padding-bottom: 10px; margin-bottom: 16px; }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { border-bottom: 1px solid var(--border); }
.category-list a { display: flex; justify-content: space-between; padding: 10px 0; color: var(--text-dark); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.category-list a:hover, .category-list a.active { color: var(--primary-dark); font-weight: 600; }
.cat-count { background: var(--bg-light); padding: 2px 8px; border-radius: 12px; font-size: 0.8rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.newsletter-widget { background: var(--primary-light); }
.cta-widget { text-align: center; padding: 10px 0; }
.cta-icon { font-size: 3rem; margin-bottom: 10px; }
.blog-detail-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.25; margin: 16px 0 20px; }
.blog-hero-img { width: 100%; border-radius: var(--radius); max-height: 400px; object-fit: cover; }
.blog-content { line-height: 1.8; font-size: 1.05rem; color: #374151; }
.blog-content p { margin-bottom: 1.2em; }
.blog-content h2, .blog-content h3 { font-family: 'Playfair Display', serif; font-weight: 700; margin: 1.5em 0 0.5em; }
.btn-share { padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.2s; }
.btn-share:hover { opacity: 0.85; }
.btn-whatsapp { background: #25D366; color: white; }
.btn-facebook { background: #1877F2; color: white; }
.related-post-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.related-post-title { display: block; color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 0.9rem; line-height: 1.4; margin-bottom: 4px; }
.related-post-title:hover { color: var(--primary-dark); }

/* Profile */
.profile-sidebar { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; margin: 0 auto; }
.membership-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.membership-regular { background: #f3f4f6; color: #6b7280; }
.membership-silver { background: #e5e7eb; color: #374151; }
.membership-gold { background: #fef3c7; color: #92400e; }
.profile-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.profile-nav-item { display: flex; align-items: center; padding: 10px 14px; border-radius: 8px; color: var(--text-dark); text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.profile-nav-item:hover, .profile-nav-item.active { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }
.stat-card { background: var(--bg-light); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-icon { font-size: 1.8rem; }
.stat-value { font-size: 1.6rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.milestone-card { background: var(--primary-light); border-radius: var(--radius); padding: 20px; border: 1px solid #fde68a; }
.milestone-progress { height: 8px; border-radius: 4px; }
.order-item { background: var(--bg-light); border-radius: 10px; padding: 16px; margin-bottom: 10px; }
.order-status-badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.status-new { background: #dbeafe; color: #1e40af; }
.status-processing { background: #fef3c7; color: #92400e; }
.status-packed { background: #e0e7ff; color: #3730a3; }
.status-dispatched { background: #cffafe; color: #164e63; }
.status-delivered { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.txn-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.txn-type-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 0.78rem; font-weight: 600; }
.txn-earned { background: #d1fae5; color: #065f46; }
.txn-redeemed { background: #fee2e2; color: #991b1b; }
.txn-credited { background: #dbeafe; color: #1e40af; }
.txn-debited { background: #fef3c7; color: #92400e; }
.cashback-balance-display { font-size: 2rem; font-weight: 700; color: var(--primary-dark); }

/* Login Modal */
.login-modal { border-radius: var(--radius); }
.otp-inputs { gap: 8px !important; }
.otp-input { width: 48px !important; height: 52px !important; font-size: 1.3rem !important; font-weight: 700 !important; text-align: center; border-radius: 10px !important; }

/* Footer */
.site-footer { background: #111827; color: white; margin-top: 80px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: white; text-decoration: none; display: inline-block; }
.footer-logo { height: 60px; width: auto; object-fit: contain; display: block; }
.footer-heading { font-weight: 700; color: white; margin-bottom: 16px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #9ca3af; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: #1f2937; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #9ca3af; text-decoration: none; transition: all 0.2s; }
.social-link:hover { background: var(--primary); color: var(--text-dark); }

/* WhatsApp Button */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: white; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 900; transition: all 0.2s; animation: pulse 2s infinite; }
.whatsapp-btn:hover { transform: scale(1.1); color: white; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }

/* Responsive */
@media (max-width: 992px) {
    .hero-section { height: auto; }
    .hero-bg { padding: 100px 0 60px; }
}
@media (max-width: 768px) {
    .cart-panel { width: 100vw; right: -100vw; }
    .step-line { width: 40px; }
    .products-section { padding: 60px 0; }
    .section-header.text-center { padding: 0 16px; }
}
@media (max-width: 576px) {
    .usp-strip .usp-item { font-size: 0.8rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary-ks, .hero-ctas .btn-outline-ks { width: 100%; justify-content: center; }
}

/* ===== FIXED VERTICAL SOCIAL SIDEBAR ===== */
.social-sidebar {
    position: fixed;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.social-sidebar-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.social-sidebar-link:hover { background: var(--primary); color: var(--text-dark); border-color: var(--primary); transform: translateX(3px); }
.social-sidebar-wa:hover { background: #25D366; color: white; border-color: #25D366; }
.social-sidebar-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 8px;
}

/* Mobile Social Bar */
.social-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 850;
    background: white;
    border-top: 1px solid var(--border);
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    /* Leave space for WhatsApp FAB — push it up */
}
.social-mobile-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.2s;
}
.social-mobile-link:hover, .social-mobile-link:active { color: var(--primary-dark); }
.social-mobile-wa { color: #25D366 !important; }

/* ===== PRODUCT CARD REDESIGNED BUTTONS ===== */
.product-name-link { text-decoration: none; color: inherit; }
.product-name-link:hover .product-name { color: var(--primary-dark); }
.product-img-link { display: block; overflow: hidden; }
.product-discount-badge { position: absolute; top: 12px; right: 12px; background: #ef4444; color: white; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.view-detail-link { color: var(--primary-dark); text-decoration: none; font-size: 0.82rem; font-weight: 500; }
.view-detail-link:hover { text-decoration: underline; }
.variant-option.oos { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); }
.product-price-original { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }

.btn-add-cart {
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    letter-spacing: 0.01em;
}
.btn-add-cart:hover { background: #1f2937; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.btn-add-cart:active { transform: translateY(0); }

.btn-buy-now {
    background: var(--primary);
    color: var(--text-dark);
    border: none;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    letter-spacing: 0.01em;
}
.btn-buy-now:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.4); }
.btn-buy-now:active { transform: translateY(0); }

.btn-out-stock {
    background: #f3f4f6;
    color: var(--text-muted);
    border: 1.5px dashed var(--border);
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-out-stock:hover { border-color: var(--primary-dark); color: var(--primary-dark); background: var(--primary-light); }

.product-action-row { display: flex; gap: 6px; margin-bottom: 8px; }
.product-card-bottom { display: flex; flex-direction: column; gap: 8px; }
.product-action-row .btn-add-cart,
.product-action-row .btn-buy-now,
.product-action-row .btn-out-stock { flex: 1; }

/* Hero emoji display */

@keyframes floatMango { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== FOOTER FIXES ===== */
.site-footer .form-control {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
}
.site-footer .form-control::placeholder { color: #9ca3af; opacity: 1; }
.site-footer .form-control:focus { background: #1f2937; border-color: var(--primary); color: #f9fafb; box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.site-footer .text-muted { color: #9ca3af !important; }
.site-footer a { color: #9ca3af; }
.site-footer a:hover { color: var(--primary); }

/* ===== ABOUT PAGE EXTRAS ===== */
.about-stat-box { background: white; border-radius: 10px; padding: 14px 10px; text-align: center; box-shadow: var(--shadow); }
.about-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); font-family: 'Playfair Display', serif; }
.about-stat-lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.about-icon-box { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }

/* ===== POLICY PAGE ===== */
.policy-nav-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.policy-nav-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
.policy-nav-link { display: flex; align-items: center; padding: 9px 12px; border-radius: 8px; color: var(--text-muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.policy-nav-link:hover { background: var(--primary-light); color: var(--primary-dark); }
.policy-nav-link.active { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }
.policy-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.policy-section-header { font-size: 1.35rem; font-weight: 700; font-family: 'Playfair Display', serif; padding: 16px 20px; background: var(--primary-light); border-radius: 10px 10px 0 0; border-left: 4px solid var(--primary); margin-bottom: 0; }
.policy-body { background: white; border: 1px solid var(--border); border-top: none; border-radius: 0 0 10px 10px; padding: 28px; }
.policy-body h5 { font-weight: 700; margin-top: 24px; margin-bottom: 10px; color: var(--text-dark); }
.policy-body h5:first-child { margin-top: 0; }
.policy-body p, .policy-body li { color: #374151; line-height: 1.8; font-size: 0.95rem; }
.policy-body ul, .policy-body ol { padding-left: 20px; }
.policy-body li { margin-bottom: 6px; }
.policy-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
