﻿/* ============================================================
   SWACH FOODS INDIA  Global Stylesheet
   Premium Ayurvedic eCommerce Design
   ============================================================ */

/*  FONTS  */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/*  CSS VARIABLES  */
:root {
  --saffron:       #C8522A;
  --saffron-light: #E8763A;
  --gold:          #C8922A;
  --gold-light:    #F2C94C;
  --forest:        #1B3A2D;
  --forest-mid:    #2D5A40;
  --forest-light:  #D6EAE0;
  --cream:         #FAF6EF;
  --warm-white:    #FFF9F2;
  --charcoal:      #1C1410;
  --text:          #3A2820;
  --muted:         #8A7060;
  --border:        #EDE0CC;
  --card-shadow:   0 4px 20px rgba(0,0,0,0.08);
  --hover-shadow:  0 12px 40px rgba(200,82,42,0.15);
  --radius:        16px;
  --radius-sm:     8px;
  --radius-lg:     24px;
}

/*  RESET  */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--text); line-height:1.6; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:inherit; border:none; }
ul, ol { list-style:none; }
input, textarea, select { font-family:inherit; }

/*  ANNOUNCE BAR  */
.announce-bar {
  background:var(--forest);
  color:rgba(255,255,255,0.9);
  text-align:center; padding:9px 20px;
  font-size:12.5px; font-weight:500; letter-spacing:0.5px;
}
.announce-bar b { color:var(--gold-light); }

/* NAVIGATION */
.site-nav {
  position:sticky; top:0; z-index:200;
  background:rgba(28,20,16,0.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(212,160,23,0.12);
  height:58px; display:flex; align-items:center;
  padding:0 28px; gap:16px;
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; margin-right:auto; }
.nav-logo img { height:42px; mix-blend-mode:screen; filter:brightness(1.2); }
.nav-logo span { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:700; color:#fff; }

.nav-links { display:flex; gap:28px; }
.nav-links a {
  color:rgba(255,255,255,0.75); font-size:13px; font-weight:500;
  letter-spacing:1.2px; text-transform:uppercase; transition:color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold-light); }

.nav-actions { display:flex; align-items:center; gap:10px; }
.nav-search-input {
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
  border-radius:24px; padding:8px 16px; color:#fff; font-size:13px;
  outline:none; width:160px; transition:all 0.3s;
}
.nav-search-input:focus { width:200px; border-color:var(--gold); background:rgba(255,255,255,0.1); }
.nav-search-input::placeholder { color:rgba(255,255,255,0.35); }

.nav-cart-btn {
  position:relative; background:var(--saffron); color:#fff;
  padding:9px 20px; border-radius:6px; font-size:13px; font-weight:600;
  transition:background 0.25s; display:flex; align-items:center; gap:6px;
}
.nav-cart-btn:hover { background:var(--saffron-light); }
.cart-badge {
  position:absolute; top:-6px; right:-6px;
  background:var(--gold); color:var(--charcoal);
  width:20px; height:20px; border-radius:50%;
  font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center;
}

.nav-wa-btn {
  background:#25D366; color:#fff;
  padding:9px 16px; border-radius:6px; font-size:13px; font-weight:600;
  display:flex; align-items:center; gap:6px; transition:opacity 0.2s;
}
.nav-wa-btn:hover { opacity:0.9; }

/*  SECTION BASE  */
.section { padding:72px 80px; }
.section-sm { padding:48px 80px; }
.container { max-width:1320px; margin:0 auto; }
.section-head { margin-bottom:48px; }
.section-tag {
  font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--saffron); margin-bottom:10px; display:block;
}
.section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:40px; font-weight:700; color:var(--charcoal); line-height:1.1;
}
.section-title span { color:var(--forest-mid); }
.section-desc { color:var(--muted); font-size:15px; margin-top:10px; max-width:560px; line-height:1.65; }
.divider-line {
  width:56px; height:3px; margin-top:16px;
  background:linear-gradient(90deg,var(--saffron),var(--gold));
  border-radius:2px;
}

/*  PRODUCT CARDS  */
.products-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(270px,1fr));
  gap:24px;
}

.product-card {
  background:#fff; border-radius:var(--radius);
  border:1px solid var(--border); overflow:hidden;
  transition:all 0.3s cubic-bezier(.25,.8,.25,1);
  display:flex; flex-direction:column;
}
.product-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--hover-shadow);
  border-color:rgba(200,82,42,0.3);
}

.product-card-img {
  position:relative; height:220px; overflow:hidden;
  background:linear-gradient(135deg,#FFF6E8,#FFE8C0);
}
.product-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.4s;
}
.product-card:hover .product-card-img img { transform:scale(1.06); }
.product-card-badge {
  position:absolute; top:12px; left:12px;
  background:var(--forest); color:#fff;
  font-size:9px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  padding:4px 10px; border-radius:20px;
}

.product-card-body { padding:18px 20px 20px; display:flex; flex-direction:column; flex:1; }
.product-card-name {
  font-family:'Cormorant Garamond',serif;
  font-size:19px; font-weight:700; color:var(--charcoal); margin-bottom:6px; line-height:1.3;
}
.product-card .badge.bestseller {
  display:inline-flex; align-items:center; gap:4px;
  background:#FFF3E0; color:var(--saffron);
  border:1px solid #F2CFAA; border-radius:999px;
  padding:4px 10px; font-size:11px; font-weight:700;
  margin-bottom:10px;
}
.product-card-desc { font-size:12.5px; color:var(--muted); line-height:1.55; margin-bottom:14px; flex:1; }
.product-badges { display:flex; flex-wrap:wrap; gap:8px; margin:-2px 0 12px; }
.product-badges span {
  font-size:11px; color:var(--forest); background:#EEF7EF;
  border:1px solid #DBEADF; border-radius:999px; padding:4px 8px;
}

.product-card-size-selector { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:14px; }
.product-card-select-wrap { margin:4px 0 16px; display:flex; justify-content:center; }
.product-card-select {
  width:100%; max-width:240px; padding:8px 14px;
  border:1.5px dashed #2EAB50; border-radius:14px;
  background:#F6FFF8; color:#1C1410; font-size:13px; font-weight:700;
  text-align:center; outline:none; cursor:pointer;
}
.product-card-select:focus { border-color:#1B8A3A; box-shadow:0 0 0 3px rgba(46,171,80,0.15); }
.size-pill {
  border:1.5px solid var(--border); border-radius:20px;
  padding:5px 12px; font-size:12px; font-weight:600; cursor:pointer;
  transition:all 0.2s; color:var(--muted);
}
.size-pill input { display:none; }
.size-pill.active, .size-pill:hover {
  border-color:var(--saffron); color:var(--saffron);
  background:rgba(200,82,42,0.06);
}

.product-card-price { display:flex; align-items:center; gap:8px; margin-bottom:14px; flex-wrap:wrap; }
.price-mrp { font-size:13px; color:var(--muted); text-decoration:line-through; }
.price-sale { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:700; color:var(--saffron); }
.price-off {
  background:#DCFCE7; color:#166534;
  font-size:10px; font-weight:700; padding:3px 8px; border-radius:20px;
}
.stock { margin-top:-4px; margin-bottom:12px; color:var(--saffron); font-size:12px; font-weight:700; }

.product-card-actions { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.qty-selector { display:flex; align-items:center; gap:0; border:1.5px solid var(--border); border-radius:8px; overflow:hidden; }
.qty-btn {
  width:34px; height:34px; background:#fff; color:var(--text);
  font-size:16px; font-weight:700; border:none; display:flex; align-items:center; justify-content:center;
  transition:background 0.2s;
}
.qty-btn:hover { background:var(--cream); }
.qty-val { padding:0 12px; font-size:14px; font-weight:600; min-width:40px; text-align:center; }

.add-to-cart-btn {
  flex:1; background:var(--saffron); color:#fff;
  padding:10px 16px; border-radius:8px; font-size:13px; font-weight:700;
  transition:all 0.25s; border:none;
}
.add-to-cart-btn:hover { background:var(--saffron-light); transform:translateY(-1px); }

.view-details-link { font-size:12px; color:var(--forest); font-weight:600; text-align:center; margin-top:4px; }
.view-details-link:hover { color:var(--saffron); }

/*  HERO  */
.hero {
  height:calc(100vh - 420px);
  min-height:320px;
  max-height:460px;
  display:grid; grid-template-columns:1.4fr 0.6fr;
  background:var(--charcoal); overflow:hidden; position:relative;
}
.hero::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 70% 50%, rgba(200,82,42,0.1) 0%, transparent 65%);
  pointer-events:none;
}
.hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding:16px 20px 14px 36px; position:relative; z-index:2;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(212,160,23,0.1); border:1px solid rgba(212,160,23,0.25);
  color:var(--gold-light); padding:7px 18px; border-radius:30px;
  font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  width:fit-content; margin-bottom:12px;
}
.hero h1 {
  font-family:'Cormorant Garamond',serif;
  font-size:38px; line-height:1.05; font-weight:700; color:#fff; margin-bottom:6px;
}
.hero h1 em { color:var(--gold-light); font-style:italic; }
.hero-sub {
  color:rgba(255,255,255,0.62); font-size:13.5px; line-height:1.5;
  max-width:420px; margin-bottom:8px; font-weight:300;
}
.hero-btns { display:flex; gap:10px; margin-bottom:6px; flex-wrap:wrap; }
.btn-primary {
  background:var(--saffron); color:#fff;
  padding:14px 36px; border-radius:8px; font-size:15px; font-weight:700;
  transition:all 0.3s; border:2px solid var(--saffron);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:var(--saffron-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,82,42,0.35); }
.btn-ghost {
  background:transparent; color:rgba(255,255,255,0.8);
  padding:14px 36px; border-radius:8px; font-size:15px; font-weight:600;
  border:2px solid rgba(255,255,255,0.2); transition:all 0.3s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-ghost:hover { border-color:var(--gold); color:var(--gold-light); }
.hero-pills { display:flex; gap:12px; }
.hero-pill { border-left:2px solid var(--saffron); padding-left:14px; }
.hero-pill-num { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:700; color:var(--gold-light); }

.hero-orb {
  width: 260px;
  height: 260px;
}
.hero-orb::before {
  inset: 12px;
  border: 2px dashed rgba(212, 160, 23, 0.8);
  box-shadow: 0 0 28px rgba(212, 160, 23, 0.35);
}
.hero-orb::after {
  inset: -16px;
  border: 2px solid rgba(212, 160, 23, 0.65);
  box-shadow: 0 0 0 12px rgba(212, 160, 23, 0.18), 0 0 36px rgba(212, 160, 23, 0.28);
}
.hero-logo-img {
  width: 210px;
  animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}
.hero-pill-label { font-size:11px; color:rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:1px; }
.hero-right {
  background:linear-gradient(135deg,#2D1A0A 0%,#1B3A2D 100%);
  display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
}
.hero-right::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(200,82,42,0.15) 0%, transparent 65%);
}
.hero-orb {
  width:280px; height:280px; border-radius:50%;
  border:1px solid rgba(212,160,23,0.08);
  display:flex; align-items:center; justify-content:center;
  position:relative; animation:heroOrb 4s ease-in-out infinite;
}
.hero-orb::before {
  content:''; position:absolute; inset:18px; border-radius:50%;
  border:2px dashed rgba(212,160,23,0.45);
  animation:spin 18s linear infinite;
}
.hero-orb::after {
  content:''; position:absolute; inset:-10px; border-radius:50%;
  border:2px solid rgba(212,160,23,0.35);
  box-shadow:0 0 0 10px rgba(212,160,23,0.08);
  animation:spinReverse 14s linear infinite;
}
.hero-logo-img {
  width:200px; z-index:2; position:relative;
  filter:drop-shadow(0 0 28px rgba(212,160,23,0.28));
}
@keyframes heroOrb { 0%,100%{transform:scale(1)} 50%{transform:scale(1.02)} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes spinReverse { to{transform:rotate(-360deg)} }

/*  CATEGORY CARDS  */
.cat-strip { background:#fff; padding:32px 40px; border-bottom:1px solid var(--border); overflow:hidden; }
.cat-strip-inner { display:flex; gap:16px; overflow-x:auto; justify-content:center; flex-wrap:wrap; }
.cat-strip-inner::-webkit-scrollbar { height:4px; }
.cat-strip-inner::-webkit-scrollbar-thumb { background:var(--saffron); border-radius:4px; }
.cat-card {
  display:flex; flex-direction:column; align-items:center;
  background:#fff; border:2px solid var(--border); border-radius:var(--radius);
  min-width:155px; max-width:170px; overflow:hidden; cursor:pointer;
  transition:all 0.28s; text-decoration:none; flex-shrink:0;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.cat-card:hover { border-color:var(--saffron); transform:translateY(-5px); box-shadow:0 12px 32px rgba(200,82,42,0.15); }
.cat-card-img {
  width:100%; height:130px; display:flex; align-items:center; justify-content:center;
  font-size:60px; position:relative; overflow:hidden;
}
.cat-card-img img { width:100%; height:100%; object-fit:cover; }
.cat-card-body { padding:14px 12px 16px; text-align:center; width:100%; }
.cat-card-name { font-family:'Cormorant Garamond',serif; font-size:15px; font-weight:700; color:var(--charcoal); }
.cat-card-count { font-size:11px; color:var(--muted); font-weight:500; margin-top:3px; }
.cat-card-bar { height:3px; width:0; background:var(--saffron); transition:width 0.3s; }
.cat-card:hover .cat-card-bar { width:100%; }

/*  FARMER SECTION  */
.farmer-section {
  background:linear-gradient(135deg,var(--forest),#2D6040);
  padding:64px 80px;
}
.farmer-inner { display:grid; grid-template-columns:1fr 1.2fr; gap:64px; align-items:center; }
.farmer-left h2 { font-family:'Cormorant Garamond',serif; font-size:42px; font-weight:700; color:#fff; margin-bottom:16px; }
.farmer-left h2 em { color:var(--gold-light); font-style:italic; }
.farmer-left p { color:rgba(255,255,255,0.65); font-size:15px; line-height:1.7; margin-bottom:24px; }
.farmer-big-num {
  font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:700; color:var(--gold-light);
  line-height:1; margin-bottom:6px;
}
.farmer-big-label { color:rgba(255,255,255,0.6); font-size:13px; font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.farmer-right { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius-lg); padding:28px; }
.farmer-feed-title { color:var(--gold-light); font-size:14px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:18px; }
.farmer-feed-item { display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.07); }
.farmer-feed-item:last-child { border-bottom:none; }
.farmer-feed-avatar {
  width:36px; height:36px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--saffron),var(--gold));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:14px;
}
.farmer-feed-text { font-size:13px; color:rgba(255,255,255,0.7); }
.farmer-feed-amount { color:var(--gold-light); font-weight:700; }

/*  CART PAGE  */
.cart-layout { display:grid; grid-template-columns:1fr 360px; gap:32px; align-items:start; }
.cart-items { background:#fff; border-radius:var(--radius); border:1px solid var(--border); overflow:hidden; }
.cart-item { display:flex; gap:16px; padding:20px; border-bottom:1px solid var(--border); }
.cart-item:last-child { border-bottom:none; }
.cart-item-img { width:88px; height:88px; border-radius:var(--radius-sm); overflow:hidden; flex-shrink:0; background:var(--cream); }
.cart-item-img img { width:100%; height:100%; object-fit:cover; }
.cart-item-body { flex:1; }
.cart-item-name { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:700; }
.cart-item-size { font-size:12px; color:var(--muted); margin-bottom:8px; }
.cart-item-price { font-size:18px; font-weight:700; color:var(--saffron); }
.cart-item-actions { display:flex; align-items:center; gap:12px; margin-top:8px; }
.cart-remove-btn { background:none; border:none; color:var(--muted); font-size:13px; cursor:pointer; }
.cart-remove-btn:hover { color:var(--saffron); }
.cart-summary {
  background:#fff; border-radius:var(--radius); border:1px solid var(--border);
  padding:24px; position:sticky; top:90px;
}
.cart-summary h3 { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:700; margin-bottom:20px; }
.summary-row { display:flex; justify-content:space-between; font-size:14px; margin-bottom:12px; }
.summary-total { border-top:2px solid var(--border); padding-top:14px; margin-top:14px; font-weight:700; font-size:18px; }
.farmer-contrib-box {
  background:linear-gradient(135deg,#F0FDF4,#DCFCE7);
  border:1px solid #BBF7D0; border-radius:var(--radius-sm); padding:14px;
  margin:16px 0; display:flex; align-items:center; gap:10px; font-size:13px;
}
.checkout-wa-btn {
  width:100%; background:#25D366; color:#fff;
  padding:16px; border-radius:var(--radius-sm); font-size:16px; font-weight:700;
  margin-top:16px; display:flex; align-items:center; justify-content:center; gap:8px;
  transition:opacity 0.2s;
}
.checkout-wa-btn:hover { opacity:0.92; }

/*  LIFECYCLE / FOR-WHOM SECTION  */
.life-section { background:var(--warm-white); }
.life-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(185px,1fr)); gap:18px; margin-top:48px; }
.life-card {
  background:#fff; border-radius:var(--radius); padding:28px 20px;
  border-top:4px solid var(--saffron); text-align:center;
  box-shadow:0 2px 12px rgba(0,0,0,0.05); transition:all 0.3s;
}
.life-card:hover { transform:translateY(-5px); box-shadow:var(--hover-shadow); }
.life-icon { font-size:42px; margin-bottom:14px; }
.life-card h3 { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:700; color:var(--charcoal); margin-bottom:8px; }
.life-card p { font-size:12px; color:var(--muted); line-height:1.6; }

/*  WHY US  */
.why-section { background:var(--charcoal); }
.why-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:28px; margin-top:48px; }
.why-card { text-align:center; }
.why-icon {
  width:64px; height:64px; border-radius:14px;
  background:rgba(212,160,23,0.1); border:1px solid rgba(212,160,23,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; margin:0 auto 18px;
}
.why-card h3 { color:var(--gold-light); font-family:'Cormorant Garamond',serif; font-size:19px; margin-bottom:8px; }
.why-card p { color:rgba(255,255,255,0.55); font-size:13px; line-height:1.65; }
.why-section .section-title { color:var(--gold-light); }
.why-section .section-desc { color:rgba(255,255,255,0.55); }

/*  TESTIMONIALS  */
.testi-section { background:var(--cream); }
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(290px,1fr)); gap:22px; margin-top:48px; }
.testi-card {
  background:#fff; border-radius:var(--radius); padding:28px;
  border:1px solid var(--border); position:relative;
}
.testi-quote { font-size:60px; font-family:'Cormorant Garamond',serif; color:var(--gold-light); opacity:0.3; position:absolute; top:10px; left:18px; line-height:1; }
.testi-stars { color:var(--gold); font-size:13px; margin-bottom:12px; }
.testi-text { font-size:14px; line-height:1.72; color:var(--text); margin-bottom:18px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-av {
  width:40px; height:40px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--saffron),var(--gold));
  display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700;
}
.testi-name { font-weight:700; font-size:13px; }
.testi-loc { font-size:11px; color:var(--muted); }

/*  FOOTER  */
.site-footer { background:var(--charcoal); padding:56px 80px 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px; margin-bottom:40px; }
.footer-logo img { height:50px; mix-blend-mode:screen; filter:brightness(1.2); margin-bottom:14px; }
.footer-about { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.75; }
.footer-h { color:var(--gold-light); font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:18px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { color:rgba(255,255,255,0.5); font-size:13px; transition:color 0.2s; }
.footer-links a:hover { color:var(--gold-light); }
.footer-contact { font-size:13px; color:rgba(255,255,255,0.5); line-height:2.1; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:22px; display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.3); }
.social-links { display:flex; gap:10px; }
.soc-link {
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center; font-size:14px;
  color:rgba(255,255,255,0.5); transition:all 0.2s;
}
.soc-link:hover { background:var(--saffron); border-color:var(--saffron); color:#fff; }

/*  FLOATING WA BUTTON  */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:400;
  background:#25D366; color:#fff; width:56px; height:56px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:26px; text-decoration:none;
  box-shadow:0 6px 24px rgba(37,211,102,0.4);
  animation:waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 8px 36px rgba(37,211,102,0.65)} }

/*  BREADCRUMB  */
.breadcrumb { padding:14px 80px; background:#fff; border-bottom:1px solid var(--border); font-size:13px; }
.breadcrumb a { color:var(--muted); }
.breadcrumb span { color:var(--saffron); font-weight:600; }

/*  PAGE HEADER  */
.page-header {
  background:linear-gradient(135deg,var(--charcoal),#3D1A00);
  padding:56px 80px; position:relative; overflow:hidden;
}
.page-header::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%,rgba(200,82,42,0.12) 0%,transparent 65%); }
.page-header h1 { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:700; color:#fff; position:relative; z-index:1; }
.page-header p { color:rgba(255,255,255,0.6); font-size:16px; margin-top:10px; position:relative; z-index:1; max-width:560px; }

/*  SUB-CATEGORY FILTER  */
.filter-bar { background:#fff; padding:20px 80px; border-bottom:1px solid var(--border); display:flex; gap:10px; flex-wrap:wrap; }
.filter-btn {
  padding:8px 20px; border-radius:30px; border:1.5px solid var(--border);
  background:#fff; font-size:13px; font-weight:600; color:var(--muted);
  cursor:pointer; transition:all 0.22s;
}
.filter-btn:hover, .filter-btn.active { background:var(--saffron); color:#fff; border-color:var(--saffron); }

/*  ORDER CONFIRMATION  */
.order-confirm-wrap { max-width:720px; margin:60px auto; padding:0 20px; }
.order-confirm-card { background:#fff; border-radius:var(--radius-lg); padding:48px; border:1px solid var(--border); text-align:center; }
.confirm-icon { font-size:72px; margin-bottom:20px; animation:bounce 0.6s; }
@keyframes bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
.confirm-title { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:700; color:var(--forest); margin-bottom:10px; }
.confirm-order-id { font-size:13px; color:var(--muted); margin-bottom:28px; }
.confirm-items { background:var(--cream); border-radius:var(--radius-sm); padding:20px; text-align:left; margin:20px 0; }
.confirm-row { display:flex; justify-content:space-between; font-size:14px; padding:6px 0; border-bottom:1px solid var(--border); }
.confirm-row:last-child { border-bottom:none; font-weight:700; font-size:16px; }
.confirm-farmer { background:linear-gradient(135deg,#F0FDF4,#DCFCE7); border:1px solid #BBF7D0; border-radius:var(--radius-sm); padding:16px; margin:16px 0; font-size:14px; }

/*  ADMIN PANEL  */
.admin-layout { display:grid; grid-template-columns:240px 1fr; min-height:100vh; }
.admin-sidebar { background:var(--charcoal); padding:24px 0; }
.admin-logo { padding:0 20px 24px; border-bottom:1px solid rgba(255,255,255,0.08); }
.admin-logo img { height:44px; mix-blend-mode:screen; filter:brightness(1.2); }
.admin-nav { padding:16px 0; }
.admin-nav-item {
  display:flex; align-items:center; gap:12px;
  padding:12px 24px; color:rgba(255,255,255,0.6); font-size:14px; font-weight:500;
  cursor:pointer; transition:all 0.2s; border-left:3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active { background:rgba(255,255,255,0.05); color:#fff; border-left-color:var(--saffron); }
.admin-nav-item span:first-child { font-size:18px; }
.admin-content { background:#F5F0E8; padding:32px; overflow-y:auto; }
.admin-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; }
.admin-topbar h1 { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:700; color:var(--charcoal); }
.admin-page { display:none; }
.admin-page.active { display:block; }
.stat-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; margin-bottom:32px; }
.stat-card {
  background:#fff; border-radius:var(--radius); padding:24px;
  border:1px solid var(--border); display:flex; flex-direction:column; gap:8px;
}
.stat-card-icon { font-size:32px; }
.stat-card-val { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:700; color:var(--saffron); }
.stat-card-label { font-size:12px; color:var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.admin-table { background:#fff; border-radius:var(--radius); border:1px solid var(--border); overflow:hidden; }
.admin-table table { width:100%; border-collapse:collapse; }
.admin-table th { background:var(--forest); color:#fff; padding:14px 16px; text-align:left; font-size:12px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; }
.admin-table td { padding:14px 16px; border-bottom:1px solid var(--border); font-size:13px; }
.admin-table tr:last-child td { border-bottom:none; }
.admin-table tr:hover td { background:var(--cream); }
.admin-form { background:#fff; border-radius:var(--radius); border:1px solid var(--border); padding:28px; }
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:13px; font-weight:700; color:var(--text); margin-bottom:7px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-size:14px; font-family:'DM Sans';
  outline:none; background:#fff; transition:border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--saffron); }
.form-textarea { resize:vertical; min-height:100px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.btn-save { background:var(--saffron); color:#fff; padding:12px 28px; border-radius:var(--radius-sm); font-size:14px; font-weight:700; }
.btn-danger { background:#DC2626; color:#fff; padding:8px 16px; border-radius:6px; font-size:12px; font-weight:600; }
.btn-edit { background:var(--gold); color:var(--charcoal); padding:8px 16px; border-radius:6px; font-size:12px; font-weight:600; }
.badge-active { background:#DCFCE7; color:#166534; padding:3px 8px; border-radius:20px; font-size:11px; font-weight:700; }
.badge-pending { background:#FEF9C3; color:#854D0E; padding:3px 8px; border-radius:20px; font-size:11px; font-weight:700; }

/*  NEWSLETTER STRIP  */
.newsletter-strip {
  background:linear-gradient(135deg,var(--saffron),#8B1A00);
  padding:56px 80px; display:flex; align-items:center; justify-content:space-between; gap:48px;
}
.nl-left h2 { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:700; color:#fff; }
.nl-left h2 em { color:var(--gold-light); font-style:italic; }
.nl-left p { color:rgba(255,255,255,0.7); font-size:14px; margin-top:8px; }
.nl-form { display:flex; gap:10px; min-width:380px; }
.nl-form input { flex:1; padding:14px 18px; border-radius:8px; border:none; font-size:14px; font-family:'DM Sans'; outline:none; }
.nl-form button { background:var(--charcoal); color:#fff; padding:14px 24px; border-radius:8px; font-size:14px; font-weight:700; white-space:nowrap; transition:background 0.2s; }
.nl-form button:hover { background:var(--forest); }

/*  POPUP  */
.popup-overlay { position:fixed; inset:0; z-index:600; background:rgba(20,12,5,0.75); display:flex; align-items:flex-start; justify-content:center; padding:14px; }
.popup-overlay.hidden { display:none; }
.popup-box { background:#fff; border-radius:var(--radius-lg); max-width:640px; width:100%; max-height:68vh; overflow:auto; animation:popUp 0.4s cubic-bezier(.25,.8,.25,1); box-shadow:0 32px 80px rgba(0,0,0,0.35); }
@keyframes popUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }

/*  RESPONSIVE  */
@media(max-width:1024px) {
  .section, .section-sm { padding:56px 40px; }
  .site-nav { padding:0 20px; gap:12px; }
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-right { display:none; }
  .hero-left { padding:56px 40px; }
  .hero h1 { font-size:46px; }
  .cart-layout { grid-template-columns:1fr; }
  .farmer-inner { grid-template-columns:1fr; gap:32px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .newsletter-strip { flex-direction:column; padding:40px; }
  .nl-form { min-width:unset; width:100%; }
  .breadcrumb, .filter-bar, .page-header { padding-left:40px; padding-right:40px; }
  .admin-layout { grid-template-columns:1fr; }
  .admin-sidebar { display:none; }
}
@media(max-width:640px) {
  .section, .section-sm { padding:40px 20px; }
  .site-nav { padding:0 16px; }
  .nav-links, .nav-search-input { display:none; }
  .hero-left { padding:40px 20px; }
  .hero h1 { font-size:36px; }
  .hero-pills { flex-wrap:wrap; gap:20px; }
  .products-grid { grid-template-columns:repeat(2, 1fr); gap:14px; }
  .page-header { padding:40px 20px; }
  .page-header h1 { font-size:36px; }
  .breadcrumb, .filter-bar { padding:12px 20px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .site-footer { padding:40px 20px 24px; }
  .footer-bottom { flex-direction:column; gap:14px; text-align:center; }
  .form-grid { grid-template-columns:1fr; }
  .cat-strip { padding:20px; }
}

