/* ==========================================================================
   KukuHatch — Poultry Chicks & Incubators
   Mobile-app-style e-commerce site
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --green: #10584D;
  --green-dark: #0b3f37;
  --green-light: #16786a;
  --gold: #E0AF0C;
  --gold-dark: #b88e08;
  --dark: #221F1A;
  --cream: #EDEDEA;
  --white: #FFFFFF;
  --text: #222222;
  --text-muted: #767676;
  --line: #e2e0da;
  --danger: #c0392b;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 6px 20px rgba(20, 20, 20, 0.10);

  --maxw: 480px;
  --topbar-h: 64px;
  --bottomnav-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #d8d8d4;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Fredoka', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--green);
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ===================== APP SHELL ===================== */
.app {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  padding-bottom: calc(var(--bottomnav-h) + 14px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 560px) {
  body { padding: 24px 0; }
  .app { min-height: calc(100vh - 48px); border-radius: 28px; overflow: hidden; }
}

/* ===================== TOP BAR ===================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.topbar .brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.topbar .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.topbar .greet-eyebrow {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.topbar .greet-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar .page-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  position: relative;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.icon-btn:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }
.icon-btn i { font-size: 17px; }

.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--white);
}

.back-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.back-btn:hover { background: var(--gold); color: var(--white); }

/* ===================== MAIN CONTENT ===================== */
.content { padding: 18px; }
.content.no-pad-top { padding-top: 0; }

/* ===================== SEARCH BAR ===================== */
.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.search-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
}
.search-pill i { color: var(--text-muted); font-size: 15px; }
.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: var(--text);
}

.pill-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}
.pill-icon-btn:hover { transform: translateY(-1px); background: var(--green-light); }

/* ===================== PROMO / HERO CARD ===================== */
.promo-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 150px;
  display: flex;
  align-items: center;
}
.promo-card .promo-text { position: relative; z-index: 2; max-width: 60%; }
.promo-card h2 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 14px;
}
.promo-card .btn-shop {
  background: var(--white);
  color: var(--green);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.promo-card .btn-shop:hover { background: var(--gold); color: var(--white); }
.promo-card .promo-img {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 42%;
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 78%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ===================== SECTION HEADER ===================== */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-head h3 { font-size: 18px; color: var(--dark); }
.section-head .see-all { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.section-head .see-all:hover { color: var(--green); }

section.block { margin-bottom: 28px; }

/* ===================== CATEGORY CHIPS ===================== */
.category-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }

.category-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.category-chip .cat-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--green);
  font-size: 20px;
  transition: background 0.15s ease, color 0.15s ease;
}
.category-chip.active .cat-circle { background: var(--green); color: var(--white); }
.category-chip span { font-size: 11px; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.category-chip.active span { color: var(--green); }

/* pill variant used in reference (active = pill with label inline) */
.category-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.category-pill.active { background: var(--green); color: var(--white); }
.category-pill i { font-size: 14px; }

/* ===================== PRODUCT GRID & CARD ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.product-card .pc-img-wrap {
  position: relative;
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  background: var(--cream);
}
.product-card .pc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.product-card .pc-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}

.product-card .pc-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  z-index: 2;
}
.product-card .pc-fav.active,
.product-card .pc-fav:hover { color: var(--danger); }

.product-card .pc-body { padding: 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-card .pc-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .pc-unit { font-size: 11px; color: var(--text-muted); }

.product-card .pc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.product-card .pc-price { font-size: 15px; font-weight: 800; color: var(--green); }
.product-card .pc-oldprice {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 5px;
  font-weight: 500;
}
.product-card .pc-add {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.product-card .pc-add:hover { background: var(--gold); transform: scale(1.08); }
.product-card .pc-add:active { transform: scale(0.94); }

/* ===================== BOTTOM NAV ===================== */
.bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--maxw);
  background: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: var(--bottomnav-h);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  z-index: 50;
  padding: 8px 6px calc(env(safe-area-inset-bottom, 0px) + 6px);
  border-radius: 0;
}

@media (min-width: 560px) {
  .bottomnav { position: absolute; }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 10.5px;
  font-weight: 600;
  flex: 1;
  padding: 6px 2px;
  position: relative;
}
.nav-item i { font-size: 19px; }
.nav-item.active { color: var(--green); }
.nav-item.active .nav-pill {
  background: var(--green);
  color: var(--white);
  width: 40px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1px;
}
.nav-item.active .nav-pill i { font-size: 15px; }
.nav-item .cart-count {
  position: absolute;
  top: -2px;
  right: 18%;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  width: 100%;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-light); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5a; }
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 9px 16px; font-size: 12.5px; width: auto; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 22px;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,88,77,0.15) 0%, rgba(15,25,20,0.82) 100%);
}
.page-hero .hero-text { position: relative; z-index: 2; padding: 20px; color: var(--white); }
.page-hero .hero-text .eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.page-hero .hero-text h1 { color: var(--white); font-size: 26px; margin-top: 4px; }
.page-hero .hero-text p { color: rgba(255,255,255,0.85); font-size: 13px; margin-top: 6px; }

/* ===================== CARDS / GENERIC ===================== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.info-card .info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 10px;
}
.info-card h4 { font-size: 14.5px; color: var(--dark); margin-bottom: 6px; }
.info-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.stats-band {
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.stats-band .stat { text-align: center; }
.stats-band .stat b { display: block; font-family: 'Fredoka', sans-serif; color: var(--gold); font-size: 24px; }
.stats-band .stat span { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ===================== TESTIMONIALS ===================== */
.testi-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 22px;
  color: var(--white);
  margin-bottom: 10px;
}
.testi-card .quote-icon { color: var(--gold); font-size: 22px; margin-bottom: 10px; }
.testi-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.92); margin-bottom: 16px; }
.testi-card .testi-author { display: flex; align-items: center; gap: 10px; }
.testi-card .testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-card .testi-author b { display: block; font-size: 13px; }
.testi-card .testi-author span { font-size: 11px; color: var(--gold); }
.testi-dots { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.testi-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.testi-dots span.active { background: var(--green); width: 18px; border-radius: 4px; }

/* ===================== TEAM ===================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.team-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card .team-body { padding: 10px; }
.team-card b { font-size: 12.5px; color: var(--dark); display: block; }
.team-card span { font-size: 10.5px; color: var(--gold); font-weight: 600; }

/* ===================== FORMS ===================== */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13.5px;
  background: var(--white);
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); }
.field textarea { resize: vertical; min-height: 90px; }

/* ===================== CART ===================== */
.cart-item {
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  align-items: center;
}
.cart-item img { width: 66px; height: 66px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.cart-item .ci-unit { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.cart-item .ci-price { font-size: 13.5px; font-weight: 800; color: var(--green); }
.cart-item .ci-remove {
  background: none; border: none; color: var(--text-muted); font-size: 15px; align-self: flex-start;
}
.cart-item .ci-remove:hover { color: var(--danger); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin-top: 8px;
}
.qty-control button {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.qty-control span { font-size: 13px; font-weight: 700; min-width: 18px; text-align: center; }

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  margin-top: 18px;
}
.cart-summary .row { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 10px; color: var(--text-muted); }
.cart-summary .row.total { color: var(--dark); font-weight: 800; font-size: 16px; border-top: 1px dashed var(--line); padding-top: 12px; margin-top: 4px; }
.cart-summary .row.total span:last-child { color: var(--green); }

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
}
.empty-state i { font-size: 42px; color: var(--line); margin-bottom: 14px; display: block; }
.empty-state h3 { color: var(--dark); margin-bottom: 6px; font-size: 16px; }
.empty-state p { font-size: 13px; margin-bottom: 18px; }

/* ===================== SINGLE PRODUCT PAGE ===================== */
.pd-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/0.95;
  margin-bottom: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; margin-bottom: 18px; }
.pd-thumbs button {
  width: 58px; height: 58px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--white);
}
.pd-thumbs button.active { border-color: var(--green); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd-title { font-size: 20px; color: var(--dark); margin-bottom: 4px; }
.pd-cat { font-size: 12px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.pd-price-row { display: flex; align-items: center; gap: 10px; margin: 12px 0; }
.pd-price { font-size: 24px; font-weight: 800; color: var(--green); }
.pd-oldprice { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.pd-stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); font-weight: 700; margin-bottom: 14px; }
.pd-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.pd-desc h4 { font-size: 13.5px; color: var(--dark); margin-bottom: 6px; font-family: 'Inter'; font-weight: 700; }

.pd-qty-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pd-qty-row .qty-control { margin-top: 0; }

.pd-actions { display: flex; gap: 10px; margin-bottom: 24px; }

.related-scroll { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.related-scroll::-webkit-scrollbar { display: none; }
.related-scroll .product-card { min-width: 150px; }

/* ===================== FILTER PANEL (products page) ===================== */
.filter-bar { display: flex; gap: 10px; overflow-x: auto; margin-bottom: 16px; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }

.results-count { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }

/* ===================== STATIC PAGE CONTENT (about/faq/policy) ===================== */
.prose h2 { font-size: 17px; color: var(--dark); margin: 20px 0 8px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0 0 10px; }
.prose ul { margin: 8px 0 14px; padding-left: 4px; }
.prose ul li {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.6;
  padding-left: 20px; position: relative; margin-bottom: 8px;
}
.prose ul li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--green); position: absolute; left: 0; font-size: 10px; top: 4px;
}

.accordion-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-item .acc-q {
  width: 100%; text-align: left; background: none; border: none; padding: 15px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; font-weight: 700; color: var(--dark);
}
.accordion-item .acc-q i { color: var(--green); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 10px; }
.accordion-item.open .acc-q i { transform: rotate(180deg); }
.accordion-item .acc-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-item.open .acc-a { max-height: 240px; }
.accordion-item .acc-a p { font-size: 13px; color: var(--text-muted); line-height: 1.6; padding: 0 16px 16px; margin: 0; }

.contact-methods { display: grid; gap: 10px; margin-bottom: 20px; }
.contact-method { display: flex; align-items: center; gap: 12px; background: var(--white); border-radius: var(--radius-sm); padding: 13px; box-shadow: var(--shadow-sm); }
.contact-method .cm-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.contact-method b { display: block; font-size: 13px; color: var(--dark); }
.contact-method span { font-size: 12px; color: var(--text-muted); }

.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; color: var(--green);
  box-shadow: var(--shadow-sm); font-size: 15px;
}
.social-row a:hover { background: var(--green); color: var(--white); }

/* footer note within app (site footer replaced by bottom nav) */
.mini-footer { text-align: center; padding: 18px 10px 4px; font-size: 11px; color: var(--text-muted); }
.mini-footer a { color: var(--green); font-weight: 700; }

/* toast */
.toast {
  position: fixed;
  bottom: calc(var(--bottomnav-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast i { color: var(--gold); }

/* breadcrumbs-ish subtitle */
.eyebrow-label { font-size: 11.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; display: block; }
