/* =============================================================
   galutina — shared styles
   Design tokens + common component CSS. Page-specific styles
   live inline in each HTML <style> block. Keep this file
   component-first, mobile-first, token-driven.
   ============================================================= */

:root {
  /* Brand core */
  --color-primary:         #0b0b0b;
  --color-primary-soft:    #1a1a1a;
  --color-accent:          #f2a900;
  --color-accent-hover:    #d59200;
  --color-accent-soft:     #fff4d0;
  --color-accent-on-light: #a36e00;
  --color-bg:              #faf8f2;
  --color-bg-alt:          #ffffff;
  --color-heading:         #0b0b0b;
  --color-text:            #1a1a1a;
  --color-text-muted:      #6a6a6a;
  --color-border:          rgba(0,0,0,0.10);
  --color-ok:              #2e7d32;
  --color-err:             #b3261e;
  --color-on-dark:         #ffffff;
  --color-on-dark-muted:   #d7d7d7;
  --color-header-bg:       var(--color-primary);

  /* Fonts — Nunito self-hosted with system fallback */
  --font-heading: "Nunito", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body:    "Nunito", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --fw-regular: 400;
  --fw-medium:  600;
  --fw-bold:    700;
  --fw-black:   800;

  /* Fluid type scale */
  --step-1: clamp(1.25rem, 1.18rem + 0.36vw, 1.5rem);
  --step-2: clamp(1.5rem,  1.4rem  + 0.5vw,  2rem);
  --step-3: clamp(2rem,    1.8rem  + 1vw,    3rem);
  --step-4: clamp(2.75rem, 2.4rem  + 1.75vw, 4.5rem);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --radius:    10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow:    0 1px 2px rgba(0,0,0,.05), 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.06), 0 16px 40px rgba(0,0,0,.10);
}

/* Fonts — load lazily. Comment out @font-face block if /fonts/ is empty. */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/nunito-400.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/nunito-800.woff2") format("woff2");
}

/* -------------------------------------------------------------
   Reset
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--fw-black); color: var(--color-heading); margin: 0 0 .5em; letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { margin: 0 0 1em; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-primary); color: #fff; padding: .75rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: .5rem; top: .5rem; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* Utilities */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--color-accent-on-light);
}
.muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* -------------------------------------------------------------
   Announcement bar — shipping promo, sticky above header
   ------------------------------------------------------------- */
.announcement-bar {
  position: sticky; top: 0; z-index: 101;
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .5rem 1rem;
  font-weight: var(--fw-bold);
  font-size: .9rem;
  letter-spacing: .01em;
  line-height: 1.2;
}
.announcement-bar svg {
  width: 18px !important; height: 18px !important;
  flex: none; display: inline-block;
}
.announcement-bar + .site-header { top: 36px; }
@media (max-width: 480px) {
  .announcement-bar { font-size: .78rem; padding: .4rem .75rem; gap: .4rem; }
  .announcement-bar svg { width: 16px !important; height: 16px !important; }
  .announcement-bar + .site-header { top: 30px; }
}

/* -------------------------------------------------------------
   Header — light theme to let the real logo breathe
   ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-bg);
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: saturate(1.1);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
}
.site-header__brand {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--color-primary); text-decoration: none;
}
.site-header__brand-mark {
  height: 72px; width: auto; display: block; flex: none;
  /* wordmark has a swoosh descender — lift the mark so it optically centers on the text */
  margin-bottom: 18px;
}
.site-header__brand-word {
  height: 88px; width: auto; display: block; flex: none;
}
.brand-word-inline {
  height: .85em; width: auto; display: inline-block;
  vertical-align: -0.06em;
}
.product-title {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .35rem; margin: 0 0 .75rem;
}
.product-title__brand {
  height: clamp(3.5rem, 8vw, 5.5rem);
  width: auto; max-width: 100%;
  display: block; margin-left: -.25rem;
  object-fit: contain;
}
.product-title__sub {
  font-size: clamp(1rem, .95rem + .3vw, 1.35rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-muted);
  letter-spacing: .01em;
  text-transform: none;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .site-header__brand-word { height: 64px; }
  .site-header__brand-mark { height: 52px; margin-bottom: 12px; }
}
.site-nav {
  display: flex; align-items: center; gap: 1.25rem;
}
.site-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.25rem;
}
.site-nav__list a {
  color: var(--color-primary); text-decoration: none;
  font-weight: var(--fw-medium);
  font-size: .95rem;
}
.site-nav__list a:hover, .site-nav__list a[aria-current="page"] { color: var(--color-accent-on-light); }
.lang-switch {
  display: inline-flex; gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lang-switch a {
  color: var(--color-primary); text-decoration: none;
  padding: .3rem .7rem;
  font-weight: var(--fw-bold);
  opacity: .6;
}
.lang-switch a[aria-current="true"] { background: var(--color-accent); color: var(--color-primary); opacity: 1; }
.menu-toggle {
  display: none;
  background: transparent; border: 0; color: var(--color-primary);
  padding: .5rem; margin: 0;
}

@media (max-width: 800px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column; align-items: flex-start;
    padding: 1rem var(--gutter) 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav__list { flex-direction: column; width: 100%; gap: .75rem; }
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.site-footer {
  background: var(--color-primary);
  color: #d7d7d7;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  font-size: .95rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer__col h4 {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .8rem;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: #a7a7a7;
}
.site-footer__payments { display: inline-flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.site-footer__payments img { height: 48px; width: auto; display: block; border-radius: 5px; object-fit: contain; }
.site-footer__secure-note { font-size: .8rem; color: #8f8f8f; max-width: 52ch; }

@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--color-accent); color: var(--color-primary);
  padding: .95rem 1.75rem;
  border: 0; border-radius: var(--radius-pill);
  font-weight: var(--fw-black);
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .15s ease, transform .1s ease;
  min-height: 48px;
  box-shadow: 0 2px 0 rgba(0,0,0,.05);
}
.btn:hover { background: var(--color-accent-hover); }
.btn:active { transform: translateY(1px); }
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent; color: var(--color-primary);
  border: 2px solid var(--color-primary); box-shadow: none;
}
.btn--ghost:hover { background: var(--color-primary); color: #fff; }
.btn--ghost-light {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.8); box-shadow: none;
}
.btn--ghost-light:hover { background: #fff; color: var(--color-primary); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.1rem; min-height: 56px; }

/* -------------------------------------------------------------
   Trust strip
   ------------------------------------------------------------- */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
  padding: 1rem var(--gutter);
  background: var(--color-accent-soft);
  font-size: .9rem;
  color: var(--color-primary);
  text-align: center;
}
.trust-strip__item { display: inline-flex; align-items: center; gap: .4rem; }
.trust-strip__icon { width: 18px; height: 18px; color: var(--color-accent-on-light); flex: none; }

/* -------------------------------------------------------------
   Bundle picker
   ------------------------------------------------------------- */
.bundle-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 1.5rem 0;
}
.bundle-card {
  position: relative;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem .75rem 1rem;
  text-align: center;
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  font-family: var(--font-body);
  color: var(--color-primary);
}
.bundle-card:hover { border-color: var(--color-accent); }
.bundle-card[aria-pressed="true"] {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.bundle-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: var(--color-primary);
  padding: .25rem .6rem;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: var(--fw-black);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.bundle-ribbon--alt { background: var(--color-primary); color: var(--color-accent); }
.bundle-label { font-weight: var(--fw-bold); font-size: 1rem; }
.bundle-strike { color: var(--color-text-muted); text-decoration: line-through; font-size: .85rem; }
.bundle-price { font-size: 1.5rem; font-weight: var(--fw-black); color: var(--color-primary); }
.bundle-vat { color: var(--color-text-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; margin-top: -.15rem; }
.bundle-save { color: var(--color-ok); font-size: .8rem; font-weight: var(--fw-bold); }
.product-trust { display: flex; flex-wrap: wrap; gap: 1rem; font-weight: var(--fw-bold); color: var(--color-primary); }
.product-trust .tick { color: var(--color-ok); font-weight: var(--fw-black); margin-right: .2em; }
.bundle-unit { color: var(--color-accent-on-light); font-size: .85rem; font-weight: var(--fw-bold); }

/* Free-shipping eligibility badge on 3-pack / 6-pack cards */
.bundle-ship-badge {
  display: inline-block;
  margin-top: .4rem;
  padding: .15rem .55rem;
  font-size: .7rem;
  font-weight: var(--fw-bold);
  letter-spacing: .03em;
  color: var(--color-accent-on-light);
  background: var(--color-accent-soft);
  border-radius: var(--radius-pill);
}

/* Selected-state visual checkmark (mobile discoverability) */
.bundle-card[aria-pressed="true"]::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: var(--fw-black);
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  line-height: 1;
}

/* Hero CTA trust strip (desktop + mobile) */
.hero-cta-trust {
  margin: .75rem 0 0;
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.hero-cta-trust--on-dark {
  color: var(--color-on-dark-muted);
}

@media (max-width: 640px) {
  .bundle-picker { grid-template-columns: 1fr; }
  .bundle-ribbon { font-size: .65rem; }
}

/* -------------------------------------------------------------
   Forms
   ------------------------------------------------------------- */
.form-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-field label { font-weight: var(--fw-bold); font-size: .9rem; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  color: var(--color-text);
  min-height: 44px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--color-accent); outline-offset: 1px; border-color: var(--color-accent);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1rem;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-status {
  padding: .75rem 1rem; border-radius: var(--radius); margin-top: 1rem;
  font-size: .95rem;
}
.form-status--ok { background: #e8f5e9; color: var(--color-ok); }
.form-status--err { background: #fdecea; color: var(--color-err); }
.form-status[hidden] { display: none; }
.form-help { font-size: .85rem; color: var(--color-text-muted); }
.form-consent {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--color-text);
  margin: 0 0 1rem; line-height: 1.45;
}
.form-consent input[type="checkbox"] {
  margin-top: .25em; flex: none; width: 16px; height: 16px;
  accent-color: var(--color-accent);
}
.form-consent a { color: var(--color-accent-on-light); text-decoration: underline; }
.newsletter-form .form-consent { flex: 1 1 100%; order: 3; justify-content: center; font-size: .78rem; }

/* -------------------------------------------------------------
   Cards / generic sections
   ------------------------------------------------------------- */
.section { padding: clamp(3rem, 6vw, 6rem) 0; }
.section--accent { background: var(--color-accent-soft); }
.section--primary { background: var(--color-primary); color: #eee; }
.section--primary h1, .section--primary h2, .section--primary h3 { color: #fff; }

.press-quote {
  max-width: 780px; margin: 1.5rem auto 0; padding: 0 1rem;
  font-family: var(--font-heading); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  line-height: 1.5; font-style: italic; font-weight: var(--fw-medium);
  color: #fff; text-align: center; border: 0; quotes: none;
}
.press-quote em { color: var(--color-accent); font-style: italic; }
.press-quote cite {
  display: block; margin-top: 1rem; font-style: normal; font-weight: var(--fw-bold);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.three-col {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem);
}
@media (max-width: 800px) { .three-col { grid-template-columns: 1fr; } }

.four-col {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 800px) { .four-col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .four-col { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------
   Step-card image slots (product page science / usage, sobre, etc.)
   ------------------------------------------------------------- */
.step-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-bg);
  margin: -1.5rem -1.5rem 1rem;
  width: calc(100% + 3rem);
}
.step-img--square { aspect-ratio: 1 / 1; }
.page-banner {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 0 0 2rem;
  display: block;
  background: var(--color-bg-alt);
}

/* -------------------------------------------------------------
   Accordion / FAQ (uses <details>)
   ------------------------------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--color-accent-on-light);
  font-size: 1.5rem; font-weight: var(--fw-black);
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: .75rem; color: var(--color-text); }

/* -------------------------------------------------------------
   Compare table
   ------------------------------------------------------------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
  padding: .9rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th {
  background: var(--color-primary);
  color: #fff;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--color-ok); font-weight: var(--fw-black); }
.compare-table .no { color: var(--color-err); font-weight: var(--fw-black); }
.compare-table .galutina-col { background: var(--color-accent-soft); color: var(--color-primary); }
.compare-table thead th.galutina-col { background: var(--color-accent); color: var(--color-primary); padding-top: .55rem; padding-bottom: .55rem; }
.compare-table .galutina-col__brand { height: 38px; width: auto; display: inline-block; vertical-align: middle; }

/* -------------------------------------------------------------
   Cookie banner
   ------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 640px; margin: 0 auto;
  background: var(--color-primary); color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  font-size: .95rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn { padding: .6rem 1rem; min-height: 40px; font-size: .9rem; }

/* -------------------------------------------------------------
   Hero patterns
   ------------------------------------------------------------- */
.hero-full {
  position: relative; overflow: hidden;
  min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  background: var(--color-primary);
}
.hero-full::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.55));
  z-index: 1;
}
.hero-full picture, .hero-full img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-full__inner {
  position: relative; z-index: 2;
  padding: 6rem var(--gutter) 3rem;
  max-width: 900px;
}
.hero-full__tagline {
  font-size: var(--step-4);
  font-weight: var(--fw-black);
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  margin: 0 0 1rem;
  color: #fff;
}
.hero-full__eyebrow {
  letter-spacing: .2em;
  font-size: .8rem;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 1.5rem;
}
.hero-full__scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  z-index: 2; color: #fff; opacity: .7; font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   Product split hero
   ------------------------------------------------------------- */
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 4rem) 0;
  align-items: start;
}
@media (max-width: 800px) { .product-hero { grid-template-columns: 1fr; } }

.gallery { display: flex; flex-direction: column; gap: .5rem; }
.gallery__main {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem;
}
.gallery__thumb {
  aspect-ratio: 1 / 1; background: var(--color-bg-alt);
  border-radius: var(--radius); border: 2px solid transparent;
  padding: 0; overflow: hidden; cursor: pointer;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumb[aria-current="true"] { border-color: var(--color-accent); }

/* -------------------------------------------------------------
   UGC / image grid
   ------------------------------------------------------------- */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.image-grid img {
  aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 640px) {
  .image-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------------------------------------------------
   Legal draft banner
   ------------------------------------------------------------- */
.legal-banner {
  background: #fff4d0;
  border: 1px solid var(--color-accent);
  color: #7a5400;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: var(--fw-bold);
  margin-bottom: 2rem;
}
.legal-body { max-width: 70ch; margin: 0 auto; }
.legal-body h2 { margin-top: 2.5rem; }
.legal-body h3 { margin-top: 1.75rem; font-size: var(--step-1); }

/* -------------------------------------------------------------
   Sticky buy bar (product page)
   ------------------------------------------------------------- */
#sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--color-bg-alt);
  border-top: 2px solid var(--color-accent);
  transform: translateY(100%);
  transition: transform .25s ease;
  box-shadow: 0 -6px 24px rgba(0,0,0,.12);
}
#sticky-bar.sb-visible { transform: translateY(0); }
.sb-inner {
  max-width: var(--container); margin: 0 auto;
  padding: .6rem 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.sb-product { display: flex; align-items: center; gap: .6rem; flex: 1; min-width: 0; }
.sb-thumb { width: 44px; height: 44px; flex: none; border-radius: 6px; object-fit: contain; background: var(--color-bg); padding: 3px; }
.sb-name { font-weight: var(--fw-black); font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb-price { display: flex; align-items: baseline; gap: .4rem; flex: none; }
.sb-price-now { font-weight: var(--fw-black); font-size: 1.15rem; }
.sb-price-was { font-size: .8rem; color: var(--color-text-muted); text-decoration: line-through; }
.sb-price-was[hidden] { display: none; }
.sb-qty-group {
  display: inline-flex; align-items: stretch; flex: none;
  border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  overflow: hidden; background: var(--color-bg);
}
.sb-qty-btn {
  border: 0; background: transparent; color: var(--color-primary);
  width: 36px; height: 36px; font-size: 1.1rem; font-weight: var(--fw-black);
  cursor: pointer; line-height: 1;
}
.sb-qty-btn:hover { background: var(--color-bg-alt); }
.sb-qty-input {
  border: 0; background: transparent;
  width: 42px; text-align: center; font: inherit; font-weight: var(--fw-bold);
  color: var(--color-primary); appearance: textfield; -moz-appearance: textfield;
}
.sb-qty-input::-webkit-outer-spin-button,
.sb-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sb-btn {
  flex: none;
  background: var(--color-accent); color: var(--color-primary);
  border: 0; border-radius: var(--radius-pill);
  padding: .7rem 1.2rem;
  font-weight: var(--fw-black); cursor: pointer;
  min-height: 44px;
}
.sb-btn:hover { background: var(--color-accent-hover); }
@media (max-width: 640px) {
  .sb-product { display: none; }
  .sb-inner { justify-content: space-between; gap: .6rem; padding: .5rem .75rem; }
  .sb-qty-btn { width: 32px; height: 32px; }
  .sb-qty-input { width: 34px; }
}

/* -------------------------------------------------------------
   Bulk buy-box (distributor / bulk page)
   ------------------------------------------------------------- */
.bulk-hero {
  background: var(--color-primary); color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.bulk-hero h1 { color: #fff; margin-bottom: .5rem; }
.bulk-hero h1 .accent { color: var(--color-accent); }
.bulk-hero .lead { color: #d7d7d7; max-width: 60ch; font-size: var(--step-1); }
.bulk-grid {
  display: grid; grid-template-columns: minmax(320px, 1fr) minmax(440px, 1.2fr); gap: 2rem;
  align-items: stretch; margin-top: 2rem;
}
@media (max-width: 900px) { .bulk-grid { grid-template-columns: 1fr; } }
.bulk-hero-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--color-bg-alt); height: 100%; min-height: 380px; }
.bulk-hero-img picture { display: block; width: 100%; height: 100%; }
.bulk-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .bulk-hero-img { aspect-ratio: 4 / 3; min-height: 0; height: auto; }
}
.bulk-buy-box {
  background: #fff; color: var(--color-primary);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.qty-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.qty-label { font-size: .75rem; font-weight: var(--fw-black); letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-muted); }
.qty-input-group {
  display: inline-flex; align-items: center;
  border: 2px solid var(--color-border); border-radius: var(--radius); overflow: hidden;
}
.qty-btn {
  width: 44px; height: 44px; border: 0;
  background: var(--color-bg-alt); color: var(--color-primary);
  font-size: 1.15rem; font-weight: var(--fw-black); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--color-accent-soft); }
.qty-input {
  width: 64px; height: 40px; border: 0;
  border-left: 2px solid var(--color-border); border-right: 2px solid var(--color-border);
  text-align: center; font-size: 1rem; font-weight: var(--fw-black);
  background: #fff; color: var(--color-primary);
}
.bulk-unit-price { font-size: .9rem; color: var(--color-accent-on-light); font-weight: var(--fw-bold); }
.bulk-totals { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.bulk-total-now { font-size: 2rem; font-weight: var(--fw-black); letter-spacing: -.02em; }
.bulk-total-was { font-size: 1rem; color: var(--color-text-muted); text-decoration: line-through; }
.bulk-total-save { font-size: .75rem; font-weight: var(--fw-black); background: #dcfce7; color: #15803d; padding: .2rem .6rem; border-radius: var(--radius-pill); }
.wire-banner {
  background: linear-gradient(135deg, #fff4d0, #ffe9a3);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius); padding: .85rem 1rem; margin-bottom: 1rem;
  display: flex; gap: .75rem; align-items: center;
}
.wire-banner-icon { color: var(--color-accent-on-light); flex: none; }
.wire-banner-text { font-size: .85rem; line-height: 1.4; }
.wire-banner-text strong { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-accent-on-light); margin-bottom: .15rem; }
.bulk-trust-row { display: flex; justify-content: center; gap: 1rem; font-size: .82rem; color: var(--color-primary); padding-top: .75rem; font-weight: var(--fw-bold); flex-wrap: wrap; }
.bulk-trust-row .tick { color: var(--color-ok); font-weight: var(--fw-black); margin-right: .2em; }
.bulk-buy-box .site-footer__payments { flex-wrap: wrap; justify-content: center; align-items: center; gap: .55rem; row-gap: .7rem; padding: .85rem 0 .35rem; }
.bulk-buy-box .site-footer__payments img { height: 52px; width: auto; max-width: 100%; object-fit: contain; }
.bulk-buy-box .site-footer__payments img[src$=".png"] { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 4px; padding: 3px 8px; box-sizing: border-box; }
@media (max-width: 540px) { .bulk-buy-box .site-footer__payments img { height: 44px; } }

/* Retail waitlist modal — surfaces when buy-button SKU is still placeholder */
.retail-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.retail-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.retail-modal__panel { position: relative; background: #fff; color: var(--color-primary); border-radius: var(--radius-lg); max-width: 460px; width: 100%; padding: 1.75rem; box-shadow: 0 12px 40px rgba(0,0,0,.4); max-height: 90vh; overflow-y: auto; }
.retail-modal__close { position: absolute; top: .5rem; right: .75rem; background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--color-text-muted); padding: .25rem .5rem; }
.retail-modal__close:hover { color: var(--color-primary); }
.retail-modal__panel h2 { margin: 0 0 .5rem; font-size: 1.4rem; }
.retail-modal__panel > p { margin: 0 0 1rem; }
.retail-modal__sep { border: 0; border-top: 1px solid var(--color-border); margin: 1.25rem 0 1rem; }
.retail-modal__bulk-pitch { font-size: .9rem; margin: 0 0 .75rem; color: var(--color-text); }
.retail-waitlist .form-field { margin-bottom: .65rem; }
.retail-waitlist label { display: block; font-weight: var(--fw-bold); font-size: .82rem; margin-bottom: .25rem; }
.retail-waitlist input[type="email"], .retail-waitlist input[type="text"], .retail-waitlist input[type="tel"] {
  width: 100%; padding: .55rem .75rem; border: 1px solid var(--color-border); border-radius: 6px; font: inherit; box-sizing: border-box;
}
.retail-waitlist .form-consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .78rem; color: var(--color-text-muted); margin: .75rem 0; }
.retail-waitlist .form-consent input { width: 16px; height: 16px; margin-top: 2px; }

/* Bulk-order capture form */
.bulk-order-form { background: #fff; color: var(--color-primary); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.bulk-order-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1rem; }
@media (max-width: 720px) { .bulk-order-form .form-grid { grid-template-columns: 1fr; } }
.bulk-order-form label { display: block; font-weight: var(--fw-bold); font-size: .82rem; margin-bottom: .25rem; }
.bulk-order-form input[type="text"], .bulk-order-form input[type="email"], .bulk-order-form input[type="tel"], .bulk-order-form textarea {
  width: 100%; padding: .55rem .75rem; border: 1px solid var(--color-border); border-radius: 6px; font: inherit; box-sizing: border-box;
}
.bulk-order-form input:focus, .bulk-order-form textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.bulk-order-form .form-help { display: block; font-size: .72rem; color: var(--color-text-muted); margin-top: .2rem; }
.bulk-order-form .form-checkbox { grid-column: 1 / -1; display: flex; gap: .5rem; align-items: flex-start; font-weight: var(--fw-bold); font-size: .85rem; cursor: pointer; }
.bulk-order-form .form-checkbox input { width: 16px; height: 16px; margin-top: 2px; }
.bulk-order-form .form-shipping { display: contents; }
.bulk-order-form .form-shipping[hidden] { display: none !important; }
.bulk-order-form .form-consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .82rem; color: var(--color-text-muted); margin: 1rem 0 .75rem; }
.bulk-order-form .form-consent input { width: 16px; height: 16px; margin-top: 2px; }

/* Turnstile widget + button gating */
.cf-turnstile { margin: 1rem 0 .75rem; min-height: 65px; }
.btn--gated { background: var(--color-text-muted) !important; color: #f5f5f5 !important; cursor: not-allowed; opacity: .85; }
.btn--gated:hover { background: var(--color-text-muted) !important; }
.ts-warn { color: var(--color-accent-on-light); font-weight: var(--fw-bold); font-size: .85rem; margin: .5rem 0; padding: .5rem .75rem; background: var(--color-accent-soft); border-radius: 6px; }

/* Wire-transfer / SEPA funnel — bank-selectable IBAN panel */
.wire-funnel {
  margin-top: 2rem; padding: 1.5rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); color: #fff;
}
.wire-funnel h2 { color: #fff; margin: 0 0 .5rem; }
.wire-funnel p.muted { color: #c9c9c9; margin: 0 0 1.25rem; }
.wire-banks {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .6rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 1100px) { .wire-banks { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .wire-banks { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px)  { .wire-banks { grid-template-columns: repeat(2, 1fr); } }
.wire-bank {
  background: #fff; border: 2px solid transparent; border-radius: var(--radius);
  padding: 1.1rem .75rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  min-height: 84px; transition: border-color .15s ease, transform .1s ease;
}
.wire-bank:hover { transform: translateY(-1px); }
.wire-bank[aria-selected="true"] { border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-soft); }
.wire-bank img { width: 100%; max-height: 100%; height: auto; display: block; object-fit: contain; }
.wire-bank img[src$=".png"] { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 4px; padding: .4rem .6rem; box-sizing: border-box; }
@media (max-width: 640px) { .wire-bank { min-height: 70px; padding: .6rem .4rem; } }
.wire-details {
  background: #fff; color: var(--color-primary);
  border-radius: var(--radius); padding: 1.25rem;
}
.wire-details h3 { margin: 0 0 .75rem; font-size: 1.05rem; }
.wire-details dl { display: grid; grid-template-columns: max-content 1fr; gap: .35rem 1rem; margin: 0 0 1rem; font-size: .92rem; }
.wire-details dt { font-weight: var(--fw-black); color: var(--color-text-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; align-self: center; }
.wire-details dd { margin: 0; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .95rem; word-break: break-all; }
.wire-details .wire-copy {
  background: transparent; border: 1px solid var(--color-border); border-radius: 6px;
  padding: .15rem .5rem; font-size: .72rem; cursor: pointer; margin-left: .5rem; vertical-align: middle;
  color: var(--color-primary);
}
.wire-details .wire-copy:hover { background: var(--color-bg-alt); }
.wire-details .wire-copy.is-copied { background: var(--color-ok); color: #fff; border-color: var(--color-ok); }
.wire-details .wire-steps { margin: .5rem 0 0; padding-left: 1.1rem; font-size: .9rem; color: var(--color-text); }
.wire-details .wire-steps li + li { margin-top: .35rem; }
.wire-details .wire-concept {
  background: var(--color-accent-soft); color: var(--color-accent-on-light);
  padding: .15rem .5rem; border-radius: 4px; font-family: ui-monospace, monospace; font-weight: var(--fw-bold);
}
.bulk-perks {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 800px) { .bulk-perks { grid-template-columns: repeat(2, 1fr); } }
.bulk-perk {
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  padding: 1rem; text-align: center; color: #fff;
}
.bulk-perk-icon { color: var(--color-accent); width: 44px; height: 44px; margin: 0 auto .6rem; display: block; }
.bulk-perk strong { display: block; color: #fff; margin-bottom: .25rem; }
.bulk-perk em { color: var(--color-accent); font-style: normal; font-size: .85rem; }

.bulk-price-table { width: 100%; border-collapse: collapse; }
.bulk-price-table th, .bulk-price-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.bulk-price-table thead th { background: var(--color-accent-soft); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }
.bulk-price-table .price-cell { font-weight: var(--fw-black); font-size: 1.1rem; color: var(--color-primary); }
.bulk-price-table .save-cell { color: var(--color-ok); font-weight: var(--fw-bold); }

/* -------------------------------------------------------------
   Small helpers
   ------------------------------------------------------------- */
.pill {
  display: inline-block;
  background: var(--color-accent-soft);
  color: var(--color-accent-on-light);
  padding: .3rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: var(--fw-bold);
  letter-spacing: .04em;
}
.divider { height: 1px; background: var(--color-border); border: 0; margin: 2rem 0; }

/* -------------------------------------------------------------
   Small form enhancements
   ------------------------------------------------------------- */
/* Required-field indicator (opt-in). Existing forms already render a literal
   " *" inside the label text, so the CSS hook is gated behind an explicit
   data-required attribute to avoid doubling the asterisk. New forms can
   either embed " *" in the label text OR use data-required. */
.form-field label[data-required]::after { content: " *"; color: var(--color-err); }

/* Horizontal-scroll containment so table swipes don't navigate browser history */
.table-scroll { overflow-x: auto; overscroll-behavior-x: contain; }

/* Hide announcement bar on ultra-narrow phones (<=380px) to reclaim space */
@media (max-width: 380px) {
  .announcement-bar { display: none; }
  .announcement-bar + .site-header { top: 0; }
}
