/* ══════════════════════════════════════════════════════════════════
   /order-online — built to the client's Aug 2026 comp.
   Scoped .oo-, loaded only on this page (functions.php), matching the
   per-template pattern of gift-cards.css / about.css.
   ══════════════════════════════════════════════════════════════════ */

.oo-hero {
  background: var(--surface-warm, var(--bf-cream));
  padding: clamp(28px, 5vw, 60px) 0 clamp(60px, 7vw, 96px);
}

.oo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

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

/* Yellow rather than the raspberry used on /about and /gift-cards — the
   comp distinguishes this page that way, and yellow reads as the
   "go" colour against the blue pickup card below. */
.oo-rule {
  width: 68px;
  height: 4px;
  background: var(--bf-yellow, #F0B357);
  border: 0;
  border-radius: 2px;
  margin: var(--space-5) 0;
}

.oo-hero-copy .lead { color: var(--fg2); max-width: 32ch; }

/* ── HERO STILL-LIFE ──────────────────────────────────────────────── */
/* Bag and cup drawn in CSS carrying the real logo; the bowl is the real
   açaí photograph cut to a circle. Nothing here is stock packaging —
   see the template comment. */

.oo-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--bf-sky, #48A1E0);
}

/* The photograph is a cut-out on a transparent background, so it needs no
   frame, no radius and no fill — it sits directly on the section's cream.
   Height is capped rather than set by aspect-ratio: the subject is taller
   than it is wide and an aspect box would letterbox it. */
.oo-hero-shot {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 26px 38px rgba(43, 48, 51, 0.16));
}

@media (max-width: 900px) { .oo-hero-art { max-width: 420px; margin-inline: auto; } }

/* Hand-drawn sparkle marks, as in the comp. */
.oo-spark { position: absolute; width: clamp(30px, 4vw, 46px); opacity: 0.9; }
.oo-spark svg { display: block; width: 100%; height: auto; }
.oo-spark-a { left: 2%;  top: 12%; }
.oo-spark-b { right: 4%; top: 26%; }

@media (prefers-reduced-motion: no-preference) {
  .oo-hero-shot { transition: transform 600ms var(--ease-out, cubic-bezier(.22,.61,.36,1)); }
  .oo-hero-art:hover .oo-hero-shot { transform: translateY(-6px); }
}

/* ── CHOOSER ──────────────────────────────────────────────────────── */
/* Pulled up over the hero's lower edge, as in the comp. */

.oo-chooser {
  margin-top: calc(-1 * clamp(40px, 6vw, 72px));
  position: relative;
  z-index: 3;
  padding: clamp(20px, 2.8vw, 32px);
  border-radius: var(--radius-lg, 18px);
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--border, var(--bf-line));
  box-shadow: var(--shadow-md, 0 12px 30px rgba(43, 48, 51, 0.10));
}

/* Centred heading with a rule either side. */
.oo-chooser-title {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  margin: 0 0 var(--space-5);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--fg1, var(--bf-charcoal));
  text-align: center;
}

.oo-chooser-title::before,
.oo-chooser-title::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--border, var(--bf-line));
}

.oo-modes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.oo-modes.is-single { grid-template-columns: minmax(0, 1fr); max-width: 34rem; margin-inline: auto; }

@media (max-width: 700px) { .oo-modes { grid-template-columns: 1fr; } }

.oo-mode {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(20px, 2.6vw, 28px);
  border-radius: var(--radius-md, 10px);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base, 200ms) var(--ease-out, ease),
              box-shadow var(--t-base, 200ms) var(--ease-out, ease);
}

.oo-mode:hover,
.oo-mode:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(43, 48, 51, 0.08));
}

/* The two tints from the comp — blue for pickup, red for delivery. Kept
   at a low mix so the icons and type carry the colour, not the panel. */
.oo-mode.is-pickup {
  background: color-mix(in srgb, var(--bf-sky, #48A1E0) 10%, #fff);
  color: var(--accent, var(--bf-sky-deep));
}

.oo-mode.is-delivery {
  background: color-mix(in srgb, var(--bf-raspberry, #D33344) 8%, #fff);
  color: var(--bf-raspberry, #D33344);
}

.oo-mode-icon { flex: none; margin-top: 2px; }

.oo-mode-body { display: block; min-width: 0; }

.oo-mode-name {
  display: block;
  font-family: var(--font-display, Anton, "Arial Narrow", Impact, sans-serif);
  text-transform: uppercase;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.06;
  color: var(--fg1, var(--bf-charcoal));
}

.oo-mode-desc {
  display: block;
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg2, var(--bf-warm-gray));
  max-width: 26ch;
}


.oo-loc-note {
  color: var(--fg2, var(--bf-warm-gray));
  max-width: 46ch;
  margin-top: var(--space-3);
}


/* ── HELP BAND ────────────────────────────────────────────────────── */

.oo-help {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  flex-wrap: wrap;
  margin-top: clamp(28px, 3.5vw, 44px);
  padding: clamp(20px, 2.6vw, 28px) clamp(20px, 3vw, 32px);
  border-radius: var(--radius-lg, 18px);
  background: var(--surface-warm, var(--bf-cream));
  border: 1px solid var(--border, var(--bf-line));
}

.oo-help-icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated, #fff);
  color: var(--bf-leaf-deep, #2C7A45);
  display: grid;
  place-items: center;
}

.oo-help-copy { flex: 1 1 260px; }

.oo-help-copy h3 {
  margin: 0 0 4px;
  font-family: var(--font-display, Anton, "Arial Narrow", Impact, sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.1;
  color: var(--fg1, var(--bf-charcoal));
}

.oo-help-copy p { margin: 0; font-size: 14.5px; color: var(--fg2, var(--bf-warm-gray)); }

.oo-help .btn { flex: none; gap: 8px; }

.oo-foot { margin-top: var(--space-6); color: var(--fg2, var(--bf-warm-gray)); font-size: 15px; }
