/* =============================================================
   Walworld International Supermarket
   Design system + components  |  Fresh & Organic
   Crafted by Mylobstr Designs
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --green-900: #1E3A28;
  --green-800: #244A31;
  --green-700: #2F6B3C;
  --green-600: #3C8049;
  --green-500: #4C9A5E;
  --sage-300: #9FC6A0;
  --sage-100: #E5F0E2;
  --cream:     #FAF6EC;
  --cream-200: #F1E9D6;
  --cream-300: #E9DEC4;
  --charcoal:  #1F2723;
  --muted:     #5C6B5F;
  --gold:      #C9A24B;
  --gold-soft: #E7CF8E;
  --terracotta:#D9774B;
  --terracotta-dark:#C2613A;
  --white:     #FFFFFF;

  /* Semantic */
  --bg:         var(--white);
  --surface:    var(--white);
  --surface-alt:var(--white);
  --text:       var(--charcoal);
  --heading:    var(--green-900);
  --primary:    var(--green-700);
  --accent:     var(--terracotta);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing / radius / shadow */
  --container: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(31,39,35,.07);
  --shadow: 0 18px 40px -18px rgba(31,39,35,.28);
  --shadow-lg: 0 40px 80px -30px rgba(31,39,35,.40);
  --ease: cubic-bezier(.22,.61,.36,1);

  --nav-h: 76px;
  --demo-h: 34px;
}

/* ---------- Demo banner ---------- */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--demo-h);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green-900); color: var(--cream);
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 0 14px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08);
}
.demo-banner svg { stroke: var(--gold-soft); }
.demo-banner svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 480px){ .demo-banner { font-size: .68rem; letter-spacing: .04em; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--surface-alt); }
.section--green {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #EAF2E6;
}
.section--green h1, .section--green h2, .section--green h3 { color: #fff; }
.section--green .lede { color: #C6D8C2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  font-size: 1.05rem; color: var(--green-700);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--gold); display:inline-block; }
.section--green .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lede { margin-top: 18px; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 12px 24px -10px rgba(47,107,60,.7); }
.btn-primary:hover { background: var(--green-800); box-shadow: 0 16px 30px -10px rgba(47,107,60,.8); }
.btn-accent { background: var(--terracotta); color: #fff; box-shadow: 0 12px 24px -10px rgba(217,119,75,.7); }
.btn-accent:hover { background: var(--terracotta-dark); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: rgba(47,107,60,.35); }
.btn-ghost:hover { border-color: var(--green-700); background: var(--sage-100); }
.btn-light { background: #fff; color: var(--green-800); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn .ico { width: 18px; height: 18px; }

.link-arrow { display:inline-flex; align-items:center; gap:8px; font-weight:600; color: var(--green-700); }
.link-arrow .ico { width:18px; height:18px; transition: transform .25s var(--ease); }
.link-arrow:hover .ico { transform: translateX(5px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: var(--demo-h); left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), background .3s, box-shadow .3s, border-color .3s;
}
.nav.scrolled { height: 64px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); border-color: var(--cream-300); }
.nav__inner { width:100%; max-width: var(--container); margin-inline:auto; padding-inline:24px; display:flex; align-items:center; justify-content:space-between; gap: 20px; }
.brand { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand__mark { width: 38px; height: 38px; flex-shrink:0; }
.brand__logo { display:inline-flex; align-items:center; justify-content:center; background:#fff;
  border-radius:12px; padding:5px 8px; box-shadow:0 2px 10px rgba(31,39,35,.10); flex-shrink:0; transition: height .3s var(--ease); }
.brand__logo img { height: 42px; width:auto; display:block; transition: height .3s var(--ease); }
.nav.scrolled .brand__logo img { height: 34px; }
.footer .brand__logo { box-shadow:none; }
.footer .brand__logo img { height: 46px; }
.brand__text { display:flex; flex-direction:column; line-height:1; }
.brand__name { font-family: var(--font-display); font-weight:600; font-size:1.32rem; color: var(--green-900); letter-spacing:-.01em; }
.brand__sub { font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color: var(--muted); font-weight:600; margin-top:3px; }

.nav__links { display:flex; align-items:center; gap: 4px; }
.nav__links a {
  position: relative; padding: 10px 14px; border-radius: 10px;
  font-weight: 500; font-size: .96rem; color: var(--charcoal);
  transition: color .2s, background .2s;
  white-space: nowrap; flex-shrink: 0;
}
.nav__links a:hover { color: var(--green-700); background: var(--sage-100); }
.nav__links a.active { color: var(--green-800); font-weight: 600; }
.nav__links a.active::after {
  content:""; position:absolute; left:14px; right:14px; bottom:4px; height:2px;
  background: var(--gold); border-radius:2px;
}
.nav__links a .ext { width:13px; height:13px; opacity:.6; margin-left:2px; vertical-align:-1px; display:inline-block; }
.nav__cta { display:flex; align-items:center; gap:12px; flex-shrink:0; }

.nav__toggle { display:none; width:44px; height:44px; border:none; background:transparent; position:relative; }
.nav__toggle span { position:absolute; left:11px; right:11px; height:2px; background: var(--green-900); border-radius:2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle span:nth-child(1){ top:15px; } .nav__toggle span:nth-child(2){ top:21px; } .nav__toggle span:nth-child(3){ top:27px; }
body.menu-open .nav__toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2){ opacity:0; }
body.menu-open .nav__toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.nav__drawer {
  position: fixed; inset: calc(var(--nav-h) + var(--demo-h)) 0 0 0; z-index: 99;
  background: var(--white); padding: 28px 24px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display:flex; flex-direction:column; gap: 6px; overflow-y:auto;
}
body.menu-open .nav__drawer { transform: translateX(0); }
.nav__drawer a { padding: 16px 8px; font-size: 1.15rem; font-weight:500; border-bottom:1px solid var(--cream-300); color: var(--charcoal); }
.nav__drawer a.active { color: var(--green-700); }
.nav__drawer a .ext { width:15px; height:15px; opacity:.6; margin-left:4px; vertical-align:-2px; display:inline-block; }
.nav__drawer .btn { margin-top: 18px; justify-content:center; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; min-height: 92svh; display:flex; align-items:center; color:#fff; overflow:hidden; padding-top: calc(var(--nav-h) + var(--demo-h)); }
.hero__bg { position:absolute; inset:0; z-index:-2; }
.hero__bg img { width:100%; height:100%; object-fit:cover; animation: kenburns 24s ease-in-out infinite alternate; }
.hero::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(105deg, rgba(20,40,26,.92) 0%, rgba(20,40,26,.72) 42%, rgba(20,40,26,.28) 100%); }
.hero__inner { max-width: 720px; }
.hero h1 { color:#fff; }
.hero .lede { color: #E4EFE0; font-size: clamp(1.1rem,1.7vw,1.4rem); max-width: 560px; margin-top: 22px; }
.hero__actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 36px; }
.hero__badge {
  display:inline-flex; align-items:center; gap:12px; margin-bottom:26px;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25);
  padding:9px 18px 9px 9px; border-radius:999px; backdrop-filter: blur(4px);
}
.hero__badge b { background: var(--gold); color: var(--green-900); font-family:var(--font-display); font-weight:700;
  padding:4px 12px; border-radius:999px; font-size:.95rem; }
.hero__badge span { font-size:.9rem; color:#EAF2E6; font-weight:500; }

@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.12) translate(-2%, -1%); } }

/* page hero (interior pages) */
.pagehero { position:relative; padding: calc(var(--nav-h) + var(--demo-h) + 70px) 0 70px; color:#fff; overflow:hidden; }
.pagehero--compact { padding: calc(var(--nav-h) + var(--demo-h) + 34px) 0 40px; }
.pagehero__bg { position:absolute; inset:0; z-index:-2; }
.pagehero__bg img { width:100%; height:100%; object-fit:cover; }
.pagehero::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(120deg, rgba(20,40,26,.90), rgba(20,40,26,.55)); }
.pagehero h1 { color:#fff; max-width: 760px; }
.pagehero .lede { color:#E4EFE0; max-width: 620px; margin-top:18px; }
.breadcrumb { display:flex; gap:8px; align-items:center; font-size:.85rem; color:#C6D8C2; margin-bottom:18px; }
.breadcrumb a:hover { color:#fff; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow-sm); border:1px solid var(--cream-300);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display:flex; flex-direction:column; height:100%;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4/3; overflow:hidden; position:relative; }
.card__media img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: 24px 24px 26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.card__body h3 { color: var(--green-800); }
.card__body p { color: var(--muted); font-size:.97rem; }
.card__body .link-arrow { margin-top:auto; padding-top:8px; }

.dept-card .tag {
  position:absolute; top:14px; left:14px; background: rgba(250,246,236,.92);
  color: var(--green-800); font-size:.72rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; padding:6px 12px; border-radius:999px;
}

/* feature / value cards */
.feature { background: var(--surface); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); border:1px solid var(--cream-300); height:100%; }
.feature .fico { width:54px; height:54px; border-radius:14px; background: var(--sage-100); display:grid; place-items:center; margin-bottom:18px; }
.feature .fico svg { width:28px; height:28px; stroke: var(--green-700); }
.feature h3 { font-size:1.25rem; margin-bottom:8px; color: var(--green-800); }
.feature p { color: var(--muted); font-size:.97rem; }

/* chip list */
.chips { display:flex; flex-wrap:wrap; gap:10px; }
.chip { background: var(--sage-100); color: var(--green-800); border:1px solid var(--sage-300);
  padding:8px 16px; border-radius:999px; font-size:.9rem; font-weight:500; }
.section--green .chip { background: rgba(255,255,255,.1); color:#EAF2E6; border-color: rgba(255,255,255,.2); }

/* ---------- Produce price list ---------- */
.price-list { list-style:none; margin:18px 0 0; display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:0 56px; }
.prod-item {
  display:flex; align-items:baseline; gap:10px; padding:11px 2px;
  border-bottom:1px solid var(--cream-300);
}
.prod-item .pc-name { font-weight:500; color: var(--charcoal); display:inline-flex; align-items:baseline; gap:8px; }
.prod-item .pi-dots { flex:1 1 auto; align-self:center; min-width:16px; height:0; border-bottom:1px dotted var(--sage-300); }
.prod-item .pc-price { font-family: var(--font-display); font-weight:600; color: var(--green-800); white-space:nowrap; }
.prod-item .pc-was { font-family: var(--font-body); font-size:.8rem; color: var(--muted); text-decoration: line-through; font-weight:600; margin-left:6px; }
.prod-item .pc-unit { color: var(--muted); font-weight:500; font-size:.82rem; white-space:nowrap; }
.prod-item .pc-badge {
  font-size:.6rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  padding:2px 7px; border-radius:999px; color:#fff; line-height:1.4; align-self:center;
}
.prod-item .pc-badge.organic { background: var(--green-600); }
.prod-item .pc-badge.sale { background: var(--terracotta); }
@media (max-width:760px){ .price-list { grid-template-columns: 1fr; gap:0; } }

/* ---------- Produce toolbar (search + category tabs) ---------- */
.produce-toolbar { display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:space-between; margin-top:32px; }
.produce-search { position:relative; flex:1; min-width:240px; max-width:420px; }
.produce-search svg { position:absolute; left:16px; top:50%; transform:translateY(-50%); width:18px; height:18px; stroke: var(--muted); }
.produce-search input {
  width:100%; font-family:inherit; font-size:.95rem; color: var(--charcoal);
  padding:13px 18px 13px 44px; border:1px solid var(--cream-300); border-radius:999px; background:#fff; outline:none;
  transition: border-color .2s, box-shadow .2s;
}
.produce-search input:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(60,128,73,.12); }
.produce-tabs { display:flex; flex-wrap:wrap; gap:8px; }
.produce-tabs button {
  border:1px solid var(--cream-300); background:#fff; color: var(--green-800); font-weight:600; font-size:.86rem;
  padding:9px 18px; border-radius:999px; transition: background .2s, color .2s, border-color .2s;
}
.produce-tabs button:hover { border-color: var(--sage-300); }
.produce-tabs button.active { background: var(--green-700); color:#fff; border-color: var(--green-700); }
.prod-group.hidden, .prod-item.hidden { display:none; }
.produce-empty { text-align:center; color: var(--muted); padding:40px 0; display:none; }
.produce-empty.show { display:block; }

/* ---------- Split (image + text) ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items:center; }
.split--rev .split__media { order:2; }
.split__media { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow); position:relative; }
.split__media img { width:100%; height:100%; object-fit:cover; aspect-ratio: 5/4; }
.split__body h2 { margin-bottom:18px; }
.split__body p { color: var(--muted); margin-bottom:16px; }
.split__list { display:flex; flex-direction:column; gap:14px; margin: 22px 0; }
.split__list li { display:flex; gap:12px; align-items:flex-start; }
.split__list .tick { width:24px; height:24px; flex-shrink:0; border-radius:50%; background: var(--green-700); display:grid; place-items:center; margin-top:2px; }
.split__list .tick svg { width:14px; height:14px; stroke:#fff; stroke-width:3; }
.split__list span { color: var(--charcoal); }

/* floating price badge on media */
.price-flag {
  position:absolute; bottom:22px; left:22px; background:#fff; border-radius: var(--radius);
  padding:16px 20px; box-shadow: var(--shadow); display:flex; align-items:center; gap:14px;
}
.price-flag .pf-num { font-family:var(--font-display); font-weight:700; font-size:1.9rem; color: var(--terracotta); line-height:1; }
.price-flag .pf-txt { font-size:.82rem; color: var(--muted); font-weight:500; }

/* ---------- Stats / savings band ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align:center; }
.stat .num { font-family: var(--font-display); font-weight:700; font-size: clamp(2.6rem,5vw,3.6rem); color: var(--gold); line-height:1; }
.stat .lbl { margin-top:10px; font-size:.95rem; color:#C6D8C2; letter-spacing:.02em; }

/* ---------- Gallery ---------- */
.gallery { display:grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery figure { overflow:hidden; border-radius: var(--radius); position:relative; }
.gallery img { width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery .span2 { grid-column: span 2; }
.gallery .row2 { grid-row: span 2; }

/* ---------- Price comparison (deals) ---------- */
.compare { display:grid; grid-template-columns: 1fr 1fr; gap:0; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow); }
.compare__col { padding: 38px 34px; }
.compare__col h3 { margin-bottom: 6px; }
.compare__col.them { background:#fff; }
.compare__col.us { background: linear-gradient(160deg, var(--green-700), var(--green-800)); color:#EAF2E6; }
.compare__col.us h3 { color:#fff; }
.compare__row { display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-bottom:1px dashed rgba(31,39,35,.14); }
.compare__col.us .compare__row { border-color: rgba(255,255,255,.18); }
.compare__row:last-child { border-bottom:none; }
.compare__price { font-family: var(--font-display); font-weight:700; font-size:1.25rem; }
.them .compare__price { color: var(--muted); text-decoration: line-through; }
.us .compare__price { color: var(--gold-soft); }
.compare__tag { display:inline-block; margin-top:6px; background: var(--gold); color: var(--green-900); font-weight:700; font-size:.78rem; padding:5px 14px; border-radius:999px; }

/* ---------- CTA band ---------- */
.cta-band { position:relative; border-radius: var(--radius-lg); overflow:hidden; padding: clamp(44px,6vw,72px); color:#fff; text-align:center; }
.cta-band__bg { position:absolute; inset:0; z-index:-2; }
.cta-band__bg img { width:100%; height:100%; object-fit:cover; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(120deg, rgba(20,40,26,.92), rgba(36,74,49,.78)); }
.cta-band h2 { color:#fff; margin-bottom:16px; }
.cta-band p { color:#E4EFE0; max-width:580px; margin: 0 auto 30px; }
.cta-band .hero__actions { justify-content:center; }

/* ---------- Contact ---------- */
.info-card { background: var(--surface); border-radius: var(--radius); padding:28px 26px; box-shadow: var(--shadow-sm); border:1px solid var(--cream-300); display:flex; gap:18px; align-items:flex-start; }
.info-card .ic { width:48px; height:48px; border-radius:12px; background: var(--sage-100); display:grid; place-items:center; flex-shrink:0; }
.info-card .ic svg { width:24px; height:24px; stroke: var(--green-700); }
.info-card h3 { font-size:1.1rem; margin-bottom:4px; color: var(--green-800); }
.info-card a, .info-card p { color: var(--muted); font-size:.98rem; }
.info-card a:hover { color: var(--green-700); }
.map-frame { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow); border:1px solid var(--cream-300); min-height: 420px; }
.map-frame iframe { width:100%; height:100%; min-height:420px; border:0; display:block; }

/* ---------- Product cards (shelf products) ---------- */
.product-cat { font-family: var(--font-display); font-size: clamp(1.25rem,2vw,1.55rem); color: var(--green-800); margin: 8px 0 20px; display:flex; align-items:center; gap:14px; }
.product-cat::after { content:""; flex:1; height:1px; background: var(--cream-300); }
.product-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(196px,1fr)); gap: 18px; margin-bottom: 50px; }
.product { background: var(--surface); border:1px solid var(--cream-300); border-radius: var(--radius-sm); overflow:hidden; transition: border-color .25s, box-shadow .25s var(--ease); display:flex; flex-direction:column; }
.product:hover { border-color: var(--sage-300); box-shadow: var(--shadow-sm); }
.product__media { position:relative; aspect-ratio: 1/1; overflow:hidden; background:#fff; }
.product__media img { width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.product:hover .product__media img { transform: scale(1.04); }
.product__pending { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; text-align:center; background: linear-gradient(135deg,#F7F1E2,#EDE3CC); color: var(--muted); }
.product__pending svg { width:30px; height:30px; stroke: var(--green-600); opacity:.65; }
.product__pending span { font-size:.74rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }
.product__badge { position:absolute; top:10px; left:10px; background: var(--terracotta); color:#fff; font-size:.64rem; font-weight:700; letter-spacing:.04em; padding:4px 8px; border-radius:5px; }
.product__body { padding: 13px 15px 16px; display:flex; flex-direction:column; flex:1; border-top:1px solid var(--cream-200); }
.product__price { display:flex; align-items:baseline; gap:8px; margin-bottom:6px; }
.product__now { font-weight:700; font-size:1.16rem; color: var(--green-800); letter-spacing:-.01em; }
.product__was { font-size:.82rem; color: var(--muted); text-decoration: line-through; }
.product h4 { font-family: var(--font-body); font-weight:600; font-size:.95rem; color: var(--charcoal); line-height:1.32; margin:0 0 5px; }
.product__meta { font-size:.8rem; color: var(--muted); margin-top:auto; }
@media (max-width:560px){ .product-grid { grid-template-columns: repeat(2,1fr); gap:12px; } .product__body{padding:11px 12px 13px} .product__now{font-size:1.05rem} }

/* ---------- Tile item lists (shelf products) ---------- */
.tile-items { margin-top: 14px; display:flex; flex-direction:column; gap:9px; }
.tile-items li { display:flex; gap:10px; align-items:flex-start; font-size:.92rem; color: var(--charcoal); line-height:1.4; }
.tile-items li svg { width:15px; height:15px; flex-shrink:0; margin-top:4px; stroke: var(--green-600); }

/* ---------- Brands / Vendors ---------- */
.brands-grid { display:grid; grid-template-columns: repeat(6,1fr); gap:16px; }
.brand-tile {
  background: var(--surface); border:1px solid var(--cream-300); border-radius: var(--radius);
  padding: 22px 14px; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  min-height: 110px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.brand-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sage-300); }
.brand-tile .bt-name { font-family: var(--font-display); font-weight:600; font-size:1.12rem; color: var(--green-800); line-height:1.1; }
.brand-tile .bt-cat { font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color: var(--muted); font-weight:600; }
.section--green .brand-tile { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section--green .brand-tile .bt-name { color:#fff; }
.section--green .brand-tile .bt-cat { color: var(--sage-300); }

/* ---------- Weekly specials ---------- */
.specials__head { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom: 36px; }
.special-list { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow:hidden; border:1px solid var(--cream-300); }
.special-cat { padding: 8px 28px; background: var(--green-800); color:#fff; font-family:var(--font-display); font-weight:600; font-size:1.1rem; }
.special-row { display:grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items:center; padding: 15px 28px; border-bottom:1px solid var(--cream-200); }
.special-row:last-child { border-bottom:none; }
.special-row:nth-child(even) { background: #fcfaf3; }
.special-row .sr-name { font-weight:600; color: var(--charcoal); }
.special-row .sr-unit { font-size:.84rem; color: var(--muted); }
.special-row .sr-was { color: var(--muted); text-decoration: line-through; font-size:.92rem; }
.special-row .sr-now { font-family: var(--font-display); font-weight:700; font-size:1.2rem; color: var(--terracotta); min-width: 78px; text-align:right; }
.special-note { font-size:.84rem; color: var(--muted); margin-top:16px; text-align:center; }
@media (max-width: 560px) {
  .special-row { grid-template-columns: 1fr auto; padding: 14px 18px; }
  .special-row .sr-was { display:none; }
  .special-cat { padding-inline: 18px; }
}

/* ---------- Footer (slim: crafted by + address + phone) ---------- */
.footer { background: var(--green-900); color: #BFD2BB; }
.footer a { color: #D6E4D1; transition: color .2s; }
.footer a:hover { color:#fff; }
.footer__bar {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap;
  gap: 6px 24px; padding: 18px 0; font-size:.86rem;
}
.footer__contact { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.footer__dot { opacity:.45; }
.footer__credit a { color: var(--gold-soft); font-weight:600; }
.footer__credit a:hover { color:#fff; }
@media (max-width: 640px) {
  .footer__bar { flex-direction:column; text-align:center; gap:8px; padding:22px 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal[data-delay="1"]{ transition-delay:.08s; }
.reveal[data-delay="2"]{ transition-delay:.16s; }
.reveal[data-delay="3"]{ transition-delay:.24s; }
.reveal[data-delay="4"]{ transition-delay:.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); gap:36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap:32px; }
  .gallery { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1140px) {
  .nav__links a { padding: 10px 11px; font-size: .9rem; }
}
@media (max-width: 1040px) {
  .nav__links, .nav__cta .btn { display:none; }
  .nav__toggle { display:block; }
}
@media (max-width: 860px) {
  .split, .compare { grid-template-columns: 1fr; }
  .split--rev .split__media { order:0; }
  .compare__col.them { border-bottom:1px solid var(--cream-300); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-4, .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .hero__actions .btn, .cta-band .btn { width:100%; justify-content:center; }
  .info-card { flex-direction:column; }
  .container { padding-inline: 18px; }
  .hero { min-height: 86vh; min-height: 86svh; }
  .hero__badge { flex-wrap:wrap; }
  .brand__sub { display:none; }
  .brand__logo img { height: 36px; }
  .brands-grid { grid-template-columns: repeat(2,1fr) !important; }
  .specials__head { flex-direction:column; align-items:flex-start; gap:18px; }
}
@media (max-width: 380px) {
  .brands-grid { grid-template-columns: 1fr !important; }
}

/* ---------- Hand-crafted accents ---------- */
/* A drawn-by-hand underline under section headings — softens the templated grid feel */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: ""; display: block; height: 11px; margin-top: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='12' viewBox='0 0 160 12'%3E%3Cpath d='M3 8 C 35 2 55 11 85 6 S 140 3 157 7' fill='none' stroke='%23C9A24B' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") left bottom / auto 11px no-repeat;
}
.section-head.center h2::after { background-position: center bottom; }
.section--green .section-head h2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='12' viewBox='0 0 160 12'%3E%3Cpath d='M3 8 C 35 2 55 11 85 6 S 140 3 157 7' fill='none' stroke='%23E7CF8E' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Tags & badges sit slightly askew, as if applied by hand */
.dept-card .tag { transform: rotate(-2deg); }
.product__badge { transform: rotate(-3deg); }
.prod-card .pc-badge { transform: rotate(-4deg); }
.price-flag { transform: rotate(-1.5deg); }
.compare__tag { transform: rotate(-1.5deg); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .hero__bg img { animation: none; }
  .reveal { opacity:1; transform:none; }
}
