/* ==========================================================================
   SMART ASS GIFTS — Design System
   Built from the v3.0 brand guide. Loud orange, smart-ass teal, readable always.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* Core brand colors */
  --orange: #F86808;   /* Kickin' Orange — the hero, use it loud */
  --charcoal: #383838; /* Stubborn Charcoal — text & wordmark */
  --teal: #68C8C8;     /* Side-Eye Teal — accent & outlines */
  --cream: #F7F5F1;    /* Hay Cream — backgrounds & breathing room */

  /* Orange ramp */
  --orange-100: #FDE3D1;
  --orange-300: #FBA869;
  --orange-500: #F86808;
  --orange-700: #C5530A;
  --orange-900: #7C3406;

  /* Teal ramp */
  --teal-100: #DCF1F1;
  --teal-300: #9BDADA;
  --teal-500: #68C8C8;
  --teal-700: #3E9A9A;
  --teal-900: #245C5C;

  /* Charcoal ramp */
  --charcoal-100: #ECEBEA;
  --charcoal-300: #9A9A9A;
  --charcoal-500: #6B6B6B;
  --charcoal-700: #383838;
  --charcoal-900: #1C1C1C;

  --white: #FFFFFF;

  /* Type */
  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Figtree', -apple-system, 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.75rem, 6vw, 4.5rem);   /* ~64px cap */
  --fs-h1: clamp(2.25rem, 4.5vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);     /* ~40px */
  --fs-h3: 1.5rem;
  --fs-body: 1.125rem;                       /* 18px */
  --fs-small: 1rem;                          /* 16px min body */
  --fs-caption: 0.8125rem;                   /* 13px */

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-8: 3rem;     --sp-10: 4rem;
  --sp-12: 6rem;

  /* Radii */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(56,56,56,0.08);
  --shadow-md: 0 8px 24px rgba(56,56,56,0.12);
  --shadow-lg: 0 18px 50px rgba(56,56,56,0.18);
  --shadow-pop: 0 6px 0 var(--orange-900);

  /* Motion */
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 150ms;
  --t-med: 280ms;
  --t-slow: 400ms;

  --maxw: 1180px;
  --nav-h: 72px;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }

p { max-width: 65ch; }
a { color: var(--orange-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Visible focus ring on every control — 3px teal (brand rule) */
:focus-visible {
  outline: 3px solid var(--teal-700);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip link */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--charcoal); color: var(--white); padding: 10px 18px;
  border-radius: var(--r-sm); z-index: 200; transition: top var(--t-fast);
}
.skip-link:focus { top: 10px; text-decoration: none; }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: var(--sp-10); }
.section-sm { padding-block: var(--sp-8); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--sp-4); }
.eyebrow {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: var(--fs-caption); color: var(--orange-700);
}
.lead { font-size: 1.25rem; color: var(--charcoal-500); max-width: 60ch; }
.muted { color: var(--charcoal-500); }
.grid { display: grid; gap: var(--sp-5); }

.bg-cream { background: var(--cream); --scrim: rgba(247,245,241,0.92); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--cream); --scrim: rgba(56,56,56,0.9); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: var(--white); }
.bg-orange { background: var(--orange); color: var(--white); --scrim: rgba(248,104,8,0.9); }
.bg-orange h1, .bg-orange h2, .bg-orange h3 { color: var(--white); }

.confetti-bg { background-image: url('../assets/confetti.svg'); background-size: 160px; }

/* Soft scrim — a near-opaque wash of the section's own color that mutes the
   confetti behind text. Driven by --scrim (inherited from the surface class);
   inert unless a .scrim element is present. */
.scrim {
  background: var(--scrim, rgba(247,245,241,0.92));
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  min-height: 44px; padding: 0.7rem 1.4rem; border: none; border-radius: var(--r-pill);
  cursor: pointer; text-align: center; line-height: 1.1;
  transition: transform var(--t-fast) var(--ease-back),
              box-shadow var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent; color: var(--charcoal); box-shadow: inset 0 0 0 2px var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); transform: translateY(-3px); }

.btn-teal { background: var(--teal); color: var(--charcoal); }
.btn-teal:hover { background: var(--teal-700); color: var(--white); transform: translateY(-3px); }

.btn-ghost { background: transparent; color: var(--charcoal); min-height: 40px; padding: 0.4rem 0.8rem; }
.btn-ghost:hover { background: var(--charcoal-100); }

.btn-on-dark { background: var(--cream); color: var(--charcoal); }
.btn-on-dark:hover { background: var(--white); transform: translateY(-3px); }

.btn[disabled], .btn.is-soldout {
  background: var(--charcoal-100); color: var(--charcoal-300); cursor: not-allowed;
  box-shadow: none; transform: none;
}
.btn-lg { font-size: 1.25rem; padding: 0.9rem 1.9rem; }
.btn-block { width: 100%; }

/* ---- Nav / header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--cream);
  border-bottom: 2px solid var(--charcoal-100);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: var(--sp-5);
}
.brand-lock { display: flex; align-items: center; gap: var(--sp-3); }
.brand-lock img { width: 48px; height: 48px; }
.brand-lock .wordmark {
  font-family: var(--font-display); font-weight: 800; line-height: 0.95;
  font-size: 1.05rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.02em;
}
.brand-lock:hover { text-decoration: none; }
.brand-lock .wordmark span { color: var(--orange-700); }

.nav-links { display: flex; align-items: center; gap: var(--sp-2); }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; color: var(--charcoal);
  padding: 0.5rem 0.85rem; border-radius: var(--r-pill); font-size: 1.0625rem;
}
.nav-links a:hover { background: var(--orange-100); color: var(--orange-900); text-decoration: none; }
.nav-links a.is-active { background: var(--charcoal); color: var(--cream); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-2); }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--charcoal); color: var(--white); border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  min-height: 44px; padding: 0.5rem 1rem; border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease-back), background var(--t-fast);
}
.cart-btn:hover { background: var(--orange); transform: translateY(-2px); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px;
  background: var(--teal); color: var(--charcoal); border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 800; line-height: 1;
}
.cart-count[data-empty="true"] { display: none; }

.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer; padding: 8px;
  color: var(--charcoal); min-height: 44px; min-width: 44px;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---- Free shipping bar -------------------------------------------------- */
.shipbar {
  background: var(--teal); color: var(--charcoal); text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 0.5rem var(--sp-4);
}

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--orange); color: var(--white); --scrim: rgba(248,104,8,0.9); }
.hero .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-6); align-items: center;
  padding-block: var(--sp-10);
}
.hero h1 { color: var(--white); font-size: var(--fs-hero); }
.hero .lead { color: var(--cream); font-size: 1.35rem; max-width: 40ch; }
.hero-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-5); }
.hero-art { display: grid; place-items: center; }
.hero-art img { width: min(420px, 100%); filter: drop-shadow(0 24px 40px rgba(0,0,0,0.28)); }
.hero-badge-float {
  position: absolute; top: 8%; right: 6%; width: 120px; opacity: 0.9;
  animation: spin-slow 26s linear infinite;
}

/* ---- Badge strip / creed ------------------------------------------------ */
.creed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-5); }
.creed-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.creed-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--orange); flex: none; line-height: 1;
}

/* ---- Product card (UI kit §10) ------------------------------------------ */
.product-grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.product-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 2px solid var(--charcoal-100);
  transition: transform var(--t-med) var(--ease-back), box-shadow var(--t-med) var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Cream image well — typographic product mockup */
.image-well {
  position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center;
  text-align: center; padding: var(--sp-5); overflow: hidden;
  background: var(--cream); --scrim: rgba(247,245,241,0.92);
}
.image-well .well-punchline {
  font-family: var(--font-display); font-weight: 800; line-height: 1.0;
  font-size: 1.45rem; color: var(--charcoal); position: relative; z-index: 2;
  text-wrap: balance;
}
.image-well .well-type-icon {
  position: absolute; bottom: 10px; right: 12px; width: 34px; height: 34px;
  color: var(--charcoal); opacity: 0.55; z-index: 2;
}
.image-well.theme-orange { background: var(--orange); --scrim: rgba(248,104,8,0.9); }
.image-well.theme-orange .well-punchline { color: var(--white); }
.image-well.theme-orange .well-type-icon { color: var(--white); }
.image-well.theme-teal { background: var(--teal-100); --scrim: rgba(220,241,241,0.92); }
.image-well.theme-charcoal { background: var(--charcoal); --scrim: rgba(56,56,56,0.9); }
.image-well.theme-charcoal .well-punchline { color: var(--white); }
.image-well.theme-charcoal .well-type-icon { color: var(--cream); }

/* On confetti wells (PDP), give the punchline a soft scrim chip so it reads cleanly */
.image-well.confetti-bg .well-punchline {
  background: var(--scrim); padding: 0.35em 0.6em; border-radius: var(--r-md);
}

/* Real Printify product photo (replaces the typographic well when present) */
.image-well.has-photo { padding: 0; background: var(--white); }
.image-well .product-photo { width: 100%; height: 100%; object-fit: cover; }
.cart-line-thumb.has-photo { padding: 0; }
.cart-line-thumb.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-sm); }

.product-body { display: flex; flex-direction: column; gap: var(--sp-2); padding: var(--sp-4); flex: 1; }
.product-collection { font-size: var(--fs-caption); text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-900); font-weight: 700; }
.product-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--charcoal); }
.product-title a { color: inherit; }
.product-title a:hover { color: var(--orange-700); text-decoration: none; }
.product-price { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--orange-700); }
.product-price .was { color: var(--charcoal-300); text-decoration: line-through; font-size: 1rem; margin-left: var(--sp-2); font-weight: 600; }
.product-card .btn { margin-top: auto; }

/* ---- Badges / tags ------------------------------------------------------ */
.tag {
  display: inline-block; font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem;
  padding: 0.28rem 0.6rem; border-radius: var(--r-pill); line-height: 1;
}
.tag-new { background: var(--teal); color: var(--charcoal); }
.tag-sale { background: var(--orange); color: var(--white); }
.tag-bestseller { background: var(--charcoal); color: var(--cream); }
.tag-limited { background: var(--orange-100); color: var(--orange-900); box-shadow: inset 0 0 0 2px var(--orange-700); }
.tag-soldout { background: var(--charcoal-100); color: var(--charcoal-500); }
.image-well .tag { position: absolute; top: 10px; left: 10px; z-index: 3; }

/* ---- Forms -------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--charcoal); }
.input, .textarea, select.input {
  font-family: var(--font-body); font-size: 1.0625rem; color: var(--charcoal);
  background: var(--white); border: 2px solid var(--charcoal-300); border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem; min-height: 44px; width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.input::placeholder, .textarea::placeholder { color: var(--charcoal-300); }
.input:focus, .textarea:focus {
  outline: none; border-color: var(--teal-700);
  box-shadow: 0 0 0 3px var(--teal-300);
}
.textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.checkrow { display: flex; align-items: center; gap: var(--sp-3); cursor: pointer; }
.checkrow input[type="checkbox"] {
  width: 22px; height: 22px; accent-color: var(--orange); cursor: pointer; flex: none;
}
.form-inline { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.form-inline .input { flex: 1; min-width: 200px; }

/* ---- Alerts / toasts ---------------------------------------------------- */
.alert {
  display: flex; align-items: flex-start; gap: var(--sp-3); padding: var(--sp-4);
  border-radius: var(--r-md); border: 2px solid; font-weight: 500;
}
.alert .alert-icon { flex: none; width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: var(--r-pill); font-weight: 800; }
.alert-success { background: var(--teal-100); border-color: var(--teal-700); color: var(--charcoal); }
.alert-success .alert-icon { background: var(--teal-700); color: var(--white); }
.alert-warn { background: var(--orange-100); border-color: var(--orange-700); color: var(--charcoal); }
.alert-warn .alert-icon { background: var(--orange); color: var(--white); }

.toast-wrap {
  position: fixed; bottom: var(--sp-5); right: var(--sp-5); z-index: 300;
  display: flex; flex-direction: column; gap: var(--sp-3); max-width: 340px;
}
.toast {
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--charcoal); color: var(--white); padding: 0.85rem 1.1rem;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  animation: toast-in var(--t-slow) var(--ease-back);
}
.toast.toast-warn { background: var(--orange-700); }
.toast .toast-dot { width: 24px; height: 24px; flex: none; display: grid; place-items: center;
  background: var(--teal); color: var(--charcoal); border-radius: var(--r-pill); font-weight: 800; }
.toast.toast-warn .toast-dot { background: var(--white); color: var(--orange-700); }

/* ---- Cart drawer -------------------------------------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(28,28,28,0.5); z-index: 250;
  opacity: 0; visibility: hidden; transition: opacity var(--t-med);
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--cream); z-index: 260; display: flex; flex-direction: column;
  transform: translateX(110%); transition: transform var(--t-med) var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-5); border-bottom: 2px solid var(--charcoal-100); background: var(--white);
}
.drawer-head h2 { font-size: 1.4rem; }
.drawer-close {
  background: transparent; border: none; cursor: pointer; color: var(--charcoal);
  min-height: 44px; min-width: 44px; border-radius: var(--r-pill);
}
.drawer-close:hover { background: var(--charcoal-100); }
.drawer-close svg { width: 24px; height: 24px; }
.drawer-body { flex: 1; overflow-y: auto; padding: var(--sp-4) var(--sp-5); }
.drawer-foot { border-top: 2px solid var(--charcoal-100); padding: var(--sp-5); background: var(--white); }

.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: 1px solid var(--charcoal-100); }
.cart-line-thumb { width: 64px; height: 64px; border-radius: var(--r-sm); display: grid; place-items: center; text-align: center; background: var(--cream); font-family: var(--font-display); font-weight: 800; font-size: 0.6rem; color: var(--charcoal); padding: 4px; overflow: hidden; }
.cart-line-thumb.theme-orange { background: var(--orange); color: #fff; }
.cart-line-thumb.theme-teal { background: var(--teal-100); }
.cart-line-thumb.theme-charcoal { background: var(--charcoal); color: var(--cream); }
.cart-line-info { display: flex; flex-direction: column; gap: var(--sp-2); }
.cart-line-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.1; }
.cart-line-price { color: var(--orange-700); font-weight: 700; font-family: var(--font-display); }
.cart-line-remove { background: none; border: none; color: var(--charcoal-500); cursor: pointer; font-size: 0.85rem; text-align: left; padding: 0; text-decoration: underline; }
.cart-line-remove:hover { color: var(--orange-700); }

.qty {
  display: inline-flex; align-items: center; border: 2px solid var(--charcoal-300);
  border-radius: var(--r-pill); overflow: hidden; height: 38px;
}
.qty button {
  width: 36px; height: 100%; background: var(--white); border: none; cursor: pointer;
  font-size: 1.2rem; font-weight: 700; color: var(--charcoal); display: grid; place-items: center;
}
.qty button:hover { background: var(--orange-100); }
.qty span { min-width: 34px; text-align: center; font-weight: 700; font-family: var(--font-display); }

.ship-progress { margin-bottom: var(--sp-4); }
.ship-progress .bar { height: 10px; background: var(--charcoal-100); border-radius: var(--r-pill); overflow: hidden; margin-top: var(--sp-2); }
.ship-progress .bar > i { display: block; height: 100%; background: var(--teal); border-radius: var(--r-pill); transition: width var(--t-med) var(--ease-out); }
.ship-progress .ship-msg { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }

.cart-totals { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.cart-totals .row { display: flex; justify-content: space-between; font-size: 1rem; }
.cart-totals .row.total { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; border-top: 2px solid var(--charcoal-100); padding-top: var(--sp-3); }
.cart-totals .row.total .amt { color: var(--orange-700); }

.cart-empty { text-align: center; padding: var(--sp-8) var(--sp-4); }
.cart-empty img { width: 140px; margin: 0 auto var(--sp-4); }
.cart-empty h3 { margin-bottom: var(--sp-2); }

.cart-extras { display: flex; flex-direction: column; gap: var(--sp-3); margin: var(--sp-4) 0; padding: var(--sp-4); background: var(--cream); border-radius: var(--r-md); border: 2px dashed var(--charcoal-100); }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: var(--cream); padding-block: var(--sp-8) var(--sp-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: var(--sp-6); }
.site-footer h4 { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; margin-bottom: var(--sp-3); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-links a { color: var(--charcoal-300); }
.footer-links a:hover { color: var(--teal); text-decoration: none; }
.footer-brand img { width: 64px; margin-bottom: var(--sp-3); }
.footer-brand p { color: var(--charcoal-300); font-size: 1rem; }
.footer-legal { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }
.footer-legal a { color: var(--charcoal-300); font-size: 0.9rem; }
.footer-legal a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--charcoal-500); margin-top: var(--sp-4); padding-top: var(--sp-4); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3); color: var(--charcoal-300); font-size: 0.9rem; }
.footer-bottom a { color: var(--charcoal-300); }
.social-row { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }
.social-row a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--charcoal-500); color: var(--cream); transition: background var(--t-fast), transform var(--t-fast) var(--ease-back); }
.social-row a:hover { background: var(--orange); transform: translateY(-2px); }
.social-row svg { width: 20px; height: 20px; }

/* Share row (product page) */
.share-row { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.share-soc { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--charcoal-100); color: var(--charcoal); transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast) var(--ease-back); }
.share-soc:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.share-soc svg { width: 20px; height: 20px; }

/* ---- Stars / ratings ---------------------------------------------------- */
.stars { position: relative; display: inline-block; font-size: 1rem; line-height: 1; letter-spacing: 2px; vertical-align: middle; }
.stars-bg { color: var(--charcoal-100); }
.stars-fg { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; color: var(--orange); }
.stars-count { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--charcoal-500); letter-spacing: 0; margin-left: 4px; }
.card-stars { margin-top: -2px; }
.pdp-rating { display: inline-block; text-decoration: none; }
.pdp-rating:hover { text-decoration: none; }

/* ---- Trust strip -------------------------------------------------------- */
.trust-strip { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); align-items: center; padding: var(--sp-3) 0; border-top: 1px solid var(--charcoal-100); border-bottom: 1px solid var(--charcoal-100); }
.trust-item { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--charcoal-700); }
.trust-item svg { width: 18px; height: 18px; color: var(--teal-700); }

/* ---- Reviews ------------------------------------------------------------ */
.reviews { margin-top: var(--sp-8); }
.reviews-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.reviews-head h2 { margin: 0; }
.reviews-agg { display: flex; align-items: center; gap: var(--sp-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--sp-4); margin-bottom: var(--sp-5); }
.review-card { background: var(--white); border: 2px solid var(--charcoal-100); border-radius: var(--r-md); padding: var(--sp-4); }
.review-head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); margin-bottom: var(--sp-2); }
.review-author { font-family: var(--font-display); font-weight: 700; }
.review-title { font-size: 1.05rem; margin: 0 0 var(--sp-2); }
.review-body { color: var(--charcoal-700); margin: 0 0 var(--sp-3); }
.review-date { font-size: 0.8rem; color: var(--charcoal-300); font-weight: 600; }

/* ---- Modal + size guide ------------------------------------------------ */
.modal-overlay { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; background: rgba(20,20,20,0.6); padding: var(--sp-5); opacity: 0; transition: opacity 0.2s ease; }
.modal-overlay.is-in { opacity: 1; }
.modal { background: var(--white); border-radius: var(--r-lg); max-width: 520px; width: 100%; max-height: 86vh; overflow: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--charcoal-100); position: sticky; top: 0; background: var(--white); }
.modal-head h3 { margin: 0; }
.modal-close { width: 38px; height: 38px; display: grid; place-items: center; border: none; background: transparent; border-radius: 50%; cursor: pointer; color: var(--charcoal-500); }
.modal-close:hover { background: var(--cream); color: var(--orange); }
.modal-body { padding: var(--sp-5); }
.size-guide-link { background: none; border: none; color: var(--orange); font-weight: 700; font-size: 0.85rem; cursor: pointer; margin-left: var(--sp-3); font-family: var(--font-body); }
.size-guide-link:hover { text-decoration: underline; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th, .size-table td { text-align: left; padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--charcoal-100); }
.size-table th { font-family: var(--font-display); }
.size-note { margin-top: var(--sp-3); font-size: 0.85rem; }
@media (prefers-reduced-motion: reduce) { .modal-overlay { transition: none; } }

/* ---- Cookie consent ---------------------------------------------------- */
.cookie-banner { position: fixed; left: 50%; bottom: var(--sp-4); transform: translate(-50%, 150%); z-index: 200; width: min(680px, calc(100vw - 2rem)); display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3) var(--sp-4); background: var(--charcoal-900); color: #fff; border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); box-shadow: 0 12px 40px rgba(0,0,0,0.25); transition: transform 0.3s ease; }
.cookie-banner.is-in { transform: translate(-50%, 0); }
.cookie-text { margin: 0; flex: 1 1 280px; font-size: 0.92rem; }
.cookie-text a { color: var(--orange); font-weight: 700; }
.cookie-actions { display: flex; gap: var(--sp-2); flex-shrink: 0; }
.cookie-banner .btn-ghost { color: #fff; }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: none; } }

/* ---- Homepage "today's holiday" teaser --------------------------------- */
.hero-holiday { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--sp-4); padding: 0.55rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.14); color: var(--cream); font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; text-decoration: none; backdrop-filter: blur(2px); transition: background 0.15s, transform 0.1s; }
.hero-holiday:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); text-decoration: none; }
.hero-holiday strong { color: #fff; }

/* ---- Petty Holidays calendar ------------------------------------------- */
.cal-today-banner { display: inline-block; margin-top: var(--sp-3); padding: 0.7rem 1.1rem; border: 2px solid var(--orange); background: var(--white); border-radius: 999px; font-family: var(--font-display); font-weight: 700; cursor: pointer; transition: transform 0.1s, background 0.15s; }
.cal-today-banner:hover { background: var(--cream); transform: translateY(-2px); }
.cal-controls { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.cal-title { margin: 0; text-align: center; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: var(--sp-2); }
.cal-head { margin-bottom: var(--sp-2); gap: var(--sp-2); }
.cal-wd { text-align: center; font-family: var(--font-display); font-weight: 700; color: var(--charcoal-300); font-size: 0.85rem; padding: 0.3rem 0; }
.cal-cell { position: relative; min-height: 92px; border: 1.5px solid var(--charcoal-100); border-radius: var(--r-sm); padding: 0.4rem; background: var(--white); text-align: left; display: flex; flex-direction: column; gap: 2px; }
.cal-cell.is-empty { border: none; background: transparent; }
.cal-num { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--charcoal-500); }
.cal-cell.has-holiday { cursor: pointer; background: var(--cream); border-color: var(--orange-100); transition: transform 0.1s, border-color 0.15s, box-shadow 0.15s; font: inherit; }
.cal-cell.has-holiday:hover { transform: translateY(-2px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.cal-cell.has-holiday .cal-num { color: var(--orange-900); }
.cal-emoji { font-size: 1.5rem; line-height: 1; }
.cal-name { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; line-height: 1.15; color: var(--charcoal-700); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cal-cell.is-today { outline: 3px solid var(--teal-700); outline-offset: 1px; }
.cal-modal-blurb { font-size: 1.05rem; margin-bottom: var(--sp-4); }
.cal-modal-emoji { font-size: 1.3rem; }
.cal-upcoming { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--sp-3); margin-top: var(--sp-4); }
.cal-up-item { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; padding: var(--sp-3); border: 2px solid var(--charcoal-100); border-radius: var(--r-md); background: var(--white); cursor: pointer; text-align: left; transition: transform 0.1s, border-color 0.15s; }
.cal-up-item:hover { transform: translateY(-2px); border-color: var(--orange); }
.cal-up-date { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: 0.9rem; }
.cal-up-emoji { font-size: 1.5rem; }
.cal-up-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 600px) {
  .cal-cell { min-height: 58px; padding: 0.25rem; }
  .cal-emoji { font-size: 1.15rem; }
  .cal-name { display: none; }
  .cal-grid { gap: 4px; }
}

/* ---- Gift Finder quiz -------------------------------------------------- */
.gift-finder { min-height: 360px; }
.gf-progress { height: 8px; background: var(--charcoal-100); border-radius: 999px; overflow: hidden; margin-bottom: var(--sp-6); }
.gf-progress i { display: block; height: 100%; background: var(--orange); border-radius: 999px; transition: width 0.35s ease; }
.gf-step { text-align: center; animation: gf-in 0.3s ease both; }
.gf-step h2 { margin: var(--sp-2) 0 var(--sp-5); }
@keyframes gf-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.gf-options { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.gf-option { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-4); border: 2px solid var(--charcoal-100); background: var(--white); border-radius: var(--r-md); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-align: left; cursor: pointer; transition: border-color 0.15s, transform 0.1s, background 0.15s; }
.gf-option:hover { border-color: var(--orange); background: var(--cream); transform: translateY(-2px); }
.gf-emoji { font-size: 1.6rem; line-height: 1; }
.gf-email .form-inline { justify-content: center; margin: var(--sp-4) 0 var(--sp-3); }
.gf-results .product-grid { margin: var(--sp-5) 0; }
.gf-actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) { .gf-options { grid-template-columns: 1fr; } }

/* ---- Header search + search page --------------------------------------- */
.icon-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border: none; background: transparent; color: var(--charcoal-900); border-radius: var(--r-sm); cursor: pointer; text-decoration: none; }
.icon-btn:hover { background: var(--cream); color: var(--orange); }
.icon-btn svg { width: 22px; height: 22px; }
.search-bar { max-width: 560px; }
.search-bar .input { font-size: 1.1rem; padding: 0.9rem 1.1rem; }
.search-suggest { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-2); }

/* ---- Wishlist ---------------------------------------------------------- */
.product-card { position: relative; }
.wish-btn { position: absolute; top: var(--sp-3); right: var(--sp-3); z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; border: none; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--charcoal-500); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.1s, color 0.15s; }
.wish-btn svg { width: 20px; height: 20px; }
.wish-btn:hover { color: var(--orange); transform: scale(1.08); }
.wish-btn.is-wished { color: var(--orange); }
.wish-btn.is-wished svg { fill: var(--orange); }
.wish-link { position: relative; }
.wish-count { position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 0.68rem; font-weight: 700; display: grid; place-items: center; line-height: 1; }
.wish-count[data-empty="true"] { display: none; }
.pdp-wish.is-wished { color: var(--orange); }
.pdp-wish.is-wished svg { fill: var(--orange); }
.pdp-wish svg { width: 18px; height: 18px; }

/* ---- Shop toolbar (sort/filter) ---------------------------------------- */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; justify-content: space-between; margin: var(--sp-4) 0; }
.shop-toolbar-group { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.select { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; padding: 0.6rem 2rem 0.6rem 0.9rem; border: 2px solid var(--charcoal-100); border-radius: var(--r-sm); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23383838' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.7rem center; -webkit-appearance: none; appearance: none; cursor: pointer; }
.select:focus-visible { outline: 3px solid var(--teal-700); outline-offset: 2px; }
.shop-instock { margin: 0; }
.shop-empty { text-align: center; padding: var(--sp-6) 0; }
.linkbtn { background: none; border: none; color: var(--orange); font-weight: 700; cursor: pointer; text-decoration: underline; font-size: inherit; font-family: inherit; }

/* ---- PDP image gallery ------------------------------------------------- */
.gallery-main { position: relative; }
.gallery-main .product-photo { cursor: zoom-in; }
.gallery-zoom { position: absolute; top: var(--sp-3); right: var(--sp-3); z-index: 2; width: 40px; height: 40px; display: grid; place-items: center; border: none; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--charcoal-900); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.gallery-zoom:hover { background: #fff; color: var(--orange); }
.gallery-zoom svg { width: 20px; height: 20px; }
.gallery-thumbs { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); flex-wrap: wrap; }
.gallery-thumb { width: 64px; height: 64px; padding: 0; border: 2px solid var(--charcoal-100); border-radius: var(--r-sm); overflow: hidden; cursor: pointer; background: var(--white); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.is-active { border-color: var(--orange); }
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; background: rgba(20,20,20,0.85); padding: var(--sp-5); opacity: 0; transition: opacity 0.2s ease; cursor: zoom-out; }
.lightbox.is-in { opacity: 1; }
.lightbox img { max-width: min(900px, 92vw); max-height: 88vh; border-radius: var(--r-md); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox-close { position: absolute; top: var(--sp-4); right: var(--sp-4); width: 44px; height: 44px; display: grid; place-items: center; border: none; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; cursor: pointer; }
.lightbox-close svg { width: 24px; height: 24px; }
@media (prefers-reduced-motion: reduce) { .lightbox { transition: none; } }

/* ---- PDP variant options ----------------------------------------------- */
.pdp-options { display: flex; flex-direction: column; gap: var(--sp-4); margin: var(--sp-4) 0; }
.pdp-option-label { display: block; font-family: var(--font-display); font-weight: 700; margin-bottom: var(--sp-2); }
.pdp-option-label strong { color: var(--charcoal-500); font-weight: 600; }
.swatch-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.swatch { min-width: 52px; padding: 0.55rem 0.9rem; border: 2px solid var(--charcoal-100); background: var(--white); border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 700; cursor: pointer; transition: border-color 0.15s, transform 0.1s; }
.swatch:hover { border-color: var(--charcoal-500); }
.swatch.is-selected { border-color: var(--orange); background: var(--cream); color: var(--charcoal-900); }
.swatch:active { transform: scale(0.96); }
.pdp-option.needs-pick .pdp-option-label strong { color: var(--orange); }
.pdp-option.needs-pick .swatch-row { outline: 2px dashed var(--orange); outline-offset: 4px; border-radius: var(--r-sm); }
.cart-line-variant { font-size: 0.85rem; color: var(--charcoal-500); font-weight: 600; }

/* ---- Cart page --------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: var(--sp-6); align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: var(--sp-2); }
.cart-summary { position: sticky; top: var(--sp-5); background: var(--white); border: 2px solid var(--charcoal-100); border-radius: var(--r-md); padding: var(--sp-5); }
.cart-summary h2 { margin: 0 0 var(--sp-4); }
.cart-items .cart-line { border-bottom: 1px solid var(--charcoal-100); padding-bottom: var(--sp-3); }
@media (max-width: 760px) { .cart-layout { grid-template-columns: 1fr; } .cart-summary { position: static; } }

/* ---- Promo + cross-sell ------------------------------------------------ */
.promo { margin: var(--sp-3) 0; }
.promo-row { display: flex; gap: var(--sp-2); }
.promo-row .input { flex: 1; min-width: 0; }
.promo-applied { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); background: var(--cream); border: 1px dashed var(--teal-700); border-radius: var(--r-sm); padding: var(--sp-2) var(--sp-3); font-size: 0.9rem; }
.row-discount { color: var(--teal-700); font-weight: 700; }
.cross-sell { margin-top: var(--sp-8); }
.cross-sell h2 { margin-bottom: var(--sp-4); }

/* ---- Checkout ---------------------------------------------------------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: var(--sp-6); align-items: start; }
.checkout-fields { display: flex; flex-direction: column; gap: var(--sp-5); }
.checkout-step { border: 2px solid var(--charcoal-100); border-radius: var(--r-md); padding: var(--sp-5); margin: 0; }
.checkout-step legend { display: flex; align-items: center; gap: var(--sp-2); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; padding: 0 var(--sp-2); }
.step-num { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 0.85rem; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-3); }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.demo-note { background: var(--cream); border: 1px dashed var(--charcoal-300); border-radius: var(--r-sm); padding: var(--sp-3); font-size: 0.9rem; color: var(--charcoal-700); margin-bottom: var(--sp-3); }
.checkout-summary { position: sticky; top: var(--sp-5); background: var(--white); border: 2px solid var(--charcoal-100); border-radius: var(--r-md); padding: var(--sp-5); }
.checkout-summary h2 { margin: 0 0 var(--sp-4); }
.osum-lines { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.osum-line { display: grid; grid-template-columns: auto 1fr auto; gap: var(--sp-2); align-items: baseline; font-size: 0.95rem; }
.osum-qty { color: var(--charcoal-500); font-weight: 700; }
.osum-variant { display: block; font-size: 0.82rem; color: var(--charcoal-500); }
.osum-price { font-weight: 700; }
@media (max-width: 760px) { .checkout-layout { grid-template-columns: 1fr; } .checkout-summary { position: static; order: -1; } .field-row { grid-template-columns: 1fr; } }

/* ---- Order confirmation ------------------------------------------------ */
.ty-card { max-width: 620px; margin: 0 auto; background: var(--white); border: 2px solid var(--charcoal-100); border-radius: var(--r-lg); padding: var(--sp-7) var(--sp-6); text-align: center; }
.ty-badge { font-size: 3rem; line-height: 1; margin-bottom: var(--sp-3); }
.ty-summary, .ty-ship { text-align: left; margin: var(--sp-5) 0; padding-top: var(--sp-4); border-top: 1px solid var(--charcoal-100); }
.ty-summary h2, .ty-ship h3 { margin: 0 0 var(--sp-3); }

/* ---- Legal / policy prose ---------------------------------------------- */
.legal { max-width: 760px; }
.legal .updated { color: var(--charcoal-300); font-weight: 600; font-size: 0.9rem; margin-bottom: var(--sp-5); }
.legal h2 { font-size: 1.4rem; margin: var(--sp-6) 0 var(--sp-3); }
.legal h3 { font-size: 1.1rem; margin: var(--sp-4) 0 var(--sp-2); }
.legal p { color: var(--charcoal-700); margin: 0 0 var(--sp-3); line-height: 1.7; }
.legal ul, .legal ol { color: var(--charcoal-700); padding-left: 1.3rem; margin: 0 0 var(--sp-4); line-height: 1.7; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--orange); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal code { background: var(--charcoal-100); padding: 0.1em 0.4em; border-radius: 6px; font-size: 0.9em; }

/* ---- Collection bands --------------------------------------------------- */
.band { padding-block: var(--sp-10); }
.band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
.band .kicker { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; font-size: 0.85rem; opacity: 0.8; }

/* ---- Page hero (interior) ----------------------------------------------- */
.page-hero { padding-block: var(--sp-8); text-align: center; }
.page-hero h1 { font-size: var(--fs-h1); }
.page-hero .lead { margin-inline: auto; }

/* ---- Filter chips ------------------------------------------------------- */
.chips { display: flex; gap: var(--sp-2); flex-wrap: wrap; justify-content: center; margin-bottom: var(--sp-6); }
.chip {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; cursor: pointer;
  background: var(--white); color: var(--charcoal); border: 2px solid var(--charcoal-300);
  padding: 0.5rem 1.1rem; border-radius: var(--r-pill); min-height: 44px;
  transition: all var(--t-fast) var(--ease-out);
}
.chip:hover { border-color: var(--orange); color: var(--orange-700); }
.chip.is-active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* ---- Product detail ----------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: start; }
.pdp .image-well { aspect-ratio: 1; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.pdp .image-well .well-punchline { font-size: 2.2rem; }
.pdp-info { display: flex; flex-direction: column; gap: var(--sp-4); }
.pdp-price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--orange-700); }
.pdp-buy { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; }
.pdp-meta { display: flex; gap: var(--sp-4); flex-wrap: wrap; color: var(--charcoal-500); font-size: 0.95rem; }
.pdp-meta .pill { display: inline-flex; align-items: center; gap: 6px; }
.pdp-meta .pill svg { width: 18px; height: 18px; }
.pdp-brand { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-900); }

/* Care guide (from the Printify listing) */
.care-guide { border: 2px solid var(--charcoal-100); border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); background: var(--cream); }
.care-guide summary { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; cursor: pointer; display: flex; align-items: center; gap: var(--sp-2); list-style: none; }
.care-guide summary::-webkit-details-marker { display: none; }
.care-guide summary svg { width: 20px; height: 20px; color: var(--teal-700); }
.care-guide ul { margin: var(--sp-3) 0 var(--sp-2); padding-left: 1.2rem; display: flex; flex-direction: column; gap: var(--sp-2); }
.care-guide li { list-style: disc; color: var(--charcoal-700); }

/* ---- FAQ accordion ------------------------------------------------------ */
.faq-item { border-bottom: 2px solid var(--charcoal-100); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--charcoal);
  padding: var(--sp-4) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
}
.faq-q:hover { color: var(--orange-700); }
.faq-q .faq-mark { flex: none; font-size: 1.6rem; color: var(--orange); transition: transform var(--t-fast); }
.faq-q[aria-expanded="true"] .faq-mark { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease-out); }
.faq-a > div { padding-bottom: var(--sp-4); }

/* ---- Quote / dusty-says ------------------------------------------------- */
.dusty-says {
  display: flex; gap: var(--sp-4); align-items: center; background: var(--teal-100);
  border-left: 6px solid var(--teal-700); border-radius: var(--r-md); padding: var(--sp-5);
}
.dusty-says img { width: 84px; flex: none; }
.dusty-says p { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: 0; }

/* ---- Do / Don't columns ------------------------------------------------- */
.dodont { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.do-col, .dont-col { padding: var(--sp-5); border-radius: var(--r-md); }
.do-col { background: var(--teal-100); border: 2px solid var(--teal-700); }
.dont-col { background: var(--orange-100); border: 2px solid var(--orange-700); }
.do-col h3, .dont-col h3 { margin-bottom: var(--sp-3); }
.do-col li, .dont-col li { padding: var(--sp-2) 0; border-bottom: 1px solid rgba(56,56,56,0.1); }
.do-col li:last-child, .dont-col li:last-child { border-bottom: none; }

/* ---- Newsletter band ---------------------------------------------------- */
.newsletter { text-align: center; }
.newsletter form { max-width: 480px; margin: var(--sp-5) auto 0; }

/* ---- Animations --------------------------------------------------------- */
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes pop-in { 0% { opacity: 0; transform: scale(0.6); } 70% { transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }

.animate-bob { animation: bob 3.5s ease-in-out infinite; }
.pop-in { animation: pop-in var(--t-slow) var(--ease-back) both; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { width: min(300px, 70%); }
  .band-inner { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .desktop-only { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links.is-open {
    display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: var(--cream);
    padding: var(--sp-4); gap: var(--sp-2); border-bottom: 2px solid var(--charcoal-100);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open a { padding: 0.85rem 1rem; }
  .dodont { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --fs-body: 1.0625rem; }
  .toast-wrap { left: var(--sp-4); right: var(--sp-4); max-width: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  /* Cookie banner: stack message + actions so buttons don't crush on small screens */
  .cookie-banner { left: var(--sp-3); right: var(--sp-3); transform: translateY(150%); width: auto; flex-direction: column; align-items: stretch; gap: var(--sp-3); }
  .cookie-banner.is-in { transform: translateY(0); }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
  /* Gift-finder focus target shouldn't show a blunt outline when moved programmatically */
  .gf-step:focus { outline: none; }
}
.gf-step:focus-visible { outline: none; }

/* ---- Cross-document View Transitions (Chromium) — app-like page morphs ---- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: 0.22s; }
::view-transition-new(root) { animation-duration: 0.22s; }

/* ---- Scroll reveal ------------------------------------------------------ */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].reveal-in { opacity: 1; transform: none; }

/* ---- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  @view-transition { navigation: none; }
}


/* SAG: remove nav list bullets */
.nav-links{list-style:none!important;margin:0;padding:0;}
.nav-links li{list-style:none!important;display:inline-flex!important;margin:0;}
.nav-links li::marker{content:""!important;}


/* SAG: footer badge sizing */
.footer-brand img,.footer-brand .footer-badge{width:64px!important;height:64px!important;max-width:64px!important;object-fit:contain!important;border-radius:0!important;}


/* SAG: footer menu list reset */
.footer-links,.footer-legal{list-style:none!important;margin:0;padding:0;}
.footer-links li,.footer-legal li{list-style:none!important;display:block;margin:0;}
.footer-legal li{display:inline-block;}
.footer-links li::marker,.footer-legal li::marker{content:""!important;}


/* SAG: faq empty-p cleanup */
.faq-item > p:empty,.faq-list > p:empty{display:none!important;margin:0!important;}


/* SAG: hide floating hero badge on mobile */
@media (max-width:768px){.hero-badge-float{display:none!important;}}
