/* ==========================================================================
   Minis on Track — design system
   Tokens sourced from the design handoff (Storefront design progress).
   ========================================================================== */

:root {
  --navy: #17265C;
  --navy-deep: #101B45;
  --ink-soft: #4A5578;
  --ink-soft-hero: #3B4770;
  --coral: #F4623A;
  --coral-dark: #D94E28;
  --sun: #FFC93C;
  --teal: #2EC4B6;
  --teal-dark: #157268;
  --page-bg: #E6F4FC;
  --panel: #D3E9F7;
  --hero-bg: #B9DFF2;
  --white: #FFFFFF;
  --on-dark: #EEF4FF;
  --logo-pink: #EC4899;
  --logo-blue: #3B82F6;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 14px rgba(23, 38, 92, 0.1);
  --shadow-card-hover: 0 14px 30px rgba(23, 38, 92, 0.16);
  --shadow-btn: 0 10px 24px rgba(244, 98, 58, 0.32);
  --shadow-btn-teal: 0 8px 20px rgba(46, 196, 182, 0.3);
  --shadow-header: 0 6px 18px rgba(23, 38, 92, 0.08);
  --shadow-pop: 0 14px 34px rgba(23, 38, 92, 0.3);
}

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

body {
  margin: 0;
  background-color: var(--page-bg);
  background-image: url("../images/bg-pattern.svg");
  background-repeat: repeat;
  background-size: 320px 320px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
}
p { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--coral-dark); }
input, textarea, select, button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

main { flex: 1; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.wrap-success { max-width: 700px; margin: 0 auto; padding: 0 24px; }
.wrap-footer { max-width: 940px; margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 0; }
.section-tight { padding: 44px 0 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-head p { color: var(--ink-soft); }

.center { text-align: center; }

/* ---- Pills / tags ---- */
.tag {
  display: inline-block;
  background: var(--sun);
  color: var(--navy);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.tag-teal { background: var(--teal); color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--coral); color: var(--white); box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--coral-dark); color: var(--white); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); box-shadow: var(--shadow-btn-teal); }
.btn-teal:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy); border: 3px solid var(--navy); padding: 11px 27px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy); border: 3px solid var(--navy); padding: 11px 27px; }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; box-shadow: 0 6px 16px rgba(244, 98, 58, 0.3); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  box-shadow: var(--shadow-header);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px 24px;
  padding: 12px 24px; max-width: 1180px; margin: 0 auto;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.nav-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 26px;
  font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 1.02rem;
}
.nav-links li { position: relative; }
.nav-links a { display: inline-block; padding: 6px 2px; }
.nav-links a:hover { color: var(--coral-dark); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 3px; border-radius: 3px; background: var(--coral);
}
.nav-toggle {
  display: none; background: none; border: 2px solid var(--navy); border-radius: 10px;
  font-size: 1.3rem; padding: 4px 10px; cursor: pointer; color: var(--navy);
}
.cart-link {
  display: flex; align-items: center; gap: 8px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; flex-shrink: 0;
  border: 2px solid var(--navy); border-radius: var(--radius-pill); padding: 7px 16px;
  transition: background 0.15s ease, color 0.15s ease;
}
.cart-link:hover { background: var(--navy); color: var(--white); }
.cart-count {
  font-size: 0.74rem; min-width: 22px; height: 22px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
  background: rgba(23, 38, 92, 0.16); color: var(--navy);
}
.cart-count.has-items { background: var(--coral); color: var(--white); }

/* ---- Hero (home) ---- */
.hero {
  position: relative; overflow: hidden; background: var(--hero-bg);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 44px 24px clamp(66px, 7.5vw, 100px);
  min-height: clamp(360px, 44vh, 460px);
  display: flex; align-items: center;
}
.hero-copy { max-width: 560px; display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--navy);
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.75rem; padding: 5px 14px;
  border-radius: var(--radius-pill); letter-spacing: 0.02em;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero-copy h1 { font-size: clamp(1.8rem, 3.3vw, 2.55rem); letter-spacing: -0.015em; text-wrap: balance; }
.hero-copy h1 em { color: var(--coral-dark); font-style: italic; }
.hero-sub { color: var(--teal-dark); font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1rem; }
.hero-copy > p:not(.hero-sub) { color: var(--ink-soft-hero); font-size: 0.97rem; max-width: 48ch; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 3px; }
.hero-shop-age { margin-top: 4px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.hero-shop-age-label {
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-soft-hero);
}
.hero-shop-age-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.age-chip-mini {
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.83rem; padding: 6px 14px;
  border-radius: var(--radius-pill); background: var(--white); border: 2px solid var(--navy); color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.age-chip-mini:hover { background: var(--sun); color: var(--navy); }

.hero-media { position: absolute; inset: 0; z-index: 0;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 26%, rgba(0,0,0,0.11) 42%, rgba(0,0,0,0.34) 57%, rgba(0,0,0,0.76) 73%, #000 87%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 26%, rgba(0,0,0,0.11) 42%, rgba(0,0,0,0.34) 57%, rgba(0,0,0,0.76) 73%, #000 87%);
}
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 100% 34%;
  opacity: 0; animation: heroFade 17.5s linear infinite;
}
.hero-media img:nth-child(1) { animation-delay: -14s; }
.hero-media img:nth-child(2) { animation-delay: -7s; }
.hero-media img:nth-child(3) { animation-delay: -3.5s; }
.hero-media img:nth-child(4) { animation-delay: -10.5s; }
.hero-media img:nth-child(5) { animation-delay: 0s; }
@keyframes heroFade { 0% { opacity: 0.92; } 16% { opacity: 0.92; } 19.5% { opacity: 0; } 96.5% { opacity: 0; } 100% { opacity: 0.92; } }

.hero-wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(44px, 5.4vw, 78px); z-index: 3; }

/* ---- Trust strip ---- */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 34px;
  padding: 26px 0 24px; border-bottom: 2px dashed rgba(23, 38, 92, 0.22);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.95rem; }
.trust-item .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ---- Product grid / cards ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius-md); border: 3px solid var(--navy);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); color: var(--navy); }
.card-media { position: relative; aspect-ratio: 1 / 1; background: var(--panel); border-bottom: 3px solid var(--navy); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-age-badge {
  position: absolute; top: 10px; left: 10px; background: var(--white); border: 2px solid var(--navy);
  border-radius: var(--radius-pill); padding: 3px 12px; font-family: "Baloo 2", sans-serif;
  font-weight: 700; font-size: 0.75rem; z-index: 2;
}
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-size: 0.76rem; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.card-body h3 { font-size: 1.28rem; }
.card-tagline { font-size: 0.92rem; color: var(--ink-soft); }
.card-price { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.18rem; margin-top: auto; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; }
.card-foot .card-price { margin-top: 0; }

/* ---- Shop filter bar ---- */
.filter-bar {
  background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md);
  padding: 20px 24px; margin-bottom: 20px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.filter-bar-ages { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.filter-bar-label { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.age-chip {
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.88rem; padding: 7px 16px;
  border-radius: var(--radius-pill); border: 2px solid var(--navy); background: var(--white); color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.age-chip.active, .age-chip:hover { background: var(--navy); color: var(--white); }
.result-label { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); }

.callout {
  background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md);
  padding: 22px 26px; margin-bottom: 36px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.callout h3 { font-size: 1.18rem; margin-bottom: 4px; }
.callout p { color: var(--ink-soft); font-size: 0.95rem; text-wrap: pretty; }

/* ---- Product detail ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb .current { color: var(--navy); font-weight: 700; }
.product-detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 50px; align-items: flex-start; }
.pd-media {
  position: relative; background: var(--panel); border: 3px solid var(--navy); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 14px 30px rgba(23, 38, 92, 0.14);
}
.pd-media img { width: 100%; display: block; }
.page-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid var(--navy); background: var(--white); color: var(--navy); font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(23, 38, 92, 0.16); z-index: 2;
}
.page-nav:hover { background: var(--sun); }
.page-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.page-prev { left: 14px; }
.page-next { right: 14px; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.thumb { width: 74px; height: 74px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; border: 3px solid rgba(23, 38, 92, 0.2); opacity: 0.72; }
.thumb.active { border-color: var(--navy); opacity: 1; }

.pd-info { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.pd-info h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -0.01em; }
.pd-tagline { font-size: 1.1rem; color: var(--ink-soft); }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pd-price { font-family: "Baloo 2", sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--coral); }
.pd-age { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--teal-dark); background: rgba(46, 196, 182, 0.14); padding: 4px 12px; border-radius: var(--radius-pill); }
.pd-desc { color: var(--ink-soft); text-wrap: pretty; }
.pd-info h3 { font-size: 1.28rem; margin-top: 12px; }
.tick-list { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.tick-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; }
.tick-list .tick {
  background: var(--teal); color: var(--white); width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 3px;
}
.qty-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 20px 0 0; }
.qty-control { display: flex; align-items: center; border: 3px solid var(--navy); border-radius: var(--radius-pill); overflow: hidden; }
.qty-control button {
  background: var(--panel); border: none; width: 46px; height: 46px; font-size: 1.2rem; font-weight: 700;
  cursor: pointer; color: var(--navy);
}
.qty-control button:hover { background: var(--sun); }
.qty-control span, .qty-control input {
  width: 50px; text-align: center; font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1rem;
  border: none; background: none; color: var(--navy);
}
.qty-control.small { border-width: 2px; }
.qty-control.small button { width: 40px; height: 40px; font-size: 1.1rem; }
.qty-control.small span { width: 42px; }

.notice {
  display: flex; flex-direction: column; gap: 10px; background: var(--white); border: 3px solid var(--navy);
  border-radius: var(--radius-md); padding: 18px 22px; margin-top: 20px; width: 100%;
}
.notice-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); }
.notice-row .tick { color: var(--teal-dark); font-weight: 700; flex-shrink: 0; }
.notice-row a { color: var(--coral-dark); font-weight: 700; text-decoration: underline; }

/* ---- Feature / how-it-works grid ---- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 28px; }
.feature-card { background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md); padding: 30px 26px; text-align: center; }
.feature-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--sun); border: 3px solid var(--navy);
  display: flex; align-items: center; justify-content: center; font-family: "Baloo 2", sans-serif; font-weight: 700;
  margin: 0 auto 16px;
}
.feature-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.98rem; text-wrap: pretty; }

/* ---- Dark CTA band ---- */
.dark-band { padding: 68px 0; background: var(--navy); text-align: center; }
.dark-band h2 { color: var(--on-dark); font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 14px; }
.dark-band p { color: rgba(238, 244, 255, 0.78); max-width: 520px; margin: 0 auto 24px; }

/* ---- Panel section (alternating bg) ---- */
.panel-section { padding: 72px 0; background: var(--panel); border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); }

/* ---- Cart ---- */
.cart-summary-line { color: var(--ink-soft); margin-bottom: 28px; }
.cart-layout { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.cart-lines { flex: 3 1 380px; min-width: 0; background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md); padding: 8px 24px; }
.cart-line { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; padding: 20px 0; border-bottom: 2px dashed rgba(23, 38, 92, 0.16); }
.cart-line:last-child { border-bottom: none; }
.cart-line img { width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid var(--navy); flex-shrink: 0; }
.cart-line-body { flex: 1 1 120px; min-width: 0; }
.cart-line-body h3 { font-size: 1.12rem; }
.cart-line-body h3 a:hover { color: var(--coral-dark); }
.cart-line-price { font-size: 0.88rem; color: var(--ink-soft); }
.cart-line-person { font-size: 0.82rem; color: var(--teal-dark); font-weight: 700; margin-top: 2px; }
.cart-line-remove {
  background: none; border: none; color: var(--coral-dark); font-weight: 700; cursor: pointer;
  font-size: 0.84rem; text-decoration: underline; padding: 4px 0; margin-top: 4px;
}
.cart-line-total { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.1rem; margin-left: auto; text-align: right; }

.summary-box { flex: 1 1 280px; background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md); padding: 26px; }
.summary-box h3 { font-size: 1.28rem; margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--ink-soft); gap: 14px; }
.summary-row.total {
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--navy);
  border-top: 2px solid var(--navy); margin-top: 10px; padding-top: 16px;
}
.summary-fineprint { font-size: 0.84rem; color: var(--ink-soft); margin-top: 8px; }
.summary-line-person { font-size: 0.8rem; color: var(--teal-dark); font-weight: 700; }

.empty-state { text-align: center; padding: 40px 20px 60px; }
.empty-state img { max-width: 170px; margin: 0 auto 22px; }
.empty-state h2 { font-size: 1.7rem; margin-bottom: 10px; }
.empty-state p { color: var(--ink-soft); margin-bottom: 24px; }

/* ---- Forms ---- */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; font-size: 1rem; padding: 12px 14px; border: 2px solid var(--navy); border-radius: var(--radius-sm);
  background: var(--white); color: var(--navy);
}
.field textarea { resize: vertical; }
.field-hint { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }
.field-full { grid-column: 1 / -1; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 16px; }

/* ---- Checkout ---- */
.checkout-form { flex: 3 1 380px; min-width: 0; background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md); padding: 26px; }
.delivery-options { display: flex; flex-direction: column; gap: 12px; }
.delivery-option {
  display: flex; align-items: flex-start; gap: 12px; border: 2px solid var(--navy); border-radius: 12px;
  padding: 14px 16px; cursor: pointer; font-weight: 400; font-size: 1rem; margin: 0;
}
.delivery-option input { width: auto; margin-top: 5px; accent-color: var(--coral); }
.delivery-option strong { font-family: "Baloo 2", sans-serif; }
.delivery-option span.sub { display: block; color: var(--ink-soft); font-size: 0.9rem; }
.test-mode-notice {
  background: var(--panel); border: 2px dashed var(--navy); border-radius: var(--radius-md);
  padding: 18px 22px; font-size: 0.92rem; margin-bottom: 28px; color: var(--ink-soft);
}
.test-mode-notice strong { color: var(--coral-dark); }

/* ---- Order success ---- */
.order-ref-box {
  background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md);
  padding: 22px 30px; display: inline-block; margin-bottom: 28px;
}
.order-ref-label { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.order-ref-value { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.6rem; }

/* ---- FAQ ---- */
.faq-item { border: 3px solid var(--navy); border-radius: var(--radius-md); margin-bottom: 14px; background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 24px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.05rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--navy);
}
.faq-q:hover { background: #F4F9FE; }
.faq-q .chev { flex-shrink: 0; color: var(--coral); }
.faq-a { padding: 0 24px 22px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--ink-soft); text-wrap: pretty; }
.faq-still-stuck { background: var(--panel); border: 2px dashed var(--navy); border-radius: var(--radius-md); padding: 20px 24px; margin-top: 26px; text-align: center; }
.faq-still-stuck a { color: var(--coral-dark); font-weight: 700; text-decoration: underline; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 40px; align-items: flex-start; }
.contact-col { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.contact-card h3 { font-size: 1.22rem; }
.contact-row { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); }
.contact-row svg { flex-shrink: 0; }
.contact-row a { color: var(--coral-dark); font-weight: 700; }
.contact-form-card { background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md); padding: 26px; }
.contact-form-card h3 { font-size: 1.28rem; margin-bottom: 18px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: var(--on-dark); padding: 38px 0 18px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 22px 28px; margin-bottom: 22px; }
.footer-grid img { height: 38px; width: auto; margin-bottom: 10px; }
.footer-grid p { color: rgba(238, 244, 255, 0.72); font-size: 0.86rem; text-wrap: pretty; }
.footer-grid h4 { color: var(--sun); margin-bottom: 10px; font-size: 0.9rem; letter-spacing: 0.02em; }
.footer-grid ul { display: flex; flex-direction: column; gap: 7px; font-size: 0.88rem; }
.footer-grid ul a { display: flex; align-items: center; gap: 8px; }
.footer-grid ul a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(238, 244, 255, 0.18); padding-top: 16px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: rgba(238, 244, 255, 0.55);
}

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(160%);
  display: flex; align-items: center; gap: 14px; background: var(--navy); color: var(--on-dark);
  padding: 12px 16px 12px 20px; border-radius: var(--radius-pill); font-family: "Baloo 2", sans-serif;
  font-weight: 700; font-size: 0.94rem; box-shadow: var(--shadow-pop); z-index: 200;
  transition: transform 0.28s ease; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast a { background: var(--coral); color: var(--white); padding: 7px 16px; border-radius: var(--radius-pill); font-size: 0.86rem; }
.toast a:hover { background: var(--coral-dark); color: var(--white); }

/* ---- Personalize modal ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(23, 38, 92, 0.45); z-index: 300;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border: 3px solid var(--navy); border-radius: var(--radius-md); padding: 28px;
  max-width: 460px; width: 100%; max-height: 86vh; overflow-y: auto;
  display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-pop);
}
.modal-box h3 { font-size: 1.28rem; }
.modal-box > p { color: var(--ink-soft); font-size: 0.92rem; }
.personalize-row { display: flex; flex-direction: column; gap: 12px; padding: 16px; border: 2px solid rgba(23, 38, 92, 0.22); border-radius: 14px; }
.personalize-row-label { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--teal-dark); }
.personalize-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-actions { display: flex; gap: 12px; margin-top: 6px; }
.modal-actions .btn { flex: 1; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none; width: 100%; order: 3; flex-direction: column; align-items: flex-start;
    gap: 10px; padding-top: 10px; border-top: 1px solid rgba(23, 38, 92, 0.12);
  }
  .nav-links.open { display: flex; }
}
