/* ==========================================================================
   Bingo Ride Zambia — Modern homepage redesign
   Scoped namespace: .bzm  (plus safe public-header overrides at the bottom)
   Palette: ink #0F1B14 / emerald #14532D / emerald-hover #1E6B41 /
            amber #E8A33D / cream #FAF6EF / white / sage #5B6B60
   ========================================================================== */

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

/* ---------- Tokens & reset (scoped) ---------- */
.bzm,
.bzm *,
.bzm *::before,
.bzm *::after {
  box-sizing: border-box;
}

.bzm {
  --bzm-ink: #0F1B14;
  --bzm-emerald: #14532D;
  --bzm-emerald-hover: #1E6B41;
  --bzm-amber: #E8A33D;
  --bzm-amber-hover: #D89432;
  --bzm-cream: #FAF6EF;
  --bzm-white: #FFFFFF;
  --bzm-sage: #5B6B60;
  --bzm-radius: 20px;
  --bzm-radius-sm: 14px;
  --bzm-shadow: 0 20px 60px rgba(15, 27, 20, .10);
  --bzm-shadow-sm: 0 8px 28px rgba(15, 27, 20, .08);
  --bzm-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  font-family: var(--bzm-font);
  color: var(--bzm-ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--bzm-white);
}

.bzm img { max-width: 100%; height: auto; display: block; }
.bzm a { text-decoration: none; transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.bzm a:hover, .bzm a:focus { text-decoration: none; }

.bzm-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- Type scale ---------- */
.bzm-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--bzm-ink);
  margin: 0 0 24px;
}

.bzm-h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: var(--bzm-ink);
  margin: 0 0 16px;
}

.bzm-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--bzm-sage);
  font-weight: 500;
  margin: 0 0 32px;
}

.bzm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bzm-emerald);
  background: rgba(20, 83, 45, .08);
  border: 1px solid rgba(20, 83, 45, .14);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 20px;
}

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

/* ---------- Buttons & badges ---------- */
.bzm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bzm-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
}

.bzm-btn img { width: 16px; height: 16px; display: inline-block; }
/* arrow-right.svg is light-green (#99c446) — recolor per button theme */
.bzm-btn--emerald img { filter: brightness(0) invert(1); }
.bzm-btn--amber img { filter: brightness(0); }
.bzm-btn--ghost img { filter: brightness(0); }

.bzm-btn--amber { background: var(--bzm-amber); color: var(--bzm-ink); }
.bzm-btn--amber:hover, .bzm-btn--amber:focus { background: var(--bzm-amber-hover); color: var(--bzm-ink); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232, 163, 61, .35); }

.bzm-btn--emerald { background: var(--bzm-emerald); color: #fff; }
.bzm-btn--emerald:hover, .bzm-btn--emerald:focus { background: var(--bzm-emerald-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(20, 83, 45, .30); }

.bzm-btn--ghost { background: transparent; color: var(--bzm-emerald); border-color: rgba(20, 83, 45, .30); }
.bzm-btn--ghost:hover, .bzm-btn--ghost:focus { border-color: var(--bzm-emerald); color: var(--bzm-emerald-hover); transform: translateY(-2px); }

.bzm-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
/* Store badge PNGs are white glyphs on transparency — mount them on ink chips */
.bzm-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bzm-ink);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--bzm-shadow-sm);
}
.bzm-badge:hover { transform: translateY(-2px); box-shadow: var(--bzm-shadow); }
.bzm-badge img { height: 30px; width: auto; }
.bzm-section--ink .bzm-badge { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .18); }

/* ==== section: hero ==== */
.bzm-hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(232, 163, 61, .12), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(20, 83, 45, .10), transparent 55%),
    var(--bzm-cream);
  padding: 96px 0 88px;
  overflow: hidden;
}

.bzm-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.bzm-hero-copy { max-width: 560px; }

.bzm-hero-media { position: relative; }

.bzm-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.bzm-hero-card > img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--bzm-shadow);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.bzm-chip {
  position: absolute;
  left: -24px;
  bottom: 32px;
  background: var(--bzm-white);
  border-radius: var(--bzm-radius-sm);
  box-shadow: var(--bzm-shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bzm-chip-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bzm-emerald);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.bzm-chip strong { display: block; font-size: 1.05rem; font-weight: 800; line-height: 1.2; color: var(--bzm-ink); }
.bzm-chip span { display: block; font-size: .82rem; color: var(--bzm-sage); font-weight: 600; }

/* ---------- Stats strip ---------- */
.bzm-stats {
  background: var(--bzm-ink);
  padding: 40px 0;
}

.bzm-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.bzm-stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--bzm-amber);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.bzm-stat span {
  display: block;
  margin-top: 4px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(250, 246, 239, .72);
}

/* ---------- Sections generic ---------- */
.bzm-section { padding: 96px 0; }
.bzm-section--cream { background: var(--bzm-cream); }
.bzm-section--white { background: var(--bzm-white); }
.bzm-section--ink { background: var(--bzm-ink); }

.bzm-section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.bzm-section-head .bzm-h2 { margin-bottom: 12px; }
.bzm-section-head p { color: var(--bzm-sage); font-size: 1.05rem; margin: 0; font-weight: 500; }

/* ==== section: signup_cards ==== */
.bzm-signup-form { margin: 0; }

.bzm-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bzm-card {
  background: var(--bzm-white);
  border: 1px solid rgba(15, 27, 20, .06);
  border-radius: var(--bzm-radius);
  padding: 36px 32px;
  box-shadow: var(--bzm-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.bzm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bzm-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bzm-card-icon img { width: 30px; height: 30px; object-fit: contain; }
.bzm-card-icon--amber { background: var(--bzm-amber); }
.bzm-card-icon--amber img { filter: brightness(0); }

.bzm-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bzm-ink);
  margin: 0 0 10px;
  line-height: 1.3;
}

.bzm-card p { color: var(--bzm-sage); font-size: .98rem; margin: 0 0 24px; font-weight: 500; }

.bzm-card .bzm-btn { margin-top: auto; }

/* ==== section: features ==== */
.bzm-feature {
  text-align: left;
  background: var(--bzm-white);
  border-radius: var(--bzm-radius);
  border: 1px solid rgba(15, 27, 20, .06);
  padding: 36px 32px;
  height: 100%;
  box-shadow: var(--bzm-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

/* easyway/anywhare/lowcost SVGs are white glyphs — mount on emerald tiles */
.bzm-feature img.bzm-feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  padding: 14px;
  border-radius: 18px;
  background: var(--bzm-emerald);
  margin-bottom: 20px;
}

.bzm-feature h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bzm-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.bzm-feature p { color: var(--bzm-sage); font-size: .97rem; margin: 0; font-weight: 500; }

.bzm-center-cta { text-align: center; margin-top: 48px; }

/* ==== sections: rider_app / driver / safety (split layouts) ==== */
.bzm-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.bzm-split-grid--reverse .bzm-split-media { order: 2; }
.bzm-split-grid--reverse .bzm-split-copy { order: 1; }

.bzm-split-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--bzm-shadow);
}

.bzm-split-media--plain img {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  max-width: 340px;
  margin: 0 auto;
}

.bzm-split-copy .bzm-h2 { margin-bottom: 16px; }
.bzm-split-copy p { color: var(--bzm-sage); font-size: 1.05rem; font-weight: 500; margin: 0 0 32px; }

.bzm-section--ink .bzm-h2 { color: var(--bzm-cream); }
.bzm-section--ink .bzm-split-copy p { color: rgba(250, 246, 239, .78); }
.bzm-section--ink .bzm-eyebrow { color: var(--bzm-amber); background: rgba(232, 163, 61, .12); border-color: rgba(232, 163, 61, .25); }

.bzm-checklist { list-style: none; padding: 0; margin: 0 0 32px; }
.bzm-checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--bzm-ink);
  font-size: 1rem;
}

.bzm-section--ink .bzm-checklist li { color: rgba(250, 246, 239, .9); }

.bzm-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bzm-emerald) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

.bzm-section--ink .bzm-checklist li::before { background-color: var(--bzm-amber); }

/* ==== section: car_types ==== */
.bzm-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzm-pill {
  background: var(--bzm-white);
  border: 1px solid rgba(20, 83, 45, .16);
  color: var(--bzm-emerald);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: var(--bzm-shadow-sm);
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.bzm-pill:hover { background: var(--bzm-emerald); color: #fff; transform: translateY(-3px); }

/* ==== section: cta_band ==== */
.bzm-cta {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(255, 255, 255, .20), transparent 60%),
    var(--bzm-amber);
  padding: 88px 0;
  text-align: center;
}

.bzm-cta .bzm-h2 { color: var(--bzm-ink); max-width: 640px; margin-left: auto; margin-right: auto; }
.bzm-cta p { color: rgba(15, 27, 20, .72); font-weight: 600; font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.bzm-cta .bzm-badges { justify-content: center; }
.bzm-cta .bzm-badge { box-shadow: 0 12px 30px rgba(15, 27, 20, .18); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .bzm-hero { padding: 72px 0 64px; }
  .bzm-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .bzm-hero-copy { max-width: 640px; }
  .bzm-chip { left: 16px; bottom: 20px; }
  .bzm-section { padding: 72px 0; }
  .bzm-card-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .bzm-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .bzm-split-grid--reverse .bzm-split-media { order: 0; }
  .bzm-split-grid--reverse .bzm-split-copy { order: 1; }
  .bzm-stats-row { gap: 24px; }
}

@media (max-width: 767px) {
  .bzm { font-size: 15px; }
  .bzm-hero { padding: 56px 0; }
  .bzm-section { padding: 56px 0; }
  .bzm-section-head { margin-bottom: 40px; }
  .bzm-stats-row { grid-template-columns: 1fr; gap: 20px; }
  .bzm-btn { padding: 14px 24px; font-size: .95rem; }
  .bzm-badge img { height: 46px; }
  .bzm-cta { padding: 64px 0; }
}

@media (max-width: 575px) {
  .bzm-container { padding-left: 16px; padding-right: 16px; }
  .bzm-card, .bzm-feature { padding: 28px 24px; }
  .bzm-chip { padding: 12px 14px; gap: 10px; }
  .bzm-chip-dot { width: 36px; height: 36px; }
}

/* ==========================================================================
   Public header polish — matches ONLY the public site header
   (common/header.blade.php markup: header > .fixed-header).
   Dashboard templates use common/dashboard_header (no <header>/.fixed-header),
   and admin uses admin/common/header — neither is affected by these rules.
   ========================================================================== */

header .fixed-header {
  background: rgba(255, 255, 255, .88) !important;
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(15, 27, 20, .07) !important;
  box-shadow: 0 8px 30px rgba(15, 27, 20, .06);
}

header .fixed-header .header-left-link > li > a,
header .fixed-header .header-right-link > li > a {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--bzm-emerald, #14532D) !important;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .2s ease;
}

header .fixed-header .header-left-link > li > a:hover,
header .fixed-header .header-right-link > li > a:hover {
  color: var(--bzm-emerald-hover, #1E6B41) !important;
}

header .fixed-header .become-driver .btn,
header .fixed-header .become-driver .btn--primary {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #E8A33D !important;
  border: none !important;
  color: #0F1B14 !important;
  font-weight: 700;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  box-shadow: 0 6px 18px rgba(232, 163, 61, .35);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

header .fixed-header .become-driver .btn:hover,
header .fixed-header .become-driver .btn--primary:hover {
  background: #D89432 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(232, 163, 61, .45);
}

/* ==========================================================================
   PHASE 2 — dedicated public chrome (partials/public_header + public_footer)
   Design tokens at :root so .bzm-* components also render correctly outside
   the .bzm homepage wrapper (header, drawer, footer, cookie bar).
   ========================================================================== */

:root {
  --bzm-ink: #0F1B14;
  --bzm-emerald: #14532D;
  --bzm-emerald-hover: #1E6B41;
  --bzm-amber: #E8A33D;
  --bzm-amber-hover: #D89432;
  --bzm-cream: #FAF6EF;
  --bzm-white: #FFFFFF;
  --bzm-sage: #5B6B60;
  --bzm-shadow: 0 20px 60px rgba(15, 27, 20, .10);
  --bzm-shadow-sm: 0 8px 28px rgba(15, 27, 20, .08);
  --bzm-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ==== partial: public_header — fixed top bar ==== */
.bzm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .90);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(15, 27, 20, .07);
  font-family: var(--bzm-font);
}

.bzm-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.bzm-header .bzm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}

.bzm-brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.bzm-brand-word {
  font-family: var(--bzm-font);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--bzm-ink);
  white-space: nowrap;
}

.bzm-brand-word em {
  font-style: normal;
  color: var(--bzm-amber);
}

.bzm-header .bzm-header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
}

.bzm-header .bzm-header-nav a {
  color: var(--bzm-emerald);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color .2s ease;
}

.bzm-header .bzm-header-nav a:hover {
  color: var(--bzm-emerald-hover);
}

.bzm-header .bzm-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.bzm-header .bzm-header-link {
  color: var(--bzm-emerald);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color .2s ease;
}

.bzm-header .bzm-header-link:hover {
  color: var(--bzm-emerald-hover);
}

.bzm-header .bzm-header-cta {
  display: inline-block;
  background: var(--bzm-amber);
  color: var(--bzm-ink);
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(232, 163, 61, .35);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.bzm-header .bzm-header-cta:hover {
  background: var(--bzm-amber-hover);
  color: var(--bzm-ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(232, 163, 61, .45);
}

/* hamburger — visible on mobile only */
.bzm-header .bzm-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px 6px;
  margin: 0;
  cursor: pointer;
  float: none;
  position: static;
}

.bzm-header .bzm-nav-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bzm-emerald);
  border-radius: 2px;
  margin: 5px 0;
}

/* flash message bar under the fixed header */
.flash-container .bzm-flash {
  background: var(--bzm-emerald) !important;
  color: #fff !important;
  margin-bottom: 0;
  border-radius: 0;
  font-family: var(--bzm-font);
  font-weight: 600;
}

/* ==== partial: public_header — mobile drawer (.nav-div hooks kept for main.js) ==== */
.nav-div.bzm-drawer {
  width: 340px;
  max-width: 85vw;
  background: var(--bzm-cream);
  box-shadow: 24px 0 60px rgba(15, 27, 20, .25);
  z-index: 1050;
  padding: 0 0 40px;
  font-family: var(--bzm-font);
}

.bzm-drawer .bzm-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(15, 27, 20, .08);
  background: rgba(255, 255, 255, .7);
}

.bzm-drawer .bzm-brand { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.bzm-drawer .bzm-brand-mark { width: 34px; height: 34px; }
.bzm-drawer .bzm-brand-word { font-size: 1rem; }

.bzm-drawer .bzm-drawer-close {
  cursor: pointer;
  font-size: 20px;
  color: var(--bzm-ink);
  padding: 8px;
  line-height: 1;
}

.bzm-drawer .bzm-drawer-signin {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px;
  padding: 14px 18px;
  background: var(--bzm-white);
  border: 1px solid rgba(15, 27, 20, .08);
  border-radius: 14px;
  color: var(--bzm-emerald);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: var(--bzm-shadow-sm);
}

.bzm-drawer .bzm-drawer-signin .icon-user-inside-circle { font-size: 20px; }

.bzm-drawer .bzm-drawer-body { padding: 0 20px; }

.bzm-drawer .bzm-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.bzm-drawer .bzm-drawer-cta { justify-content: center; width: 100%; }

.bzm-drawer .bzm-drawer-links { display: flex; flex-direction: column; }

.bzm-drawer .bzm-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(15, 27, 20, .07);
  color: var(--bzm-ink);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
}

.bzm-drawer .bzm-drawer-link:hover { color: var(--bzm-emerald); }
.bzm-drawer .bzm-drawer-link .icon-chevron-right { color: var(--bzm-sage); font-size: .8rem; }

/* ==== partial: public_footer — deep ink, 4-column grid ==== */
.bzm-footer {
  background: var(--bzm-ink);
  color: rgba(250, 246, 239, .78);
  font-family: var(--bzm-font);
  padding: 72px 0 0;
}

.bzm-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.bzm-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.bzm-footer .bzm-brand { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.bzm-footer .bzm-brand-mark { width: 42px; height: 42px; }
.bzm-footer .bzm-brand-word { color: var(--bzm-cream); font-size: 1.2rem; }
.bzm-footer .bzm-brand-word em { color: var(--bzm-amber); }

.bzm-footer-blurb {
  margin: 18px 0 22px;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(250, 246, 239, .62);
  max-width: 300px;
}

.bzm-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.bzm-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bzm-cream);
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.bzm-footer-social a:hover {
  background: var(--bzm-amber);
  color: var(--bzm-ink);
  transform: translateY(-2px);
}

.bzm-footer-col h5 {
  font-family: var(--bzm-font);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bzm-amber);
  margin: 0 0 20px;
}

.bzm-footer .bzm-footer-link {
  display: block;
  color: rgba(250, 246, 239, .78);
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color .2s ease;
}

.bzm-footer .bzm-footer-link:hover { color: var(--bzm-cream); }

.bzm-footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
/* badge PNGs are white-on-transparent — readable directly on ink */
.bzm-footer-badges a {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 10px 16px;
  transition: background-color .2s ease, transform .2s ease;
}
.bzm-footer-badges a:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.bzm-footer-badges img { height: 28px; width: auto; display: block; }

.bzm-footer-selects { display: flex; gap: 10px; flex-wrap: wrap; }

.bzm-footer-selects .currency_select { margin: 0; }

.bzm-footer .cls_lang,
.bzm-footer select.cls_lang {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, .07) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23FAF6EF' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") right 14px center no-repeat;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--bzm-cream);
  border-radius: 10px;
  padding: 10px 36px 10px 14px;
  font-family: var(--bzm-font);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 0;
  width: auto;
}

.bzm-footer .cls_lang option { color: var(--bzm-ink); background: var(--bzm-white); }

.bzm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  text-align: center;
  font-size: .88rem;
  color: rgba(250, 246, 239, .55);
}

.bzm-footer-bottom strong { font-weight: 600; }
.bzm-footer-bottom a { color: var(--bzm-amber); text-decoration: none; }
.bzm-footer-bottom a:hover { color: var(--bzm-amber-hover); }

/* ==== cookie consent bar (markup lives in shared common/foot — style only) ==== */
.cookie-alert {
  left: 50% !important;
  right: auto !important;
  bottom: 20px !important;
  transform: translateX(-50%);
  width: auto !important;
  max-width: min(720px, calc(100vw - 32px));
  background-color: var(--bzm-ink) !important;
  border: 1px solid rgba(255, 255, 255, .10) !important;
  border-radius: 16px !important;
  padding: 14px 48px 14px 22px !important;
  box-shadow: 0 20px 60px rgba(15, 27, 20, .35);
  text-align: left;
  z-index: 99999;
  font-family: var(--bzm-font);
}

.cookie-alert p {
  margin: 0;
  font-size: .87rem !important;
  line-height: 1.55;
  color: rgba(250, 246, 239, .85) !important;
  font-weight: 500;
}

.cookie-alert p a,
.cookie-alert a { color: var(--bzm-amber) !important; font-weight: 600; }

.cookie-alert .close,
.cookie-alert .close_cookie-alert {
  color: #fff !important;
  opacity: .7;
  text-shadow: none;
}

.cookie-alert .close:hover,
.cookie-alert .close_cookie-alert:hover { opacity: 1; }

/* ==== responsive: public chrome ==== */
@media (max-width: 991px) {
  .bzm-header-inner { gap: 16px; height: 64px; padding: 0 16px; }
  .bzm-header .bzm-nav-toggle { display: block; order: -1; }
  .bzm-header .bzm-header-nav { display: none; }
  .bzm-header .bzm-header-actions { gap: 14px; }
  .bzm-header .bzm-header-link--hide-sm { display: none; }
  .bzm-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 575px) {
  .bzm-header .bzm-header-cta { padding: 9px 16px; font-size: .85rem; }
  .bzm-header .bzm-brand-word { font-size: 1rem; }
  .bzm-brand-mark { width: 34px; height: 34px; }
  .bzm-footer { padding: 56px 0 0; }
  .bzm-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .cookie-alert { padding: 12px 44px 12px 16px !important; }
  .cookie-alert p { font-size: .8rem !important; }
}
