/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGES — About, Info/FAQ/Policies
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── SHARED PAGE HERO ───────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(24,122,72,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200,149,32,0.2) 0%, transparent 50%);
}
/* No green tint bleed when real media is behind */
.page-hero--media::before { display: none; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,77,46,0.85) 0%, rgba(11,77,46,0.6) 100%);
}
/* When a real photo/video is set — no overlay, let the media breathe */
.page-hero--media .page-hero-overlay {
  background: none;
}
.page-hero--about {
  min-height: 112vh;
  min-height: 112dvh;
}
.page-hero--about,
.page-hero--info,
.page-hero--contact {
  padding: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Adjust Info/Contact height if 100vh is too much for sub-pages, but let's keep it premium at 80vh minimum */
.page-hero--info,
.page-hero--contact {
  min-height: 80vh;
  min-height: 80svh;
}

/* Premium Vignette Overlays for sub-pages */
.page-hero--info .page-hero-overlay,
.page-hero--contact .page-hero-overlay {
  background: radial-gradient(circle at center, rgba(11,77,46,0.65) 0%, rgba(11,77,46,0.85) 60%, rgba(10,13,11,0.95) 100%);
  z-index: 1;
}

/* Typography Sync for all Page Heroes */
.page-hero--info .page-hero-title,
.page-hero--contact .page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #e8f5ee;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  -webkit-text-stroke: 0.6px rgba(255,255,255,0.15);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  z-index: 2;
  position: relative;
}
.page-hero--info .page-hero-title em,
.page-hero--contact .page-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
  -webkit-text-stroke: 0;
}
.page-hero--info .page-hero-sub,
.page-hero--contact .page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

/* Subtle gradient fade for centered legibility */
.page-hero--about.page-hero--media .page-hero-overlay {
  background: radial-gradient(circle at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

/* Redesigned content area — Centered layout */
.about-hero-body {
  position: relative;
  z-index: 2;
  margin: 0 auto 3rem; /* Center margin instead of left */
  max-width: 800px;    /* Slightly wider for center layout */
  padding: 0 1.5rem;
}
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Decreased as requested */
  font-weight: 900;
  color: #e8f5ee;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  -webkit-text-stroke: 0.6px rgba(11,77,46,0.35); /* Subtle homepage stroke */
  paint-order: stroke fill;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
}
.about-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
}
.about-hero-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 1.8rem;
}

/* Scroll hint — inline text + bounce */
.about-hero-scroll {
  margin-top: 10%;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  transition: opacity 0.25s, transform 0.25s;
}
.about-hero-scroll:hover {
  opacity: 1;
  transform: translateX(4px);
}
.about-hero-scroll svg {
  width: 21px; height: 21px;
  animation: heroScrollRotateBounce 2s cubic-bezier(0.175,0.885,0.32,1.275) infinite;
}
@keyframes heroScrollRotateBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* Brand credential strip — pinned to the very bottom */
/* Brand credential strip — Organic Brand Glass */
.about-hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(11, 77, 46, 0.7); /* Deep brand green glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
  padding: 1.5rem 6%;
}

.about-hero-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: center;
}

.about-hero-strip-item strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-hero-strip-item span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  opacity: 0.9;
}
.about-hero-strip-div {
  width: 1px; height: 1.8rem;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
  .about-hero-body { margin-left: 5%; margin-bottom: 6rem; }
}
@media (max-width: 768px) {
  .page-hero--about {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-end; /* Keep it anchored to bottom */
    padding-bottom: 0;
  }
  .about-hero-body {
    margin: 0 8% 4.5rem; /* Better balance on small screens */
    width: 84%;
  }
  .about-hero-title {
    font-size: clamp(2.1rem, 10vw, 2.6rem); /* Scaled title */
    line-height: 1.05;
    margin-bottom: 1rem;
  }
  .about-hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 100%;
    opacity: 0.9;
  }
  .about-hero-strip {
    flex-wrap: wrap;
    gap: 1.5rem 0.5rem;
    padding: 1.8rem 6%;
    justify-content: flex-start;
    background: rgba(0,0,0,0.3); /* Stronger contrast for mobile background */
  }
  .about-hero-strip-div { display: none; }
  .about-hero-strip-item {
    width: 33.33%; /* 3 items side-by-side if they fit, or wrap */
    min-width: 100px;
    text-align: left;
  }
  .about-hero-strip-item strong { font-size: 1.1rem; }
  .about-hero-strip-item span { font-size: 0.62rem; }
}

/* Info/utility pages — more compact hero, less theatrical than marketing pages */
.page-hero--info {
  min-height: 42vh;
  padding: 7.5rem 1.5rem 3.5rem;
}
.page-hero--contact {
  min-height: 46vh;
  padding: 7.5rem 1.5rem 4rem;
}
@media (max-width: 768px) {
  .page-hero--info    { min-height: 36vh; padding: 6.5rem 1.2rem 3rem; }
  .page-hero--contact { min-height: 38vh; padding: 6.5rem 1.2rem 3rem; }
}
.page-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero-badge {
  display: inline-block;
  background: rgba(200,149,32,0.25);
  border: 1px solid rgba(200,149,32,0.5);
  color: var(--amber-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-title em {
  font-style: italic;
  color: var(--green-light);
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SECTION EYEBROW ────────────────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.about-section {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.about-section--alt {
  background: linear-gradient(180deg, #edf6f1 0%, #f5fbf7 100%);
}
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-container--reverse {
  direction: rtl;
}
.about-container--reverse > * {
  direction: ltr;
}
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.about-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}
.about-body p { margin-bottom: 0.9rem; }
.about-body p:last-child { margin-bottom: 0; }

/* ── ABOUT PILLARS (replaces deco cards) ─────────────────────────────────── */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}
.about-pillar {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(11,77,46,0.08);
  border-left: 3px solid var(--amber);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  box-shadow: 0 4px 22px rgba(11,77,46,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.28s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.28s, border-color 0.28s;
}
.about-pillar:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 36px rgba(11,77,46,0.14);
  border-left-color: var(--green-light);
}
.about-pillar--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(11,77,46,0.22);
}
.about-pillar--green:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(11,77,46,0.3);
}
.about-pillar-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(200,149,32,0.13) 0%, rgba(11,77,46,0.08) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.about-pillar--green .about-pillar-icon {
  background: rgba(255,255,255,0.18);
}
.about-pillar-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.2rem;
}
.about-pillar--green .about-pillar-title { color: #fff; }
.about-pillar-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.about-pillar--green .about-pillar-desc { color: rgba(255,255,255,0.78); }

/* ── ABOUT MISSION STRIP ─────────────────────────────────────────────────── */
.about-mission {
  background: linear-gradient(135deg, #041a0f 0%, #0b4d2e 55%, #0f5c36 100%);
  padding: 3.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-mission::before {
  content: "";
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(200,149,32,0.18) 0%, transparent 68%);
  pointer-events: none;
}
.about-mission-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}
.about-mission-quote em {
  color: var(--amber-light);
  font-style: italic;
}

/* ── SAMPLE PRODUCTS STRIP ───────────────────────────────────────────────── */
.about-products-strip {
  background: var(--green);
  padding: 1.4rem 1.5rem;
}
.about-products-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.about-products-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}
.about-products-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.about-product-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem 0.35rem 0.5rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 500;
}
.about-product-chip img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.about-product-emoji { font-size: 1.1rem; }

/* ── VISUAL / GALLERY BLOCK ──────────────────────────────────────────────── */
.about-visual-section { background: var(--cream); }
.about-visual-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.about-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.about-gallery-item:first-child { grid-column: 1 / -1; }
.about-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-gallery-item:first-child img { height: 300px; }
.about-gallery-item:hover img { transform: scale(1.03); }
.about-gallery-item figcaption {
  background: rgba(11,77,46,0.06);
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  text-align: center;
}

/* ── ONLINE PRESENCE ─────────────────────────────────────────────────────── */
.about-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.about-social-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.about-social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.about-social-btn--wa { background: #25d366; color: #fff; }
.about-social-btn--fb { background: #1877f2; color: #fff; }
.about-social-btn--ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

/* ── TRUST SECTION ───────────────────────────────────────────────────────── */
.about-trust-section {
  background: linear-gradient(135deg, #041a0f 0%, #0b4d2e 100%);
  padding: 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.about-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(200,149,32,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(24,122,72,0.28) 0%, transparent 50%);
  pointer-events: none;
}
.about-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.about-trust-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 1.8rem 1.3rem;
  text-align: center;
  transition: background 0.25s, transform 0.28s cubic-bezier(0.165,0.84,0.44,1), border-color 0.25s;
  backdrop-filter: blur(6px);
}
.about-trust-badge:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: rgba(200,149,32,0.45);
}
.about-trust-badge-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(200,149,32,0.35));
}
.about-trust-badge-label {
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.about-trust-badge-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}
@media (max-width: 768px) {
  .about-trust-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── TEAM / PHOTOS SECTION (premium) ────────────────────────────────────── */
.about-team-section {
  background: var(--cream);
  padding: 5rem 1.5rem;
}
.about-team-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.about-team-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-team-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  border-left: 3px solid var(--amber);
  padding-left: 1.4rem;
  margin: 1.2rem 0 2rem;
  font-style: italic;
}
.about-team-body p { margin-bottom: 0.8rem; }
.about-team-body p:last-child { margin-bottom: 0; }
.about-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}
.about-team-cta:hover { opacity: 0.88; transform: translateY(-2px); }
.about-team-cta svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.about-team-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
/* Gallery items reuse .about-gallery-item */
.about-team-gallery .about-gallery-item:first-child { grid-column: 1 / -1; }

/* Placeholder when no images uploaded yet */
.about-gallery-placeholder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.about-gallery-ph-main {
  background: linear-gradient(135deg, #e8f2ec 0%, #d4eadb 100%);
  border: 2px dashed rgba(11,77,46,0.2);
  border-radius: 16px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--muted);
  text-align: center;
}
.about-gallery-ph-main span { font-size: 2.5rem; }
.about-gallery-ph-main p { font-size: 0.85rem; line-height: 1.5; }
.about-gallery-ph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-gallery-ph-cell {
  background: linear-gradient(135deg, #e8f2ec 0%, #d4eadb 100%);
  border: 2px dashed rgba(11,77,46,0.2);
  border-radius: 12px;
  height: 130px;
}
@media (max-width: 768px) {
  .about-team-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-team-gallery { grid-template-columns: 1fr; }
  .about-team-gallery .about-gallery-item:first-child { grid-column: auto; }
  .about-gallery-ph-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ABOUT TESTIMONIALS ──────────────────────────────────────────────────── */
.about-testimonials-section {
  background: linear-gradient(180deg, #edf6f1 0%, #f5fbf7 100%);
  padding: 5.5rem 1.5rem;
}
.about-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about-testimonials-inner .section-label { margin-bottom: 0.5rem; }
.about-testimonials-inner .section-title { margin-bottom: 2.5rem; }

/* ── ABOUT CTA ───────────────────────────────────────────────────────────── */
.about-cta-section {
  background: linear-gradient(135deg, #041a0f 0%, #0b4d2e 55%, #0f5c36 100%);
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,149,32,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.about-cta-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.about-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.8rem;
}
.about-cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.about-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.about-cta-btn:hover { background: var(--amber-light); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   INFO PAGE — Delivery, FAQ, Policies
   ═══════════════════════════════════════════════════════════════════════════ */

.info-tab-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(11,77,46,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.info-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: rgba(11,77,46,0.06);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(11,77,46,0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.info-tab:hover {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(11,77,46,0.2);
}
.info-tab.active {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(11,77,46,0.25);
}

.info-section { padding: 5.5rem 1.5rem; background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.info-section--alt { background: linear-gradient(180deg, #edf6f1 0%, #f5fbf7 100%); }
.info-container { max-width: 1000px; margin: 0 auto; }
.info-container--narrow { max-width: 620px; }
.info-section-header { text-align: center; margin-bottom: 3rem; }
.info-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.info-section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}

/* ── DELIVERY CARDS ──────────────────────────────────────────────────────── */
.delivery-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.delivery-card {
  background: #fff;
  border-radius: 22px;
  padding: 2.1rem 1.9rem;
  box-shadow: 0 6px 30px rgba(11,77,46,0.08), 0 1px 5px rgba(0,0,0,0.04);
  border: 1px solid rgba(11,77,46,0.07);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(0.165,0.84,0.44,1), transform 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.delivery-card:not(.delivery-card--feature)::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--green-light) 60%, var(--amber) 100%);
}
.delivery-card:not(.delivery-card--feature):hover {
  box-shadow: 0 14px 44px rgba(11,77,46,0.14);
  transform: translateY(-4px);
}
/* Feature cards — Time & Charge */
.delivery-card--feature {
  background: linear-gradient(135deg, #041a0f 0%, #0b4d2e 55%, var(--green-light) 100%);
  border-color: transparent;
  box-shadow: 0 8px 36px rgba(11,77,46,0.3);
}
.delivery-card--feature .delivery-card-icon { color: rgba(255,255,255,0.85); }
.delivery-card--feature h3 { color: rgba(255,255,255,0.75) !important; }
.delivery-card--feature p,
.delivery-card--feature .delivery-free,
.delivery-card--feature .delivery-charge-amount { color: #fff !important; }
/* Areas & Notes — full width */
.delivery-card--areas,
.delivery-card--wide { grid-column: 1 / -1; }
.delivery-card-icon { font-size: 2rem; margin-bottom: 0.9rem; display: block; }
.delivery-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}
.delivery-card-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.delivery-card--feature .delivery-card-value { color: #fff; }
.delivery-card p { font-size: 0.97rem; color: var(--text); line-height: 1.7; }
.delivery-areas {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem 1.5rem;
}
.delivery-areas li {
  font-size: 0.93rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}
.delivery-areas li::before {
  content: "✓";
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
  background: var(--green-light);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.delivery-free { color: var(--green); font-weight: 700; font-size: 1rem !important; }
.delivery-charge-amount { color: var(--green); font-weight: 700; font-size: 1rem !important; }
.delivery-notes { font-size: 0.95rem; line-height: 1.75; color: var(--muted); }
.delivery-notes p { margin-bottom: 0.6rem; }
.delivery-map { margin-top: 2.5rem; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.delivery-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ── FAQ ACCORDION ───────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(11,77,46,0.08);
  border-left: 3px solid transparent;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,77,46,0.06), 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.28s cubic-bezier(0.165,0.84,0.44,1), border-color 0.28s, transform 0.28s;
}
.faq-item:has(.faq-open) {
  border-left-color: var(--amber);
  border-color: rgba(11,77,46,0.14);
  box-shadow: 0 10px 36px rgba(11,77,46,0.13);
  transform: translateY(-2px);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.faq-question:hover { background: rgba(11,77,46,0.03); color: var(--green); }
.faq-question.faq-open { background: rgba(11,77,46,0.04); color: var(--green); }
.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11,77,46,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--green);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
}
.faq-question.faq-open .faq-arrow {
  transform: rotate(180deg);
  background: var(--green);
  color: #fff;
}
.faq-answer {
  border-top: 1px solid rgba(11,77,46,0.08);
  border-left: 3px solid var(--green);
}
.faq-answer-inner {
  padding: 1.1rem 1.6rem 1.3rem;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text);
}
.faq-answer-inner p { margin-bottom: 0.5rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ── POLICY SECTIONS ─────────────────────────────────────────────────────── */
.policy-list { display: flex; flex-direction: column; gap: 0.75rem; }
.policy-item {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(11,77,46,0.08);
  border-left: 3px solid var(--amber);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,77,46,0.07), 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.28s, border-color 0.28s;
}
.policy-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.policy-toggle:hover { background: rgba(11,77,46,0.03); color: var(--green); }
.policy-toggle[aria-expanded="true"] { background: rgba(11,77,46,0.04); color: var(--green); }
.policy-arrow {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(11,77,46,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--green);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
}
.policy-toggle[aria-expanded="true"] .policy-arrow {
  transform: rotate(180deg);
  background: var(--green);
  color: #fff;
}
.policy-body {
  /* height is driven by JS expand/collapse helpers — no max-height hack */
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 1.6rem;
  border-left: 3px solid transparent;
}
.policy-body[hidden] { display: none; }
.policy-body--open {
  padding: 0.3rem 1.6rem 1.3rem;
  border-left-color: var(--amber);
}
.policy-body p { margin-bottom: 0.6rem; }
.policy-body p:last-child { margin-bottom: 0; }

/* ── PASSWORD RESET FORM ─────────────────────────────────────────────────── */
.reset-form {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 4px 24px rgba(11,77,46,0.09);
  border: 1px solid rgba(11,77,46,0.08);
}
.reset-field { margin-bottom: 1.2rem; }
.reset-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.reset-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(11,77,46,0.18);
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; /* >=16px prevents iOS Safari auto-zoom bug */
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.reset-field input:focus { border-color: var(--green); }
.reset-error {
  color: #b71c1c;
  font-size: 0.87rem;
  margin: 0.5rem 0 1rem;
  padding: 0.6rem 1rem;
  background: #fde8e8;
  border-radius: 7px;
}
.reset-success {
  color: #1b5e20;
  font-size: 0.9rem;
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 1rem;
  background: #e8f5e9;
  border-radius: 7px;
  font-weight: 500;
}
.reset-submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.reset-submit-btn:hover:not(:disabled) { background: var(--green-mid); transform: translateY(-1px); }
.reset-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── INFO PAGE CTA ───────────────────────────────────────────────────────── */
.info-cta-section {
  background: linear-gradient(135deg, #041a0f 0%, #0b4d2e 55%, #0f5c36 100%);
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.info-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,149,32,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.info-cta-inner { max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.info-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.25;
}
.info-cta-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.info-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.info-cta-btn:hover { background: var(--amber-light); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   INFOP — Premium Delivery / FAQ / Policies page  (new class namespace)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero quick-nav pills */
.infop-hero-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}
.infop-hero-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.infop-hero-tab:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* Section layout */
.infop-section {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #f4fbf7 100%);
}
.infop-section--alt {
  background: linear-gradient(180deg, #edf6f1 0%, #f5fbf7 100%);
}
.infop-container {
  max-width: 900px;
  margin: 0 auto;
}
.infop-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.infop-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.55rem;
}
.infop-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
.infop-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.infop-delivery-timing {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 0.6rem;
  letter-spacing: 0.01em;
}

/* ── Areas We Cover (simple inline style) ────────────────────────────────── */
.infop-areas-simple {
  margin-top: 2rem;
}
.infop-areas-simple-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
}

/* ── Stat strip ──────────────────────────────────────────────────────────── */
.infop-stat-strip {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #041a0f 0%, #0b4d2e 60%, #166d3b 100%);
  border-radius: 22px;
  padding: 2.2rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 12px 40px rgba(11,77,46,0.28);
  gap: 0;
  overflow: hidden;
  position: relative;
}
.infop-stat-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(200,149,32,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.infop-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
}
.infop-stat:first-child { padding-left: 0; }
.infop-stat:last-child  { padding-right: 0; }
.infop-stat-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.infop-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.infop-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-top: 0.2rem;
}
.infop-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.14);
  align-self: stretch;
  margin: 0;
  flex-shrink: 0;
}

/* Single-stat strip centres and doesn't need dividers */
.infop-stat-strip--single {
  justify-content: center;
}
.infop-stat-strip--single .infop-stat {
  flex: none;
  padding: 0;
}

/* ── Delivery schedule card ──────────────────────────────────────────────── */
.infop-schedule-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(11,77,46,0.07), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(11,77,46,0.07);
}
.infop-schedule-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
}
.infop-schedule-row:first-child { padding-left: 0; }
.infop-schedule-row:last-child  { padding-right: 0; }
.infop-schedule-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.infop-schedule-dot--green { background: #2e7d32; box-shadow: 0 0 0 4px rgba(46,125,50,0.15); }
.infop-schedule-dot--amber { background: var(--amber); box-shadow: 0 0 0 4px rgba(200,149,32,0.18); }
.infop-schedule-title {
  display: block;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.infop-schedule-note {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
}
.infop-schedule-divider {
  width: 1px;
  background: rgba(11,77,46,0.08);
  align-self: stretch;
  flex-shrink: 0;
  margin: 0.25rem 0;
}
@media (max-width: 560px) {
  .infop-schedule-card {
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.4rem 1.5rem;
  }
  .infop-schedule-row { padding: 0; }
  .infop-schedule-divider { width: 100%; height: 1px; margin: 0; }
}

/* ── Areas card ──────────────────────────────────────────────────────────── */
.infop-areas-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem 2.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 30px rgba(11,77,46,0.08), 0 1px 5px rgba(0,0,0,0.04);
  border: 1px solid rgba(11,77,46,0.07);
  position: relative;
  overflow: hidden;
}
.infop-areas-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--amber) 50%, var(--green-light) 100%);
}
.infop-areas-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.infop-areas-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200,149,32,0.12) 0%, rgba(11,77,46,0.08) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infop-areas-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.2rem;
}
.infop-areas-header p {
  font-size: 0.88rem;
  color: var(--muted);
}
.infop-areas-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.55rem 1.5rem;
}
.infop-areas-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--text);
  padding: 0.3rem 0;
}
.infop-areas-list li::before {
  content: "✓";
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
  background: var(--green-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Notes card ──────────────────────────────────────────────────────────── */
.infop-notes-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: linear-gradient(135deg, #fffbef 0%, #fff9e5 100%);
  border: 1px solid rgba(200,149,32,0.22);
  border-left: 4px solid var(--amber);
  border-radius: 18px;
  padding: 1.7rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 18px rgba(200,149,32,0.08);
}
.infop-notes-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.infop-notes-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #7a5200;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.infop-notes-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5d4200;
}
.infop-notes-body p { margin-bottom: 0.5rem; }
.infop-notes-body p:last-child { margin-bottom: 0; }

/* ── Map ─────────────────────────────────────────────────────────────────── */
.infop-map {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  margin-top: 1.5rem;
}
.infop-map iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ── FAQ accordion ───────────────────────────────────────────────────────── */
.infop-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.infop-faq-item {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(11,77,46,0.08);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,77,46,0.06), 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.infop-faq-item--open {
  border-color: rgba(11,77,46,0.18);
  box-shadow: 0 10px 36px rgba(11,77,46,0.13);
  transform: translateY(-2px);
}
.infop-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.infop-faq-btn:hover { background: rgba(11,77,46,0.03); color: var(--green); }
.infop-faq-item--open .infop-faq-btn { background: rgba(11,77,46,0.04); color: var(--green); }
.infop-faq-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(11,77,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  transition: background 0.25s, color 0.25s;
}
.infop-faq-item--open .infop-faq-num {
  background: var(--green);
  color: #fff;
}
.infop-faq-q {
  flex: 1;
}
.infop-faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11,77,46,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), background 0.22s, color 0.22s;
  color: var(--green);
}
.infop-faq-chevron svg { width: 16px; height: 16px; }
.infop-faq-item--open .infop-faq-chevron {
  transform: rotate(180deg);
  background: var(--green);
  color: #fff;
}
/* grid-template-rows: 0fr→1fr avoids scrollHeight reflow — no layout cost on Android */
.infop-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
  overflow: hidden;
}
.infop-faq-item--open .infop-faq-answer {
  grid-template-rows: 1fr;
}
.infop-faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 1.2rem 1.6rem 1.4rem 1.5rem;
  border-top: 1px solid rgba(11,77,46,0.08);
  border-left: 4px solid var(--green);
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text);
}
.infop-faq-answer-inner p { margin-bottom: 0.5rem; }
.infop-faq-answer-inner p:last-child { margin-bottom: 0; }

/* ── Policy accordion ────────────────────────────────────────────────────── */
.infop-policy-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.infop-policy-item {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(11,77,46,0.08);
  border-left: 4px solid var(--amber);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,77,46,0.06), 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.infop-policy-item--open {
  border-color: rgba(200,149,32,0.3);
  box-shadow: 0 10px 36px rgba(11,77,46,0.1);
  transform: translateY(-2px);
}
.infop-policy-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.infop-policy-btn:hover { background: rgba(200,149,32,0.05); color: #7a5200; }
.infop-policy-item--open .infop-policy-btn { background: rgba(200,149,32,0.06); color: #7a5200; }
.infop-policy-badge {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200,149,32,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.infop-policy-btn > span:nth-child(2) { flex: 1; }
.infop-policy-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,149,32,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), background 0.22s, color 0.22s;
}
.infop-policy-chevron svg { width: 15px; height: 15px; }
.infop-policy-item--open .infop-policy-chevron {
  transform: rotate(180deg);
  background: var(--amber);
  color: #fff;
}
.infop-policy-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
  overflow: hidden;
}
.infop-policy-item--open .infop-policy-body {
  grid-template-rows: 1fr;
}
.infop-policy-body-inner {
  min-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  padding: 1.2rem 1.6rem 1.5rem;
  border-top: 1px solid rgba(200,149,32,0.12);
}
.infop-policy-body-inner p { margin-bottom: 0.6rem; }
.infop-policy-body-inner p:last-child { margin-bottom: 0; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .infop-stat-strip {
    flex-direction: column;
    padding: 1.8rem 1.6rem;
    gap: 1.4rem;
  }
  .infop-stat { padding: 0; }
  .infop-stat-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .infop-areas-list {
    grid-template-columns: 1fr 1fr;
  }
  .infop-notes-card { flex-direction: column; }
  .infop-hero-tabs { gap: 0.5rem; }
  .infop-hero-tab { font-size: 0.82rem; padding: 0.45rem 1rem; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-hero { min-height: 50vh; padding: 7rem 1.2rem 3rem; }
  .shop-hero { min-height: 44vh; padding: 7rem 1.2rem 3rem; }
  .about-container, .about-container--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }
  .about-pillars { flex-direction: row; flex-wrap: wrap; }
  .about-pillar { flex: 1 1 calc(50% - 0.425rem); min-width: 200px; }
  .about-pillar:hover { transform: translateY(-3px); }
  .about-pillar--green:hover { transform: translateY(-3px); }
  .about-visual-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-item:first-child { grid-column: 1 / -1; }
  .about-gallery-item img { height: 160px; }
  .about-gallery-item:first-child img { height: 220px; }
  .info-tab-nav { padding: 1.4rem 1rem; gap: 0.5rem; }
  .delivery-cards { grid-template-columns: 1fr; }
  .delivery-card--feature { display: grid; grid-template-columns: auto 1fr; gap: 0 1rem; align-items: center; }
  .delivery-card--feature .delivery-card-icon { grid-row: span 2; margin-bottom: 0; font-size: 2.2rem; }
  .delivery-card--areas,
  .delivery-card--wide { grid-column: auto; }
}
@media (max-width: 480px) {
  .about-pillar { flex: 1 1 100%; }
  .about-products-inner { flex-direction: column; align-items: flex-start; }
  .about-social-links { flex-direction: column; }
  .about-social-btn { justify-content: center; }
  .info-tab-nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAV DROPDOWN (My Account)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Desktop dropdown */
.nav-dropdown { position: relative; }

#navbar .nav-dropdown-menu {
  display: none;
  position: absolute;
  /* top: 100% with padding-top bridges the visual gap — no empty space
     for the cursor to cross, so hover never drops out mid-travel */
  top: 100%;
  right: 0;
  list-style: none;
  padding: 10px 0.5rem 0.5rem;
  min-width: 148px;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.13);
  border: 1px solid rgba(11,77,46,0.08);
  z-index: 1001;
  animation: dropdownGrow 0.25s cubic-bezier(0.16,1,0.3,1) forwards;
}
#navbar .nav-dropdown.active .nav-dropdown-menu { display: block; }
@media (hover: hover) {
  #navbar .nav-dropdown:hover .nav-dropdown-menu { display: block; }
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block !important;
  color: var(--green) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  padding: 0.6rem 1rem !important;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(11,77,46,0.07); }
.nav-dropdown-menu a::after { display: none !important; }

.nav-dropdown-caret {
  font-size: 0.65rem;
  opacity: 0.6;
  display: inline-block;
  transition: transform 0.2s;
  margin-left: 2px;
}
.nav-dropdown.active .nav-dropdown-caret { transform: rotate(180deg); }

/* Mobile — hidden by default; tap username to toggle open */
#navbar ul.mobile-open .nav-dropdown-menu { display: none; }
#navbar ul.mobile-open .nav-dropdown.active .nav-dropdown-menu {
  display: block;
  position: static;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
  animation: none;
  margin: 0;
}
#navbar ul.mobile-open .nav-dropdown.active .nav-dropdown-menu li { width: 100%; }
#navbar ul.mobile-open .nav-dropdown.active .nav-dropdown-menu a {
  color: var(--green) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 0.7rem 1.2rem 0.7rem 2.2rem !important;
  border-radius: 0 !important;
  white-space: normal;
  opacity: 0.85;
}
#navbar ul.mobile-open .nav-dropdown-caret { display: inline-block; }

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH PAGES — Login, Register
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Full-screen scene wrapper ──────────────────────────────────────────── */
.auth-scene {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* Prevents address bar jump on iOS */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 1.2rem 3rem;
  overflow: hidden;
}

/* Background layer — photo if set, else gradient fallback */
.auth-scene-bg {
  position: absolute;
  inset: 0;
  background-image: var(--auth-bg, none);
  background-size: cover;
  background-position: center;
  background-color: #0a2e18;
  /* Subtle zoom-in on load */
  animation: authBgZoom 18s ease-in-out infinite alternate;
}
@keyframes authBgZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .auth-scene-bg { animation: none; }
}

/* Dark + green gradient overlay */
.auth-scene-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(5,20,10,0.72) 0%, rgba(11,77,46,0.55) 60%, rgba(11,51,28,0.65) 100%);
}

/* ── Frosted glass card ─────────────────────────────────────────────────── */
.auth-glass {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 28px;
  padding: 2.8rem 2.6rem 2.4rem;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 20px 60px rgba(0,0,0,0.26),
    0 0 0 1px rgba(255,255,255,0.55) inset,
    0 -1px 0 rgba(11,77,46,0.06) inset;
  animation: authCardIn 0.55s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes authCardIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Brand / Logo inside card ───────────────────────────────────────────── */
.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1.8rem;
  justify-content: center;
}
.auth-logo { height: 44px; width: auto; }
.auth-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.02em;
}

/* ── Copy ───────────────────────────────────────────────────────────────── */
.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-bottom: 0.35rem;
}
.auth-sub {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* ── Feedback states ────────────────────────────────────────────────────── */
.auth-error {
  background: rgba(183,28,28,0.09);
  color: #b71c1c;
  border: 1px solid rgba(183,28,28,0.18);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.auth-success {
  background: rgba(27,94,32,0.09);
  color: #1b5e20;
  border: 1px solid rgba(27,94,32,0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Form fields ────────────────────────────────────────────────────────── */
.auth-field { margin-bottom: 1.1rem; }
.auth-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.38rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.auth-field input,
.auth-field textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid rgba(11,77,46,0.16);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; /* >=16px prevents iOS Safari auto-zoom bug */
  color: var(--text);
  background: rgba(255,255,255,0.75);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: vertical;
}
.auth-field input:focus,
.auth-field textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,77,46,0.1);
}
.auth-disabled { opacity: 0.6; cursor: not-allowed !important; background: #eee !important; }
.auth-pw-wrap { position: relative; }
.auth-pw-wrap input { padding-right: 2.8rem; }
.auth-pw-toggle {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.auth-pw-toggle:hover { opacity: 1; }
.auth-hint { font-size: 0.76rem; color: var(--muted); margin-top: 0.3rem; display: block; }
.auth-req { color: #b71c1c; }
.auth-opt { color: var(--muted); font-weight: 400; font-size: 0.8rem; }
.auth-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Submit button ──────────────────────────────────────────────────────── */
.auth-submit-btn {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--green) 0%, #11683d 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 18px rgba(11,77,46,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.auth-submit-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: opacity 0.3s;
  opacity: 0;
}
.auth-submit-btn:hover::before {
  animation: authShine 0.8s forwards;
  opacity: 1;
}
@keyframes authShine {
  0% { left: -100%; }
  100% { left: 200%; }
}
.auth-submit-btn:hover {
  background: linear-gradient(135deg, #11683d 0%, var(--green-light) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11,77,46,0.38), inset 0 1px 0 rgba(255,255,255,0.25);
}
.auth-submit-btn:active { transform: translateY(-1px); box-shadow: 0 5px 15px rgba(11,77,46,0.3); }

/* ── Footer links ───────────────────────────────────────────────────────── */
.auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.auth-link {
  color: var(--amber);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.auth-link:hover { color: #a3720f; }
.auth-link-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.auth-link-btn:hover { color: var(--green); }

/* ── Legacy .auth-page / .auth-card kept for register page ─────────────── */
.auth-page {
  min-height: 100vh;
  min-height: 100svh; /* Prevents address bar jump on iOS */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.2rem 3rem;
  background: linear-gradient(160deg, #0b4d2e 0%, #187a48 60%, #c89520 200%);
}
.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.8rem 2.4rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
}
.auth-card--wide { max-width: 600px; }

/* nav account link */
.nav-account {
  border: 1px solid rgba(255,255,255,0.4) !important;
  border-radius: 999px !important;
  padding: 0.25rem 0.9rem !important;
  font-size: 0.88rem !important;
}
nav.scrolled .nav-account { border-color: rgba(11,77,46,0.3) !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════════════════════════════════════ */

/* padding-top pushes ALL dashboard content below the fixed nav once.
   --nav-height is set in JS (main.js) by measuring the real nav.offsetHeight
   so this always matches regardless of logo size or breakpoint. */
.dash-page {
  background: #eef5f0;
  min-height: 100vh;
  min-height: 100svh; /* Prevents address bar jump on iOS */
  padding-top: var(--nav-height, 7rem);
}

/* ── Top bar ─────────────────────────────────────────────────────────────── */
.dash-topbar {
  background: linear-gradient(135deg, #062a18 0%, var(--green) 60%, var(--green-mid) 100%);
  padding: 2.8rem 2rem 2.4rem;
  position: relative;
  overflow: hidden;
}
.dash-topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,149,32,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.dash-topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.dash-user-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dash-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.dash-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.dash-meta { color: rgba(255,255,255,0.72); font-size: 0.88rem; }
.dash-logout-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.dash-logout-btn:hover { background: rgba(255,255,255,0.25); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.dash-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.dash-sidebar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(11,77,46,0.1);
  box-shadow: 0 8px 32px rgba(11,77,46,0.06), 0 2px 8px rgba(11,77,46,0.03);
  overflow: hidden;
  position: sticky;
  top: var(--nav-height, 7rem); /* tracks real nav height set by JS */
}
.dash-sidenav { padding: 0.8rem; }
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  cursor: pointer;
  position: relative;
  margin-bottom: 0.25rem;
  border: 1px solid transparent;
}
.dash-nav-item:hover {
  background: rgba(11,77,46,0.03);
  color: var(--green);
  transform: translateX(4px);
}
.dash-nav-item.active {
  background: linear-gradient(135deg, rgba(11,77,46,0.08) 0%, rgba(11,77,46,0.02) 100%);
  border-color: rgba(11,77,46,0.05);
  color: var(--green);
  font-weight: 700;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.7);
}
.dash-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background: var(--green);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 8px rgba(11,77,46,0.3);
}
.dash-nav-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1; transition: transform 0.25s; filter: grayscale(10%) drop-shadow(0 2px 4px rgba(0,0,0,0.05)); }
.dash-nav-item.active .dash-nav-icon { transform: scale(1.15); filter: drop-shadow(0 2px 6px rgba(11,77,46,0.15)); }
.dash-nav-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,77,46,0.08) 20%, rgba(11,77,46,0.08) 80%, transparent);
  margin: 0.7rem 0.8rem;
}
.dash-sidebar-footer {
  padding: 0.6rem 0.8rem 0.8rem;
  border-top: 1px solid rgba(11,77,46,0.06);
}
.dash-shop-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  box-shadow: 0 4px 12px rgba(11,77,46,0.15);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dash-shop-link:hover { 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11,77,46,0.25);
}

/* ── Main content area ───────────────────────────────────────────────────── */
.dash-main { min-width: 0; }
.dash-panel {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(11,77,46,0.08);
  box-shadow: 0 2px 16px rgba(11,77,46,0.06), 0 1px 4px rgba(11,77,46,0.03);
  padding: 2rem 2.2rem;
}
.dash-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(11,77,46,0.08);
}

/* ── Account detail display row ─────────────────────────────────────────── */
.dash-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(11,77,46,0.04);
  border: 1px solid rgba(11,77,46,0.1);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.4rem;
}
.dash-info-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 110px;
}
.dash-info-value {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}
.dash-info-note {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
}

/* Flash */
.dash-flash {
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 0.93rem;
  font-weight: 500;
}
.dash-flash--ok { background: #e8f5e9; color: #1b5e20; }
.dash-flash--err { background: #fde8e8; color: #b71c1c; }

/* Sections */
.dash-section {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(11,77,46,0.06);
  border: 1px solid rgba(11,77,46,0.07);
}
.dash-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(11,77,46,0.08);
}

/* Orders */
.order-list { display: flex; flex-direction: column; gap: 0.85rem; }
.order-card {
  border: 1px solid rgba(11,77,46,0.09);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  background: #fff;
  box-shadow: 0 1px 6px rgba(11,77,46,0.05);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.order-card:hover {
  border-color: rgba(11,77,46,0.2);
  box-shadow: 0 6px 20px rgba(11,77,46,0.1);
  transform: translateY(-1px);
}
.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.order-code { font-weight: 700; font-size: 0.95rem; color: var(--green); font-family: monospace; }
.order-status {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.order-status--pending   { background: #fff3cd; color: #856404; }
.order-status--confirmed { background: #d1f0d8; color: #155724; }
.order-status--delivered { background: #cce5ff; color: #004085; }
.order-status--cancelled { background: #f8d7da; color: #721c24; }
.order-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.order-total { font-weight: 700; color: var(--green); }
.order-card-summary { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* Empty state */
.dash-empty {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}
.dash-empty span { font-size: 2.5rem; display: block; margin-bottom: 0.6rem; }
.dash-empty p { margin-bottom: 1rem; font-size: 0.95rem; }
.dash-empty-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.dash-empty-cta:hover { background: var(--green-mid); }
.dash-note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* Addresses */
.address-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 1.2rem; }
.address-card {
  border: 1px solid rgba(11,77,46,0.12);
  border-radius: 12px;
  padding: 1rem;
  background: var(--cream);
  position: relative;
}
.address-card-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.address-default-badge {
  background: var(--amber);
  color: #fff;
  font-size: 0.68rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
}
.address-card-text { font-size: 0.87rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.8rem; }
.address-delete-form { display: inline; }
.address-delete-btn {
  background: none;
  border: 1px solid rgba(183,28,28,0.3);
  color: #b71c1c;
  font-size: 0.78rem;
  padding: 0.2rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.address-delete-btn:hover { background: #fde8e8; }

/* Details/accordion */
.dash-details {
  border: 1px solid rgba(11,77,46,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.dash-details-summary {
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
  cursor: pointer;
  list-style: none;
  background: rgba(11,77,46,0.03);
  transition: background 0.2s;
}
.dash-details-summary:hover { background: rgba(11,77,46,0.07); }
.dash-details-summary::-webkit-details-marker { display: none; }
.dash-details-summary::before { content: "+ "; }
.dash-details[open] .dash-details-summary::before { content: "− "; }
.dash-inline-form { padding: 1.2rem; }
.dash-form { padding: 0; }
/* Inputs inside white panels — give them a subtle grey background for contrast */
.dash-panel .auth-field input,
.dash-panel .auth-field textarea {
  background: #f7f9f7;
}
.dash-inline-fields { display: flex; gap: 1rem; flex-wrap: wrap; }
.dash-inline-fields .auth-field { flex: 1; min-width: 180px; }
.dash-save-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.dash-save-btn:hover { background: var(--green-mid); }
.dash-save-btn--outline {
  background: none;
  border: 2px solid var(--green);
  color: var(--green);
}
.dash-save-btn--outline:hover { background: var(--green); color: #fff; }
.dash-forgot-box { padding: 1.2rem; }
.dash-forgot-box p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }

/* Track order link */
.order-track-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.order-track-link:hover { text-decoration: underline; }

/* ── Wishlist grid (scoped — avoids main-page product card bleed) ─────────── */
.dash-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1.1rem;
}
.dash-wcard {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(11,77,46,0.1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.dash-wcard:hover {
  box-shadow: 0 8px 28px rgba(11,77,46,0.12);
  transform: translateY(-4px);
}
.dash-wcard-remove {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  transition: background 0.18s;
}
.dash-wcard-remove:hover { background: #fde8e8; }
.dash-wcard-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
}
.dash-wcard-img {
  height: 130px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8f3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dash-wcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dash-wcard-emoji { font-size: 2.8rem; }
.dash-wcard-body { padding: 0.65rem 0.8rem 0.5rem; }
.dash-wcard-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-wcard-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}
.dash-wcard-unit { font-weight: 400; color: var(--muted); }
.dash-wcard-atc {
  margin: 0.5rem 0.8rem 0.8rem;
  width: calc(100% - 1.6rem);
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.52rem 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}
.dash-wcard-atc:hover:not(:disabled) { background: var(--green-mid); }
.dash-wcard-atc:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── RESPONSIVE AUTH + DASHBOARD ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .dash-layout {
    grid-template-columns: 1fr;
    padding: 0 0 3rem;
    gap: 1rem;
  }
  .dash-sidebar {
    position: sticky;
    top: var(--nav-height, 5rem); /* JS-measured real nav height */
    z-index: 50;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    box-shadow: 0 3px 12px rgba(11,77,46,0.1);
  }
  .dash-sidenav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dash-sidenav::-webkit-scrollbar { display: none; }
  .dash-nav-item {
    flex: 0 0 auto;
    padding: 0.5rem 0.9rem;
    font-size: 0.83rem;
    gap: 0.45rem;
    border: 1px solid rgba(11,77,46,0.1);
    width: auto;
    white-space: nowrap;
    margin-bottom: 0;
  }
  .dash-nav-item:hover { transform: none; background: rgba(11,77,46,0.03); }
  .dash-nav-item.active {
    background: var(--green);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(11,77,46,0.15);
  }
  .dash-nav-item.active::before { display: none; }
  .dash-nav-icon { font-size: 0.88rem; }
  .dash-nav-divider { display: none; }
  .dash-sidebar-footer { display: none; }
  .dash-panel { padding: 1.4rem 1.2rem; margin: 0 1rem; }
  .dash-main { padding-bottom: 2rem; }
}
@media (max-width: 600px) {
  .auth-card { padding: 2rem 1.4rem; }
  .auth-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .dash-page { padding-top: var(--nav-height, 5rem); } /* JS-measured real nav height */
  .dash-topbar { padding: 2rem 1rem 1.8rem; }
  .dash-avatar { width: 48px; height: 48px; font-size: 1.1rem; }
  .dash-name { font-size: 1.2rem; }
  .address-list { grid-template-columns: 1fr; }
  .dash-inline-fields { flex-direction: column; }
  .dash-info-row { flex-direction: column; gap: 0.3rem; }
  .dash-info-label { min-width: 0; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGES — order tracking, product listings, category detail
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (shared: order tracking, listing headers) ────────────────── */

/* ── SHOP HERO ────────────────────────────────────────────────────────────── */
.shop-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #062a18 0%, var(--green) 60%, var(--green-mid) 100%);
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}
.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(24,122,72,0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200,149,32,0.18) 0%, transparent 50%);
}
.shop-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.shop-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.shop-hero-title em {
  font-style: italic;
  color: var(--amber-light);
}
.shop-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.shop-page {
  padding: 3rem 5vw 5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px)  { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .shop-grid { grid-template-columns: 1fr; } }

/* Category card — same base as .product-card */
.category-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(11,77,46,0.09);
  box-shadow: 0 2px 14px rgba(11,77,46,0.07);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  contain: layout;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(13,92,54,0.16);
  border-color: rgba(11,77,46,0.14);
}

.category-card-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card-img { transform: scale(1.07); }

.category-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #062a18 0%, var(--green) 55%, var(--green-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.category-card-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 65%);
}
.category-card-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  letter-spacing: 10px;
  position: relative;
}

.category-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.category-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.category-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.badge-type {
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.badge-organic {
  background: #2e7d32;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.badge-bestfor {
  background: rgba(11,77,46,0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.category-nutrition {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.35rem;
  font-style: italic;
}

.btn-view-category {
  display: block;
  margin-top: 1.1rem;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.category-card:hover .btn-view-category { background: var(--green-light); }

.shop-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}

/* ── CATEGORY DETAIL ────────────────────────────────────────────────────── */

/* Hero */
.cat-hero {
  position: relative;
  height: clamp(280px, 40vh, 420px);
  display: flex;
  align-items: flex-end;
  background: var(--green);
  overflow: hidden;
}

.cat-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 35%, rgba(0,0,0,0.15) 70%, transparent);
}

.cat-hero-content {
  position: relative;
  padding: 2rem 5vw 2.5rem;
  color: #fff;
}

.cat-hero-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cat-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.cat-hero-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Story */
.cat-story {
  padding: 3.5rem 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.cat-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .cat-story-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.cat-story-full { grid-column: 1 / -1; }

.cat-story-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  font-style: italic;
  padding-top: 2rem;
}

.cat-detail-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cat-detail-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.cat-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cat-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.cat-detail-value {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Products section */
.cat-products-section {
  padding: 0 5vw 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.cat-products-section .products-header {
  padding-top: 0;
  margin-bottom: 1.5rem;
}

/* Back link */
.cat-back-wrap {
  padding: 0 5vw 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.cat-back-wrap .back-to-shop-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cat-back-wrap .back-to-shop-btn:hover {
  background: var(--green);
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════════
   VACANCY / CAREERS PAGE — /vacancy/
   ═══════════════════════════════════════════════════════════════════════════ */

.vacancy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 7rem 5vw 5rem;
}

.vacancy-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.vacancy-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  margin: 0.4rem 0 0.9rem;
}

.vacancy-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.vacancy-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.vacancy-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
}

.vacancy-card-header {
  margin-bottom: 1rem;
}

.vacancy-role-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.vacancy-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.vacancy-type {
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
}

.vacancy-meta-sep { opacity: 0.4; }

.vacancy-location { font-weight: 500; }

.vacancy-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.vacancy-apply {
  background: rgba(11,77,46,0.06);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 0.8rem 1rem;
}

.vacancy-apply-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.vacancy-apply-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

.vacancy-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.vacancy-empty-emoji { font-size: 2.5rem; margin-bottom: 0.8rem; }

.vacancy-empty-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.vacancy-empty-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto;
}

.vacancy-empty-contact {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.vacancy-empty-contact a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.vacancy-empty-contact a:hover { text-decoration: underline; }

.vacancy-back {
  text-align: center;
  margin-top: 3rem;
}

.vacancy-back-link {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.vacancy-back-link:hover {
  background: var(--green);
  color: #fff;
}

.vacancy-body { min-height: 200px; }


/* ═══════════════════════════════════════════════════════════════════════════
   BRANCH & CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Branches section ────────────────────────────────────────────────────── */
.contact-section { padding: 5.5rem 1.5rem; background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.contact-container { max-width: 1080px; margin: 0 auto; }
.contact-section-header { text-align: center; margin-bottom: 3rem; }
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  margin-top: 0.3rem;
}

.branch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the odd last item or dual items */
  gap: 2rem;
}
.branch-card {
  flex: 0 1 340px; /* Fixed basis to keep them symmetrical */
  min-width: 300px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(11,77,46,0.08);
  box-shadow: 0 6px 32px rgba(11,77,46,0.09), 0 1px 6px rgba(0,0,0,0.04);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(0.165,0.84,0.44,1), transform 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.branch-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--green-light) 60%, var(--amber) 100%);
  border-radius: 22px 22px 0 0;
}
.branch-card:hover {
  box-shadow: 0 18px 55px rgba(11,77,46,0.16), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-6px);
}

.branch-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.branch-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.3rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.branch-name-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  line-height: 1;
  background: linear-gradient(135deg, rgba(200,149,32,0.14) 0%, rgba(11,77,46,0.09) 100%);
  width: 32px; height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.branch-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--green-light);
  background: rgba(11,77,46,0.07);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  margin-top: 0.2rem;
}

.branch-details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(11,77,46,0.08);
}
.branch-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.branch-detail-icon { flex-shrink: 0; font-size: 0.95rem; margin-top: 1px; }
.branch-detail-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.branch-detail-link:hover { text-decoration: underline; }

.branch-maps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.72rem 1.2rem;
  background: linear-gradient(135deg, rgba(11,77,46,0.06) 0%, rgba(11,77,46,0.04) 100%);
  border: 1.5px solid rgba(11,77,46,0.15);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.branch-maps-btn:hover {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11,77,46,0.25);
}

.contact-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--muted);
}
.contact-empty span { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

/* ── Reach out strip ─────────────────────────────────────────────────────── */
.contact-reach-section {
  background: linear-gradient(135deg, #041a0f 0%, #0b4d2e 60%, #0f5c36 100%);
  padding: 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.contact-reach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(200,149,32,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 70%, rgba(24,122,72,0.28) 0%, transparent 48%);
  pointer-events: none;
}
.contact-reach-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-reach-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0.4rem 0 0.8rem;
}
.contact-reach-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-reach-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--amber);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-msg-btn:hover { background: var(--amber-light); transform: translateY(-2px); }
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: background 0.2s;
}
.contact-wa-btn:hover { background: rgba(255,255,255,0.25); }

.contact-reach-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.contact-info-item:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(200,149,32,0.4);
}
.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .contact-reach-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .branch-grid { grid-template-columns: 1fr; }
  .contact-reach-actions { flex-direction: column; }
  .contact-msg-btn,
  .contact-wa-btn { justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 1rem 5vw;
  padding-top: calc(var(--nav-height) + 0.75rem);
  font-size: 0.8rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(11,77,46,0.12);
  background: var(--cream);
}
.pd-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.pd-breadcrumb a:hover { color: var(--green); }
.pd-breadcrumb-sep { color: rgba(11,77,46,0.2); font-size: 0.75rem; }
.pd-breadcrumb-current { color: var(--text); font-weight: 500; }
.pd-breadcrumb--light a,
.pd-breadcrumb--light { color: rgba(255,255,255,0.75); }
.pd-breadcrumb--light a:hover { color: #fff; }
.pd-breadcrumb--light .pd-breadcrumb-sep { color: rgba(255,255,255,0.3); }
.pd-breadcrumb--light .pd-breadcrumb-current { color: #fff; font-weight: 600; }

/* ── Main split layout ───────────────────────────────────────────────────── */
.pd-main { padding: 3rem 5vw 2rem; }
.pd-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Image column ────────────────────────────────────────────────────────── */
.pd-image-col { position: sticky; top: 6rem; }
.pd-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(11,77,46,0.10);
}
.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-emoji-bg {
  font-size: 8rem;
  line-height: 1;
  user-select: none;
}
.pd-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.pd-badge--fresh { background: #e8f5e9; color: #2e7d32; }
.pd-badge--sale  { background: #fff3e0; color: #e65100; }
.pd-badge--new   { background: #e3f2fd; color: #1565c0; }
.pd-oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pd-freshness-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  background: #f1f8e9;
  border: 1px solid #c5e1a5;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.83rem;
  color: #33691e;
  font-weight: 500;
}
.pd-freshness-icon { font-size: 1rem; flex-shrink: 0; }

/* ── Info column ─────────────────────────────────────────────────────────── */
.pd-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.pd-cat-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.pd-cat-link:hover { opacity: 0.75; }
.pd-type-pill,
.pd-popular-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.pd-type-pill    { background: var(--card-bg); color: var(--muted); border: 1px solid rgba(11,77,46,0.12); }
.pd-popular-pill { background: #fff8e1; color: #b8860b; border: 1px solid #ffe082; }

.pd-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.pd-short-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.pd-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: #e8f5e9;
  color: var(--green);
  text-transform: capitalize;
  letter-spacing: 0.03em;
}
.pd-tag--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.pd-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid rgba(11,77,46,0.12);
}
.pd-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.pd-price-unit {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.pd-oos-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}
.pd-atc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.pd-atc:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,77,46,0.25); }
.pd-atc:active { transform: translateY(0); box-shadow: none; }
.pd-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: #25d366;
  color: white;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.pd-wa-link:hover { background: #1ebe5d; transform: translateY(-1px); }

/* ── Detail sections ─────────────────────────────────────────────────────── */
.pd-sections-wrap { border-top: 1px solid rgba(11,77,46,0.12); }
.pd-section { padding: 3.5rem 5vw; border-bottom: 1px solid rgba(11,77,46,0.12); }
.pd-section--tinted { background: #f9fbf7; }
.pd-section--story  { background: var(--card-bg); }
.pd-section-inner   { max-width: 1100px; margin: 0 auto; }
.pd-section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.pd-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pd-section-icon { font-size: 1.3rem; }
.pd-section-sub  { color: var(--muted); font-size: 0.85rem; margin: 0 0 1.5rem; }
.pd-long-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 700px;
  margin-top: 1rem;
}

/* ── Nutrition grid ──────────────────────────────────────────────────────── */
.pd-nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.pd-nutrition-card {
  background: #fff;
  border: 1px solid rgba(11,77,46,0.12);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pd-nutrition-card:hover { box-shadow: 0 6px 20px rgba(11,77,46,0.10); transform: translateY(-2px); }
.pd-nutrition-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.pd-nutrition-value--sm { font-size: 0.9rem; margin-bottom: 0; }
.pd-nutrition-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

/* ── Story section ───────────────────────────────────────────────────────── */
.pd-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.pd-story-img-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.pd-story-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-story-body { font-size: 1rem; line-height: 1.8; color: var(--muted); margin: 0.75rem 0 1rem; }
.pd-category-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #33691e;
  background: #f1f8e9;
  border: 1px solid #c5e1a5;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* ── Back to products button ─────────────────────────────────────────────── */
.pd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.7rem 1.25rem;
  border: 1.5px solid rgba(11,77,46,0.25);
  border-radius: 10px;
  color: var(--green);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
  width: 100%;
  justify-content: center;
}
.pd-back-btn:hover {
  background: #f1f8e9;
  border-color: var(--green);
}

/* ── Related section header with arrows ──────────────────────────────────── */
.pd-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.pd-related-arrows { display: flex; gap: 0.5rem; }
.pd-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(11,77,46,0.2);
  background: #fff;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.pd-arrow-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 3px 10px rgba(11,77,46,0.2);
}

/* ── Related products horizontal scroll ──────────────────────────────────── */
.pd-related-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-top: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(11,77,46,0.2) transparent;
}
.pd-related-card {
  flex: 0 0 180px;
  background: var(--card-bg);
  border: 1px solid rgba(11,77,46,0.12);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pd-related-card:hover { box-shadow: 0 8px 24px rgba(11,77,46,0.12); transform: translateY(-3px); }
.pd-related-img {
  aspect-ratio: 1/1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pd-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-related-img span { font-size: 3rem; }
.pd-related-body { padding: 0.75rem; flex: 1; }
.pd-related-name { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.pd-related-price { font-size: 0.8rem; font-weight: 700; color: var(--green); }
.pd-related-atc {
  margin: 0 0.75rem 0.75rem;
  width: calc(100% - 1.5rem);
  padding: 0.45rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 8px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .pd-container { grid-template-columns: 1fr; gap: 2rem; }
  .pd-image-col { position: static; }
  .pd-story-inner { grid-template-columns: 1fr; }
  .pd-story-img-wrap { max-height: 260px; }
}
@media (max-width: 640px) {
  .pd-main { padding: 1.5rem 1.2rem; }
  .pd-section { padding: 2.5rem 1.2rem; }
  .pd-title { font-size: 1.8rem; }
  .pd-nutrition-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .pd-related-card { flex: 0 0 150px; }
  .pd-atc, .pd-wa-link { border-radius: 10px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────────────── */
.cat-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 3.5rem;
  background: var(--green);
  overflow: hidden;
}
.cat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(24,122,72,0.55) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(200,149,32,0.18) 0%, transparent 55%);
}
.cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(11,77,46,0.5) 0%, rgba(5,20,10,0.75) 100%);
}
.cat-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.cat-hero-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.cat-hero-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.cat-hero-badge--green {
  background: rgba(46,125,50,0.35);
  border-color: rgba(165,214,167,0.5);
}
.cat-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.cat-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin: 0 0 1.2rem;
  max-width: 560px;
}
.cat-hero-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ── Story strip ─────────────────────────────────────────────────────────── */
.cat-story-strip {
  background: var(--card-bg);
  border-bottom: 1px solid rgba(11,77,46,0.12);
  padding: 2.5rem 5vw;
}
.cat-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.cat-story-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cat-story-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.cat-story-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.3rem;
}
.cat-story-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ── Products section ────────────────────────────────────────────────────── */
.cat-products-section { padding: 3rem 5vw 5rem; }
.cat-products-inner   { max-width: 1200px; margin: 0 auto; }
.cat-products-header  { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2rem; }
.cat-products-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green);
  margin: 0;
}
.cat-products-count {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.product-card-img-link { display: block; text-decoration: none; }
.product-name-link { color: inherit; text-decoration: none; }
.product-name-link:hover { color: var(--green); }

/* ── Empty state ─────────────────────────────────────────────────────────── */
.cat-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}
.cat-empty span { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cat-hero { min-height: 45vh; padding: 0 1.2rem 2.5rem; }
  .cat-story-strip { padding: 2rem 1.2rem; }
  .cat-products-section { padding: 2.5rem 1.2rem 4rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — PHOTO CARDS & HERO (replaces emoji pillars)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section 1: Sourcing — stacked (text centered + 3 cards below) ──────── */
.about-section--sourcing {
  padding-bottom: 4rem;
}
.about-sourcing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-text-block--centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about-text-block--centered .about-body {
  text-align: center;
}

/* ── 3-column photo cards (Section 1: Where We Source) ───────────────────── */
.about-photo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-self: stretch;
}
.about-photo-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(11,77,46,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.32s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.32s;
  display: flex;
  flex-direction: column;
}
.about-photo-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(11,77,46,0.16), 0 2px 8px rgba(0,0,0,0.06);
}

/* ── Uploaded section photos ────────────────────────────────────────────── */
.about-photo-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-photo-hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.about-photo-hero-img--dark {
  filter: brightness(0.88);
}

/* ── Photo placeholder (shared by cards + hero + trust) ─────────────────── */
.about-photo-ph {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #e4f2ea 0%, #cce6d4 60%, #b8ddc5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 2px dashed rgba(11,77,46,0.2);
  color: rgba(11,77,46,0.42);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}
.about-photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(11,77,46,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.about-photo-ph svg {
  opacity: 0.45;
  flex-shrink: 0;
}
.about-photo-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green);
  padding: 1.1rem 1.15rem 0.3rem;
  line-height: 1.3;
}
.about-photo-card-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 1.15rem 1.2rem;
  flex: 1;
}

/* ── Tall photo hero (Sections 2, 3, 4 — zigzag full-height image) ──────── */
.about-photo-hero-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.about-photo-ph--tall {
  aspect-ratio: 4/5;
  border-radius: 28px;
  font-size: 0.8rem;
  width: 100%;
}
.about-photo-ph--dark {
  background: linear-gradient(145deg, rgba(11,77,46,0.25) 0%, rgba(4,26,15,0.4) 100%);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
}
.about-photo-ph--dark::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(200,149,32,0.14) 0%, transparent 65%);
}
.about-photo-ph--dark svg { color: rgba(255,255,255,0.65); opacity: 0.5; }

/* ── Delivery pills (Section 2) ─────────────────────────────────────────── */
.about-delivery-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.about-delivery-pill {
  background: linear-gradient(135deg, rgba(11,77,46,0.08) 0%, rgba(24,122,72,0.06) 100%);
  border: 1px solid rgba(11,77,46,0.14);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
}

/* ── Quality stats row (Section 3) ─────────────────────────────────────── */
.about-quality-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, rgba(11,77,46,0.05) 0%, rgba(200,149,32,0.06) 100%);
  border: 1px solid rgba(11,77,46,0.1);
  border-radius: 18px;
}
.about-quality-stat {
  text-align: center;
  flex: 1;
}
.about-quality-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.about-quality-stat-label {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.3rem;
}
.about-quality-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(11,77,46,0.12);
  flex-shrink: 0;
}

/* ── Trust section — updated to photo + text layout ─────────────────────── */
.about-trust-section .about-trust-inner {
  grid-template-columns: 1fr 1.1fr;
}
.about-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 1.8rem;
}
.about-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
.about-trust-item-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
  box-shadow: 0 0 8px rgba(200,149,32,0.55);
}
.about-trust-item strong {
  color: #fff;
  font-weight: 700;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-photo-cards { grid-template-columns: 1fr 1fr; }
  .about-container { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .about-section { padding: 4rem 1.2rem; }
  .about-container, .about-trust-inner, .about-visual-inner, .about-team-inner, .about-sourcing-inner { 
    display: flex !important;
    flex-direction: column !important;
    gap: 2.2rem;
    direction: ltr !important; /* Force consistent stacking on mobile */
  }
  
  /* Select all possible text-blocks and ensure they lead the section */
  .about-text-block, 
  .about-text-block--centered,
  .about-trust-text, 
  .about-visual-text, 
  .about-team-text { order: 1 !important; } 

  /* Select all possible media/grid containers and ensure they follow the text */
  .about-photo-hero-wrap, 
  .about-photo-cards,
  .about-gallery, 
  .about-team-gallery { order: 2 !important; }

  .about-photo-cards { grid-template-columns: 1fr; gap: 1rem; }
  .about-photo-ph--tall { aspect-ratio: 1.1/1; }
  
  .about-heading { font-size: 1.75rem; line-height: 1.2; text-align: left; }
  .about-body { font-size: 0.98rem; line-height: 1.75; }

  .about-quality-stats { 
    gap: 0.5rem; 
    padding: 1.2rem 1rem;
    flex-wrap: wrap; 
  }
  .about-quality-stat { min-width: 80px; }
  .about-quality-stat-val { font-size: 1.35rem; }
  .about-quality-stat-div { display: none; }

  .about-photo-hero-img { border-radius: 20px; aspect-ratio: 1.2/1; }
  
  .about-products-strip { padding: 1.2rem 1.2rem; }
  .about-products-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  
  .about-cta-section { padding: 4.5rem 1.5rem; }
  .about-cta-inner h2 { font-size: 1.85rem; }
}
