:root {
  --blue: #0073C6;
  --blue-dark: #005a9c;
  --green: #1FB53A;
  --green-dark: #178a2c;
  --ink: #0e1a26;
  --muted: #4a5563;
  --cream: #faf7f2;
  --white: #ffffff;
  --line: #ece6dc;
  --warm: #fff8eb;
  --shadow: 0 6px 24px rgba(14, 26, 38, 0.06);
  --shadow-lg: 0 18px 50px rgba(14, 26, 38, 0.10);
  --r: 14px;
  --r-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 18px; } }

/* Header */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 56px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .a { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--blue); letter-spacing: -0.02em; }
.brand-text .b { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--green); color: white !important;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); color: white !important; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s; }

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 80px; right: 0; background: var(--cream); flex-direction: column; padding: 24px; width: 100%; max-width: 280px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: 0.3s; align-items: flex-start; gap: 20px; border-left: 1px solid var(--line); height: calc(100vh - 80px); }
  .nav-links.open { transform: translateX(0); }
  .menu-toggle { display: block; }
  .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31, 181, 58, 0.18) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 115, 198, 0.14) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 80px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31, 181, 58, 0.12); color: var(--green-dark);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue); }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 520px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 0; cursor: pointer;
}
.btn-primary { background: var(--blue); color: white !important; box-shadow: 0 4px 18px rgba(0,115,198,0.28); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,115,198,0.34); }
.btn-secondary { background: var(--ink); color: white !important; }
.btn-secondary:hover { background: #1c2a3a; transform: translateY(-2px); }
.btn-outline { background: white; color: var(--ink) !important; border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #fff8eb 0%, #fff 50%, #f0f5f9 100%);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-art img { width: 78%; height: auto; }
.hero-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: white; padding: 14px 20px; border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--green); line-height: 1; }
.hero-badge .lbl { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

/* Trust strip */
.trust {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: center; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; }
.trust-item .v { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--blue); line-height: 1; }
.trust-item .l { font-size: 0.82rem; color: var(--muted); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }

/* Sections */
section { padding: 80px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { display: inline-block; color: var(--green-dark); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* Categories grid */
.cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .cats { grid-template-columns: repeat(4, 1fr); } }
.cat-card {
  background: white;
  border-radius: var(--r);
  padding: 24px 20px;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-align: center;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,115,198,0.04) 100%);
  opacity: 0; transition: opacity 0.25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.cat-card:hover::before { opacity: 1; }
.cat-icon { font-size: 2.2rem; margin-bottom: 12px; line-height: 1; }
.cat-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.cat-card .ct { font-size: 0.82rem; color: var(--muted); }

/* Egusi feature */
.egusi {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a3a 100%);
  color: white;
  border-radius: var(--r-lg);
  padding: 56px 40px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .egusi { grid-template-columns: 1fr 1fr; padding: 70px 60px; } }
.egusi::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(31,181,58,0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.egusi-content { position: relative; z-index: 1; }
.egusi .eyebrow { color: var(--green); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.egusi h2 { color: white; margin-bottom: 16px; }
.egusi p { color: rgba(255,255,255,0.78); margin-bottom: 28px; font-size: 1.05rem; max-width: 460px; }
.variants { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; z-index: 1; }
.variant { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 18px; border-radius: 12px; backdrop-filter: blur(8px); }
.variant .vname { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.08rem; font-weight: 700; color: white; }
.variant .vdesc { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Featured products */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .products { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 960px) { .products { grid-template-columns: repeat(4, 1fr); } }
.product {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--warm) 0%, #fff 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.4rem; color: rgba(0,115,198,0.32);
  letter-spacing: -0.02em; text-align: center; padding: 12px;
  position: relative;
}
.product-img.pl::after {
  content: 'We Yone'; position: absolute; top: 12px; left: 12px;
  background: var(--green); color: white; font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product .cat { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.product .name { font-weight: 600; font-size: 0.96rem; line-height: 1.3; color: var(--ink); margin-bottom: 12px; flex: 1; }
.product a.name { text-decoration: none; display: block; transition: color .15s; }
.product a.name:hover { color: var(--blue); }
.product-link { display: block; text-decoration: none; color: inherit; }
.product .row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.product .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--blue); }
.product .add {
  background: var(--ink); color: white; border: 0; padding: 8px 14px;
  border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.product .add:hover { background: var(--green); }

/* Story */
.story { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .story { grid-template-columns: 1fr 1fr; gap: 80px; } }
.story-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.story-img .quote {
  position: absolute; bottom: 30px; left: 30px; right: 30px;
  color: white; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem; line-height: 1.3; font-weight: 600;
}
.story-img .by { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin-top: 10px; font-family: 'Inter', sans-serif; font-weight: 500; }
.story-content .eyebrow { display: inline-block; color: var(--green-dark); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.story-content h2 { margin-bottom: 20px; }
.story-content p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.stat .n { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat .l { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }

/* Location / map placeholder */
.location-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}
@media (min-width: 720px) { .location-card { grid-template-columns: 1fr 1fr; padding: 50px; } }
.location-card h2 { margin-bottom: 16px; }
.location-card p { color: var(--muted); margin-bottom: 10px; }
.location-card .addr { font-weight: 600; color: var(--ink); }
.location-card .hours { margin-top: 20px; }
.location-card .hours h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--ink); }
.location-card .hours dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; font-size: 0.92rem; color: var(--muted); }
.map-art {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e8f1fa 0%, #f3f9ed 100%);
  border-radius: var(--r);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.map-art .pin {
  width: 56px; height: 56px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0,115,198,0.3);
  position: relative;
}
.map-art .pin::after { content: ''; position: absolute; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; bottom: -20px; }
.map-art .city { margin-top: 24px; font-weight: 700; color: var(--ink); }

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; } }
.footer-brand img { width: 80px; margin-bottom: 16px; background: white; padding: 8px; border-radius: 8px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.94rem; max-width: 320px; }
footer h4 { color: white; font-size: 0.95rem; margin-bottom: 18px; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
footer ul a:hover { color: var(--green); }
.copy { padding-top: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* Shop page */
.shop-head {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 56px 0 40px;
}
.shop-head h1 { margin-bottom: 12px; }
.shop-head p { color: var(--muted); max-width: 640px; }
.shop-controls {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  position: sticky; top: 80px; z-index: 50;
}
.shop-controls-inner { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line);
}
.search input { flex: 1; border: 0; background: transparent; font-size: 0.96rem; color: var(--ink); outline: none; font-family: inherit; }
.search input::placeholder { color: #94a3b8; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); background: white; color: var(--ink);
  padding: 8px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: white; border-color: var(--ink); }
.shop-grid {
  padding: 40px 0 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 960px) { .shop-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1180px) { .shop-grid { grid-template-columns: repeat(5, 1fr); } }
.no-results { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--muted); }
.shop-meta { padding: 12px 0; color: var(--muted); font-size: 0.92rem; }

/* Page hero (smaller, for non-home pages) */
.page-hero { padding: 70px 0 50px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 620px; }

/* About / Kitchen specific */
.kitchen-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a3a 100%);
  color: white;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.kitchen-hero::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31,181,58,0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.kitchen-hero h1, .kitchen-hero p { color: white; position: relative; z-index: 1; }
.kitchen-hero p { color: rgba(255,255,255,0.78); }
.kitchen-hero .hero-ctas { margin-top: 36px; position: relative; z-index: 1; }
.kitchen-variants { padding: 80px 0; }
.kitchen-variant {
  background: white; border-radius: var(--r-lg); padding: 32px;
  border: 1px solid var(--line);
  text-align: center; transition: transform 0.25s, box-shadow 0.25s;
}
.kitchen-variant:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.kitchen-variant .num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.92rem; color: var(--green); font-weight: 700; letter-spacing: 0.08em; }
.kitchen-variant h3 { margin: 12px 0 10px; }
.kitchen-variant p { color: var(--muted); font-size: 0.96rem; }

/* Catering form */
.form-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 640px; margin: 0 auto;
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 10px; font-size: 1rem; font-family: inherit;
  background: var(--cream); color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--blue); background: white; }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-card button { width: 100%; margin-top: 8px; }

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* === Product image (real photo) === */
.product-img.with-photo {
  background: white;
  padding: 8px;
  font-size: 0;
}
.product-img.with-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-img.placeholder {
  flex-direction: column; gap: 10px;
  background: linear-gradient(135deg, #eef4fb 0%, #fff 60%, #eafaee 100%);
}
.product-img.placeholder .ph-logo {
  width: 46%; max-width: 92px; height: auto;
  border-radius: 12px; opacity: 0.92;
  box-shadow: 0 4px 14px rgba(0,115,198,0.10);
}
.product-img.placeholder .ph-soon {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); opacity: 0.85;
}
.checkout-form { padding: 4px 2px 8px; }
.checkout-form .co-back {
  background: none; border: 0; color: var(--blue); font-weight: 600;
  cursor: pointer; padding: 0; margin-bottom: 14px; font-size: 0.9rem;
}
.checkout-form h4 { margin: 0 0 4px; font-size: 1.05rem; }
.checkout-form .co-note { font-size: 0.85rem; color: var(--muted); margin: 0 0 16px; }
.checkout-form label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink);
  margin-bottom: 12px;
}
.checkout-form input {
  display: block; width: 100%; margin-top: 5px; padding: 11px 12px;
  border: 1px solid #d9d2c7; border-radius: 10px; font-size: 0.95rem;
  font-family: inherit; box-sizing: border-box;
}
.checkout-form input:focus { outline: none; border-color: var(--blue); }
.checkout-form .co-err { color: #c0271b; font-size: 0.85rem; margin: 0 0 10px; min-height: 1em; }
.checkout-form .co-pay { width: 100%; }
.checkout-form .co-secure {
  font-size: 0.72rem; color: var(--muted); text-align: center; margin: 12px 0 0;
}
.checkout-form .co-toggle {
  display: flex; gap: 6px; background: #f1ece3; padding: 4px; border-radius: 12px; margin-bottom: 16px;
}
.checkout-form .co-tab {
  flex: 1; border: 0; background: none; padding: 9px 8px; border-radius: 9px;
  font-family: inherit; font-weight: 600; font-size: 0.9rem; color: var(--muted); cursor: pointer;
}
.checkout-form .co-tab.active { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.checkout-form .co-row { display: flex; gap: 10px; }
.checkout-form .co-row label { flex: 1; }
.checkout-form .co-rate-btn {
  width: 100%; border: 1px dashed var(--blue); background: #f3f8fd; color: var(--blue);
  font-weight: 600; padding: 10px; border-radius: 10px; cursor: pointer; margin-bottom: 10px; font-family: inherit;
}
.checkout-form .co-ship-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.92rem; margin-bottom: 4px; color: var(--ink);
}
.checkout-form .co-ship-line strong { color: var(--green-dark, var(--green)); }
.product-img .badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2; align-items: flex-start;
}
.badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: white;
}
.badge.pl { background: var(--green); }
.badge.pickup { background: #d97706; }
.badge.weight { background: var(--blue); }
.badge.lowstock { background: #b91c1c; }

/* Variant selector (bitter kola etc.) */
.variant-select {
  width: 100%; padding: 6px 8px; margin-bottom: 8px;
  font-size: 0.8rem; font-family: inherit;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--cream); color: var(--ink);
  cursor: pointer;
}
.variant-select:focus { border-color: var(--blue); outline: none; }

/* === Cart icon in nav === */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(0, 115, 198, 0.08); color: var(--blue) !important;
  border: 0; cursor: pointer; font-size: 1.1rem;
  transition: background 0.2s;
}
.cart-btn:hover { background: rgba(0, 115, 198, 0.16); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--green); color: white;
  font-size: 0.66rem; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px; font-family: 'Inter', sans-serif;
}
.cart-count[data-count="0"] { display: none; }

/* === Cart drawer === */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 440px;
  background: var(--cream); z-index: 201;
  transform: translateX(100%); transition: transform 0.3s;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(14,26,38,0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 22px 24px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  background: white;
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  background: none; border: 0; font-size: 1.5rem; cursor: pointer;
  color: var(--muted); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; border-radius: 999px;
  transition: background 0.2s;
}
.cart-close:hover { background: var(--line); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty .icn { font-size: 3rem; color: var(--line); margin-bottom: 14px; }
.cart-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line); align-items: center;
}
.cart-item .img {
  width: 60px; height: 60px; border-radius: 8px;
  background: white; padding: 4px; border: 1px solid var(--line);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.cart-item .img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cart-item .info .nm { font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.cart-item .info .vlbl { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }
.cart-item .info .pr { font-size: 0.85rem; color: var(--blue); font-weight: 700; margin-top: 4px; }
.cart-item .qty {
  display: flex; align-items: center; gap: 6px;
}
.cart-item .qty button {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--line);
  background: white; cursor: pointer; font-size: 0.95rem; color: var(--ink);
}
.cart-item .qty button:hover { background: var(--cream); }
.cart-item .qty .n { min-width: 24px; text-align: center; font-weight: 600; font-size: 0.92rem; }
.cart-item .rm {
  background: none; border: 0; color: var(--muted); font-size: 0.78rem;
  cursor: pointer; padding: 4px; margin-top: 6px;
}
.cart-item .rm:hover { color: #b91c1c; }
.cart-footer {
  padding: 20px 24px; border-top: 1px solid var(--line); background: white;
}
.cart-totals { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.95rem; }
.cart-totals .v { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--blue); }
.cart-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; text-align: center; }
.cart-footer .btn { width: 100%; }

/* === Shop polish === */
.product-img { position: relative; }
.product .qty-add {
  display: flex; gap: 6px; align-items: center;
}
.shop-category-bar {
  background: white; border-bottom: 1px solid var(--line);
  padding: 14px 0; overflow-x: auto;
}
.shop-category-bar .wrap { display: flex; gap: 8px; padding-bottom: 4px; }
.shop-category-bar::-webkit-scrollbar { height: 6px; }
.shop-category-bar::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
