/* =========================================================
   CHERNI TRADERS — Design tokens
   Palette pulled from the logo: marigold orange, leaf green,
   warehouse teal, warm cream paper, near-black ink.
   ========================================================= */
:root {
  --cream: #FAF4E6;
  /* page background — warm paper, not the usual #F4F1EA */
  --paper: #FFFDF8;
  /* card surfaces */
  --ink: #141414;
  /* primary text — matches logo wordmark black */
  --teal: #012A2C;
  /* deep header/footer — exact warehouse-icon teal from logo */
  --teal-dim: #0B4448;
  --marigold: #FC8006;
  /* primary CTA — exact scooter/arrow orange from logo */
  --marigold-dim: #DF6F00;
  --leaf: #5A9C14;
  /* secondary accent — exact dal-packet green from logo */
  --leaf-dim: #477D0F;
  --gold: #F3B125;
  /* soft highlight — exact oil-bottle gold from logo */
  --line: #E7D8B4;
  /* hairline borders on cream */

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Mulish', system-ui, sans-serif;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-card: 0 10px 30px -14px rgba(27, 27, 24, 0.28);
  --shadow-soft: 0 6px 18px -10px rgba(27, 27, 24, 0.22);

  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--teal);
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 76px 0;
}

.section-narrow {
  padding: 56px 0;
}

:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--marigold-dim);
  background: rgba(242, 135, 26, 0.12);
  border: 1px solid rgba(242, 135, 26, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--marigold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}

.section-head p {
  color: #4A4A42;
  font-size: 17px;
  margin: 0;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--marigold) 0%, var(--marigold-dim) 100%);
  color: #201200;
  box-shadow: 0 10px 22px -10px rgba(252, 128, 6, 0.55);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--marigold-dim) 0%, var(--marigold-dim) 100%);
  box-shadow: 0 12px 26px -8px rgba(252, 128, 6, 0.65);
}

.btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--paper);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 225, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--teal);
  transition: background-color .15s ease, color .15s ease;
}

.main-nav a:hover {
  background: rgba(22, 58, 63, 0.08);
}

.main-nav a.active {
  background: var(--teal);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
}

.phone-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  position: relative;
  transition: all .2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -8px;
}

.nav-toggle span::after {
  position: absolute;
  top: 8px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  color: #fff;
  padding: 88px 0 0;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(244, 193, 92, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-trust strong {
  color: #fff;
}

.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
}

.hero-art .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(244, 193, 92, 0.35), transparent 60%), var(--teal-dim);
  border: 1px dashed rgba(244, 193, 92, 0.45);
}

.hero-art .cart-badge {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.hero-art .cart-badge svg {
  width: 58%;
  height: 58%;
}

.hero-art .chip {
  position: absolute;
  background: var(--paper);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-art .chip svg {
  width: 18px;
  height: 18px;
}

.hero-art .chip-1 {
  top: 2%;
  left: -6%;
}

.hero-art .chip-2 {
  bottom: 4%;
  right: -10%;
  color: var(--marigold-dim);
}

.hero-wave {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: -2px;
}

/* Route dots pattern used as ambient texture in hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  z-index: 1;
}

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */
.page-header {
  background: var(--teal);
  color: #fff;
  padding: 64px 0 54px;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header .eyebrow {
  background: rgba(244, 193, 92, 0.14);
  border-color: rgba(244, 193, 92, 0.5);
  color: var(--gold);
}

.page-header h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0;
}

.breadcrumb {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

/* =========================================================
   FEATURE CARDS (why choose us)
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--leaf);
  color: #fff;
  margin-bottom: 16px;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--marigold);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--teal);
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--marigold-dim);
}

.feature-card:nth-child(5) .feature-icon {
  background: var(--leaf-dim);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: #57574e;
  margin: 0;
}

/* =========================================================
   HOW IT WORKS — delivery route (signature structural device)
   ========================================================= */
.route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.route::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 3px dashed var(--marigold);
  opacity: .55;
  z-index: 0;
}

.route-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.route-step .stop {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--cream);
}

.route-step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.route-step p {
  color: #57574e;
  font-size: 14.5px;
  max-width: 230px;
  margin: 0 auto;
}

/* =========================================================
   PROMISE BANNER
   ========================================================= */
.promise {
  background: var(--marigold);
  border-radius: var(--radius-l);
  padding: 52px 48px;
  color: #1B1200;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.promise blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
  max-width: 620px;
}

.promise blockquote::before {
  content: "\201C";
}

.promise blockquote::after {
  content: "\201D";
}

.promise .promise-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.promise .btn-outline {
  border-color: #1B1200;
  color: #1B1200;
}

.promise .btn-outline:hover {
  background: #1B1200;
  color: var(--marigold);
}

/* =========================================================
   CTA STRIP (bottom of every page)
   ========================================================= */
.cta-strip {
  background: var(--teal);
  color: #fff;
  padding: 54px 0;
  text-align: center;
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 26px;
}

.cta-strip .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #102A2E;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 44px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-tags span {
  font-size: 12.5px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease;
}

.social-row a:hover {
  background: var(--marigold);
}

.social-row svg {
  width: 17px;
  height: 17px;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
  transition: transform .15s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-art {
  position: relative;
  background: var(--teal);
  border-radius: var(--radius-l);
  aspect-ratio: 4/4.6;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
}

.about-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.about-art .tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-art .big {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.2;
}

.about-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
}

.about-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
}

.about-stats div span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.value-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.value-badges span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.mission-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 16px 18px;
}

.mission-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--leaf);
  margin-top: 2px;
}

.mission-list li p {
  margin: 0;
  font-size: 15px;
}

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}

.category-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.category-nav a:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.category-block {
  margin-bottom: 54px;
  scroll-margin-top: 110px;
}

.category-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--leaf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 28px;
  height: 28px;
}

.category-block-head h2 {
  margin: 0;
  font-size: 22px;
}

.category-block-head p {
  margin: 2px 0 0;
  color: #57574e;
  font-size: 14.5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.product-thumb {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.product-card h4 {
  font-size: 14.5px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.category-buy {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

/* =========================================================
   TESTIMONIALS — receipt-slip signature card
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.receipt {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px 22px;
  position: relative;
  box-shadow: var(--shadow-soft);
  --notch: 14px;
  -webkit-mask-image:
    radial-gradient(circle at var(--notch) var(--notch), transparent var(--notch), black calc(var(--notch) + 0.5px)),
    radial-gradient(circle at calc(100% - var(--notch)) var(--notch), transparent var(--notch), black calc(var(--notch) + 0.5px));
  -webkit-mask-composite: source-in, source-in;
  mask-composite: intersect;
  clip-path: polygon(0% 3%, 3% 0%, 8% 3%, 13% 0%, 18% 3%, 23% 0%, 28% 3%, 33% 0%, 38% 3%, 43% 0%, 48% 3%, 53% 0%, 58% 3%, 63% 0%, 68% 3%, 73% 0%, 78% 3%, 83% 0%, 88% 3%, 93% 0%, 100% 3%,
      100% 97%, 93% 100%, 88% 97%, 83% 100%, 78% 97%, 73% 100%, 68% 97%, 63% 100%, 58% 97%, 53% 100%, 48% 97%, 43% 100%, 38% 97%, 33% 100%, 28% 97%, 23% 100%, 18% 97%, 13% 100%, 8% 97%, 3% 100%, 0% 97%);
}

.receipt .stars {
  color: var(--marigold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.receipt p.quote {
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.receipt .divider {
  border-top: 1px dashed var(--line);
  margin: 16px 0;
}

.receipt .customer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
}

.receipt .customer .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.receipt .customer span.loc {
  display: block;
  font-weight: 400;
  color: #8a8a7d;
  font-size: 12.5px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.experience-card {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-m);
  padding: 24px 20px;
}

.experience-card .icon {
  color: var(--gold);
  margin-bottom: 14px;
}

.experience-card .icon svg {
  width: 26px;
  height: 26px;
}

.experience-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin: 0;
}

.note-callout {
  margin-top: 46px;
  border: 1px dashed var(--marigold);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  font-size: 14px;
  color: #6b5a2f;
  background: rgba(244, 193, 92, 0.14);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--leaf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card .icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-card p {
  margin: 0;
  font-size: 14.5px;
  color: #4A4A42;
}

.contact-card a {
  color: var(--teal);
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--marigold-dim);
}

.map-wrap {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 22px;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.contact-form>p {
  color: #57574e;
  margin-bottom: 26px;
  font-size: 14.5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--teal);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--marigold);
  background: var(--paper);
}

.form-note {
  font-size: 12.5px;
  color: #8a8a7d;
  margin-top: 14px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table td {
  padding: 8px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--line);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--teal);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-width: 300px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .route {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .route::before {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset: 68px 16px auto 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    box-shadow: var(--shadow-card);
    transform-origin: top right;
    transform: scale(.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .18s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .phone-pill {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promise {
    padding: 34px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 52px 0;
  }

  .about-art {
    aspect-ratio: 4/3.4;
  }
}

/* =========================================================
   LIVE CATALOG (fetched from the store API)
   ========================================================= */
.catalog-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--leaf-dim);
  margin-bottom: 22px;
}

.catalog-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(90, 156, 20, 0.5);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 156, 20, 0.45);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(90, 156, 20, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(90, 156, 20, 0);
  }
}

.catalog-status.is-error .dot {
  background: var(--marigold);
  animation: none;
}

.catalog-status.is-error {
  color: var(--marigold-dim);
}

.catalog-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 70px 20px;
  color: #6b6b60;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid var(--line);
  border-top-color: var(--marigold);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.category-icon.i-cherni {
  background: var(--marigold);
}

.category-icon.i-dhall {
  background: var(--leaf);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-photo-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}

.product-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--marigold);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #FFFFFF 0%, #FBF3E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

.product-photo-card.out-of-stock .product-image-wrap img {
  opacity: 0.4;
}

.low-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: #5c3d00;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  padding: 4px 8px;
  border-radius: 999px;
}

.product-photo-info {
  padding: 14px 16px 16px;
}

.product-photo-info h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.7em;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--teal);
}

.price-tag::before {
  content: "\20B9";
  margin-right: 1px;
}

.buy-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  color: var(--marigold-dim);
  display: flex;
  align-items: center;
  gap: 3px;
}

.catalog-fallback-note {
  margin-top: 30px;
  border: 1px dashed var(--marigold);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  font-size: 13.5px;
  color: #6b5a2f;
  background: rgba(244, 193, 92, 0.14);
}

@media (max-width: 980px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Hero entrance animation ---- */
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner>div:first-child>* {
  opacity: 0;
  animation: heroRise .7s cubic-bezier(.2, .7, .3, 1) forwards;
}

.hero-eyebrow {
  animation-delay: .05s;
}

.hero h1 {
  animation-delay: .15s;
}

.hero p.lead {
  animation-delay: .28s;
}

.hero-ctas {
  animation-delay: .4s;
}

.hero-trust {
  animation-delay: .52s;
}

@keyframes artPop {
  from {
    opacity: 0;
    transform: scale(.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-art {
  animation: artPop .8s cubic-bezier(.2, .7, .3, 1) .25s both;
}

/* ---- Ambient motion inside the hero art ---- */
@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-art .ring {
  animation: ringRotate 60s linear infinite;
}

.hero-art .ring::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(244, 193, 92, 0) 0%, rgba(244, 193, 92, 0.5) 12%, rgba(244, 193, 92, 0) 24%);
  animation: ringRotate 4.5s linear infinite;
}

@keyframes floatBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-art .cart-badge {
  animation: floatBob 4.2s ease-in-out infinite;
}

.hero-art .chip {
  animation: floatBob 4.6s ease-in-out infinite;
}

.hero-art .chip-1 {
  animation-delay: .3s;
}

.hero-art .chip-2 {
  animation-delay: 1.1s;
  animation-duration: 5.2s;
}

/* Delivery scooter orbiting the badge — nods to the logo's scooter icon */
.hero-scooter {
  position: absolute;
  width: 38px;
  height: 38px;
  left: 50%;
  top: 50%;
  margin: -19px 0 0 -19px;
  offset-path: circle(47% at 50% 50%);
  offset-rotate: auto;
  animation: orbit 16s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.hero-scooter svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
}

@keyframes orbit {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-inner>div:first-child>*,
  .hero-art {
    opacity: 1;
    animation: none !important;
    transform: none !important;
  }

  .hero-art .ring,
  .hero-art .ring::after,
  .hero-art .cart-badge,
  .hero-art .chip,
  .hero-scooter {
    animation: none !important;
  }

  .hero-scooter {
    offset-distance: 0%;
    top: 8%;
    left: 8%;
    margin: 0;
  }
}

/* =========================================================
   PRODUCT CATEGORY TILES (homepage teaser)
   ========================================================= */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-tile {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--marigold);
}

.tile-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.category-tile:hover .tile-image-wrap img {
  transform: scale(1.06);
}

.tile-image-wrap svg {
  width: 34%;
  height: 34%;
  color: #fff;
  position: relative;
  z-index: 2;
}

.tile-icon-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(1, 42, 44, 0.82);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

.tile-live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  animation: pulse-dot 1.8s infinite;
}

.tile-info {
  padding: 16px 18px 18px;
}

.tile-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.tile-info p {
  font-size: 13px;
  color: #6b6b60;
  margin: 0;
}

.tile-bg-1 {
  background: linear-gradient(135deg, var(--marigold) 0%, var(--marigold-dim) 100%);
}

.tile-bg-2 {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dim) 100%);
}

.tile-bg-3 {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dim) 100%);
}

.tile-bg-4 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--marigold) 100%);
}

@media (max-width: 980px) {
  .category-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .category-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .catalog-status .dot {
    animation: none;
  }

  .spinner {
    animation: none;
    border-top-color: var(--line);
  }
}

/* ============ HERO ART - REDESIGNED ============ */
.hero-art {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background blob */
.hero-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(244, 169, 60, .18), rgba(244, 169, 60, .04) 70%);
  filter: blur(20px);
  z-index: 0;
}

/* Dotted pattern */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 169, 60, .25) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
  z-index: 0;
}

/* Main grocery bag */
.grocery-bag {
  position: relative;
  width: 340px;
  max-width: 100%;
  z-index: 2;
  animation: bagFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .35));
}

.grocery-bag svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes bagFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

/* Floating info chips */
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
  z-index: 3;
  min-width: 170px;
  animation: chipFloat 3.5s ease-in-out infinite;
}

.chip-delivery {
  top: 8%;
  right: -10px;
  animation-delay: 0s;
}

.chip-quality {
  top: 45%;
  left: -30px;
  animation-delay: .8s;
}

.chip-doorstep {
  bottom: 8%;
  right: 10px;
  animation-delay: 1.5s;
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.chip-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFF3D9;
  color: #F4A93C;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.chip-icon-box svg {
  width: 20px;
  height: 20px;
}

.chip-icon-box.green {
  background: #E4F5E7;
  color: #3E9450;
}

.chip-icon-box.orange {
  background: #FFE8D1;
  color: #E67E00;
}

.chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.chip-text strong {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #163A3F;
}

.chip-text span {
  font-size: 11.5px;
  color: #6b7c7f;
  margin-top: 2px;
}

/* Tiny floating decoration icons */
.float-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 2;
  animation: iconSpin 6s ease-in-out infinite;
}

.float-icon svg {
  width: 100%;
  height: 100%;
}

.icon-leaf {
  top: 20%;
  left: 20%;
  animation-delay: .5s;
}

.icon-star {
  bottom: 22%;
  left: 15%;
  animation-delay: 1.2s;
}

@keyframes iconSpin {

  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
    opacity: .8;
  }

  50% {
    transform: translateY(-12px) rotate(10deg);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-art {
    min-height: 420px;
    margin-top: 30px;
  }

  .grocery-bag {
    width: 260px;
  }

  .float-chip {
    min-width: 150px;
    padding: 10px 12px;
  }

  .chip-text strong {
    font-size: 13px;
  }

  .chip-text span {
    font-size: 11px;
  }

  .hero-blob {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .grocery-bag {
    width: 220px;
  }

  .chip-delivery {
    right: 0;
  }

  .chip-quality {
    left: -10px;
  }

  .chip-doorstep {
    right: 10px;
  }

  .float-chip {
    min-width: 135px;
  }
}