/* ============================================================
   Frostkeeper — design tokens + global styles
   ============================================================ */

:root {
  /* Palette — soft summer pastel */
  --cream: #FBF7F0;
  --cream-2: #F5EFE3;
  --ink: #1B1B1B;
  --ink-soft: #2A2A2A;
  --muted: #6B6B6B;
  --line: #E5DFD2;

  --mint: #B9E4D2;
  --mint-deep: #7CC3A6;
  --peach: #FFD2B8;
  --peach-deep: #F2A982;
  --sky: #C7DEF2;
  --butter: #FFE9A8;
  --coral: #FF6B5B;
  --coral-deep: #E8513E;
  --pink: #F5B5C5;

  /* Typography */
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing & radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --container: 1240px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(27,27,27,0.06);
  --sh-md: 0 8px 24px rgba(27,27,27,0.08);
  --sh-lg: 0 24px 60px rgba(27,27,27,0.12);
  --sh-coral: 0 12px 32px rgba(255,107,91,0.35);
}

[data-theme="dark"] {
  --cream: #1A1916;
  --cream-2: #232120;
  --ink: #F4F0E8;
  --ink-soft: #E8E2D5;
  --muted: #A8A29A;
  --line: #2F2C28;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; position: relative; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  text-wrap: pretty;
  margin: 0;
}

/* ============================================================
   TOP NAV
   ============================================================ */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
[data-theme="dark"] .topnav { background: rgba(26, 25, 22, 0.85); }
.topnav.is-scrolled { border-bottom-color: var(--line); }
.topnav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  height: 52px;
}
.brand-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.brand-sm .brand-logo-img { height: 38px; }
[data-theme="dark"] .brand-logo-img { filter: invert(0.92); }
.brand-logo-dark img {
  height: 56px;
  width: auto;
  display: block;
  filter: invert(1);
}
.brand-logo span { color: var(--mint-deep); }
.brand-logo em {
  font-style: normal;
  color: var(--coral);
  font-size: 1.1em;
}
.brand-sm { font-size: 18px; }

.topnav-links {
  display: flex;
  gap: 28px;
  margin-left: 16px;
  flex: 1;
  flex-wrap: nowrap;
}
.topnav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.topnav-links a:hover { color: var(--coral); }

.topnav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch { position: relative; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.lang-trigger:hover { background: var(--line); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--sh-md);
  padding: 6px;
  min-width: 180px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
  color: var(--ink);
}
.lang-item:hover { background: var(--cream-2); }
.lang-item.is-active { background: var(--mint); color: var(--ink); }

.theme-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-2);
  font-size: 16px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-btn:hover { background: var(--line); }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.cart-btn:hover { background: var(--ink-soft); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--coral);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero--imageRight .hero-inner { grid-template-columns: 1.15fr 1fr; }
.hero-copy { min-width: 0; }
.hero-sub { max-width: 100%; }
.hero--imageRight .hero-copy { order: 1; }
.hero--imageRight .hero-visual { order: 2; }
.hero--split .hero-copy { order: 1; }
.hero--split .hero-visual { order: 2; }
.hero--centered .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.hero--centered .hero-center {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}
.hero--centered .hero-copy { max-width: 720px; }
.hero--centered .hero-colors,
.hero--centered .cta-block,
.hero--centered .hero-bullets {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.hero--centered .hero-bullets {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.hero-title-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.hero-title-accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 0.08em;
  height: 0.18em;
  background: var(--butter);
  z-index: -1;
  border-radius: 4px;
}
.hero-title-dot { color: var(--mint-deep); }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.hero-colors {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-colors-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(0,0,0,0.04);
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active {
  border-color: var(--ink);
  outline: 2px solid var(--cream);
  outline-offset: -4px;
}
.hero-color-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* === CTA — the showpiece === */
.cta-block { margin-bottom: 28px; max-width: 540px; }
/* CTA primary: 2 column grid (text stack | arrow), fluid typography.
   - minmax(0,1fr) text column'un sifira sikismasini saglar -> overflow-wrap devreye girer.
   - clamp() font-size viewport'a gore akar.
   - text-wrap: balance line break'leri esit dagitir (uzun Almanca/Fransizca cevirileri icin).
   - Mobil-onceki tasarim: dar viewport'ta arrow daha kucuk, padding daha sikidir. */
.cta-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  padding: 14px 18px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(13px, 3.4vw, 17px);
  position: relative;
  box-shadow: 0 12px 32px rgba(27,27,27,0.25);
  transition: transform 0.15s ease-out, box-shadow 0.2s;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(27,27,27,0.32); }
.cta-primary:active { transform: translateY(0); }
.cta-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.cta-primary .cta-main {
  grid-column: 1; grid-row: 1;
  display: block;
  font-size: clamp(13px, 3.8vw, 17px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  min-width: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  hyphens: auto;
}
.cta-primary .cta-sub {
  grid-column: 1; grid-row: 2;
  display: block;
  font-size: clamp(10.5px, 2.6vw, 12px);
  font-weight: 500;
  color: rgba(251,247,240,0.7);
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  margin-top: 2px;
}
.cta-primary .cta-arrow {
  grid-column: 2; grid-row: 1 / 3;
  align-self: center;
  width: 36px; height: 36px;
  background: var(--coral);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.cta-primary:hover .cta-arrow { transform: translateX(4px); }
.cta-coral { background: var(--coral); }
.cta-coral .cta-arrow { background: var(--ink); color: var(--cream); }
.cta-coral .cta-sub { color: rgba(255,255,255,0.85); }
.cta-full { width: 100%; }

/* ── Discount code input (cart drawer + checkout summary) ── */
.discount-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
}
.discount-input input {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.discount-input input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(27,27,27,0.06); }
.discount-input button {
  padding: 10px 16px;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.discount-input button:hover:not(:disabled) { background: var(--ink-soft); }
.discount-input button:active:not(:disabled) { transform: translateY(1px); }
.discount-input button:disabled { opacity: 0.4; cursor: not-allowed; }
.discount-error {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #8A2A1A;
  background: #FBD9D4;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 4px;
}

.discount-applied {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #DCEFE3;
  border: 1px solid #7CC3A6;
  border-radius: 10px;
  margin-bottom: 14px;
  animation: discount-pop 0.25s ease-out;
}
@keyframes discount-pop {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.discount-applied-tick {
  width: 22px; height: 22px;
  background: #2A7B5B;
  color: white;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.discount-applied-body {
  flex: 1;
  font-size: 13px;
  color: #1B5C3F;
  min-width: 0;
}
.discount-applied-body strong { font-family: var(--font-mono); letter-spacing: 0.02em; }
.discount-applied-msg { color: #2A7B5B; font-weight: 600; }
.discount-remove {
  background: transparent;
  border: 0;
  color: #2A7B5B;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.discount-remove:hover { background: rgba(0,0,0,0.05); }

/* Orta dar viewport (cogu telefon, 481-720px): hafifce daha rahat */
@media (min-width: 481px) and (max-width: 720px) {
  .cta-primary { padding: 16px 20px; column-gap: 14px; }
  .cta-primary .cta-arrow { width: 38px; height: 38px; }
}

/* Cok dar viewport (eski iPhone SE 320-380px): padding ve arrow daha da kucult */
@media (max-width: 380px) {
  .cta-primary {
    padding: 12px 14px;
    column-gap: 8px;
    border-radius: 14px;
  }
  .cta-primary .cta-arrow {
    width: 32px; height: 32px;
    font-size: 15px;
  }
  .cta-primary .cta-sub { font-size: 10.5px; }
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.cta-ghost:hover { background: var(--cream-2); border-color: var(--ink); }

.text-btn { background: none; border: 0; color: var(--ink); font-weight: 500; font-size: 14px; padding: 6px 0; }
.text-btn:hover { color: var(--coral); }

/* CTA social proof block */
.cta-social {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 18px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.cta-stars { display: flex; align-items: center; gap: 10px; }
.stars {
  color: #FFB845;
  letter-spacing: 1px;
  font-size: 15px;
}
.stars-lg { font-size: 22px; }
.cta-stars-text { font-size: 13px; color: var(--ink-soft); }
.cta-stars-text strong { font-weight: 700; }
.cta-stars-text span { color: var(--muted); }
.cta-divider { width: 1px; height: 18px; background: var(--line); }
.cta-live {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.cta-live strong { color: var(--coral); font-weight: 700; }
.live-dot {
  width: 8px; height: 8px;
  background: #34C759;
  border-radius: 999px;
  position: relative;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,199,89,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(52,199,89,0); }
}
.cta-recent {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  width: 100%;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.recent-avatar {
  width: 22px; height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--line);
}
.recent-ago { color: var(--muted); }

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  justify-content: start;
}

/* === Hero visual === */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-product-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}
.hero-blob-1 { width: 380px; height: 380px; background: var(--mint); top: -40px; left: -10px; }
.hero-blob-2 { width: 320px; height: 320px; background: var(--peach); bottom: 20px; right: -20px; }
.hero-blob-3 { width: 240px; height: 240px; background: var(--butter); top: 40%; left: 40%; }

.hero-badge {
  position: absolute;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--sh-md);
  z-index: 10;
  animation: badge-float 6s ease-in-out infinite;
}
.hero-badge-1 { top: 4%; left: 4%; }
.hero-badge-2 { top: 45%; right: 0; animation-delay: -2s; }
.hero-badge-3 { bottom: 6%; left: 4%; animation-delay: -4s; }

/* When the GJORT infographic is showing, hide the floating spec pills —
   the infographic already has its own embedded callouts. */
.hero-visual--no-badges .hero-badge { display: none !important; }
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hb-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.hb-label {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.marquee-dot { color: var(--coral); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--cream); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.how-step {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.2s;
}
.how-step:hover { transform: translateY(-4px); }
.how-step-n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.how-step-illust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 18px;
  height: 220px;
}
.how-step-img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Step 2 — soften the hand crop at the top so it doesn't look chopped. */
.how-step-illust-2 .how-step-img,
.how-step-illust-3 .how-step-img {
  -webkit-mask-image: linear-gradient(180deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.85) 6%,
    rgba(0,0,0,1)    14%,
    rgba(0,0,0,1)    100%);
          mask-image: linear-gradient(180deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.85) 6%,
    rgba(0,0,0,1)    14%,
    rgba(0,0,0,1)    100%);
}
.how-step-t {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.how-step-d {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.vacuum-diagram {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: center;
}
[data-theme="dark"] .vacuum-diagram { background: var(--cream-2); }
[data-theme="dark"] .vacuum-diagram svg text { fill: var(--ink) !important; }
[data-theme="dark"] .vacuum-diagram svg rect[fill="#FBF7F0"],
[data-theme="dark"] .vacuum-diagram svg rect[fill="#FFFBF4"] { fill: var(--cream); }

/* ============================================================
   USE CASES
   ============================================================ */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.use-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  color: var(--ink);
}
.use-card:hover { transform: translateY(-6px); }
.use-emoji {
  font-size: 64px;
  position: absolute;
  top: 24px;
  right: 24px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.use-t {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.use-d {
  font-size: 14px;
  color: rgba(27,27,27,0.7);
  margin: 0;
  line-height: 1.45;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--cream-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--cream);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--cream-2); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--mint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 18px;
}
.feature-card:nth-child(2) .feature-icon { background: var(--peach); }
.feature-card:nth-child(3) .feature-icon { background: var(--sky); }
.feature-card:nth-child(4) .feature-icon { background: var(--butter); }
.feature-card:nth-child(5) .feature-icon { background: var(--pink); }
.feature-card:nth-child(6) .feature-icon { background: var(--mint); }
.feature-t {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}
.feature-d {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   SPECS
   ============================================================ */
.specs { background: var(--cream); }
.specs-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.specs-side .section-title { text-align: left; }
.specs-product {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--peach) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: center;
}
.specs-table {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: 0; }
.spec-k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-v {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* ============================================================
   IN THE BOX
   ============================================================ */
.box-section { background: var(--cream-2); }
.box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.box-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.box-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 12px;
}
.box-t {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}
.box-d {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   COMPARE
   ============================================================ */
.compare { background: var(--cream); }
.compare-table {
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}
.compare-row > div {
  padding: 18px 24px;
  font-size: 15px;
}
.compare-head {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.compare-head .ch-good {
  background: var(--coral);
  color: var(--cream);
}
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.cr-feat { font-weight: 600; }
.cr-bad { color: var(--muted); }
.cr-good {
  font-weight: 700;
  color: var(--ink);
  background: var(--mint);
}
[data-theme="dark"] .cr-good { color: #1B1B1B; }
[data-theme="dark"] .compare-head .ch-bad { color: rgba(244,240,232,0.6); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--cream-2); }
.reviews-summary {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.review-stars {
  color: #FFB845;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-t {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.review-d {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 16px;
}
.review-author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-side .section-title { text-align: left; }
.faq-help {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}
.faq-help a { color: var(--coral); text-decoration: underline; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--line); }
.faq-item.is-open { background: var(--cream-2); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.faq-toggle {
  font-size: 24px;
  color: var(--coral);
  font-weight: 400;
  width: 24px; text-align: center;
}
.faq-a {
  margin-top: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================================
   BUNDLE STRIP
   ============================================================ */
.bundle-strip {
  background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
  color: var(--ink);
}
.bundle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bundle-products {
  display: flex;
  justify-content: center;
  gap: -20px;
}
.bundle-products > div { margin: 0 -20px; }
.bundle-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 600;
}
.bundle-sub {
  font-size: 17px;
  margin: 12px 0 24px;
  max-width: 460px;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
[data-theme="dark"] .footer { background: #0F0E0C; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251,247,240,0.12);
}
.footer-brand .brand-logo { margin-bottom: 12px; display: inline-flex; height: auto; }
.footer-brand p { color: rgba(251,247,240,0.6); margin: 0 0 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(251,247,240,0.2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.footer-social a:hover { background: var(--coral); border-color: var(--coral); }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  margin: 0 0 12px;
  color: var(--cream);
  font-weight: 600;
}
.footer-col a {
  color: rgba(251,247,240,0.6);
  font-size: 14px;
  padding: 2px 0;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(251,247,240,0.4);
  padding-top: 24px;
  font-family: var(--font-mono);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(27,27,27,0.4);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 100%;
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.cart-drawer.is-open { transform: translateX(0); box-shadow: var(--sh-lg); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 0;
  background: var(--cream-2);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.icon-btn:hover { background: var(--line); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.cart-empty-emoji { font-size: 72px; margin-bottom: 16px; }
.cart-empty p { font-size: 16px; color: var(--muted); margin: 0 0 20px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-thumb {
  width: 80px; height: 80px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--cream-2);
}
.cart-item-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cart-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}
.cart-item-meta {
  font-size: 13px;
  color: var(--muted);
}
.cart-item-bot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 28px; height: 28px;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
}
.qty-stepper button:hover { background: var(--cream-2); }
.qty-stepper span {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.cart-remove {
  background: none;
  border: 0;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  padding: 0;
}
.cart-remove:hover { color: var(--coral); }
.cart-item-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-totals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 6px; }
.ct-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
}
.ct-row.ct-total {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.ct-discount { color: var(--mint-deep); font-weight: 600; }
.ct-discount span:last-child { font-family: var(--font-mono); }

.cart-discount {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  margin: 12px 0 0;
  background: linear-gradient(135deg, #B9E4D2 0%, #FFD2B8 100%);
  border-radius: 14px;
  border: 1px solid var(--mint-deep);
}
.cart-discount-icon {
  width: 36px; height: 36px;
  background: white;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.cart-discount-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.cart-discount-sub {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.cart-discount-amt {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  font-size: 16px;
}
.cart-hint {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: var(--cream-2);
  border: 1px dashed var(--mint-deep);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.cs-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--mint);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.cs-discount span:last-child { font-family: var(--font-mono); color: var(--coral); }

.cart-trust {
  display: flex;
  justify-content: space-around;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-page {
  min-height: 100vh;
  background: var(--cream);
}
.checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: rgba(251,247,240,0.9);
  backdrop-filter: blur(20px);
  z-index: 10;
}
[data-theme="dark"] .checkout-head { background: rgba(26,25,22,0.9); }
.checkout-secure {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.checkout-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.checkout-title-block { margin-bottom: 32px; }
.checkout-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.checkout-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.cf-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 0 0 20px;
  background: var(--cream-2);
}
.cf-block legend {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  padding: 0 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 12px;
  padding: 4px 14px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  flex: 1;
}
.field:last-child { margin-bottom: 0; }
.field-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.req { color: var(--coral); font-style: normal; }
.field-input {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 12px;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field-input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,91,0.15); }

.pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pay-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.pay-option:hover { border-color: var(--ink-soft); }
.pay-option.is-active {
  border-color: var(--coral);
  background: rgba(255,107,91,0.06);
}
.pay-radio {
  width: 18px; height: 18px;
  border-radius: 999px;
  border: 2px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pay-option.is-active .pay-radio { border-color: var(--coral); }
.pay-option.is-active .pay-radio span {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--coral);
}
.pay-icon {
  width: 28px; height: 28px;
  background: var(--cream-2);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.pay-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.pay-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 13px;
  color: var(--muted);
}

.checkout-summary {
  position: sticky;
  top: 88px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.checkout-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: #FBD9D4;
  color: #8A2A1A;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
}
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
}
.cs-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cs-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
}
.cs-thumb {
  width: 60px; height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.cs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-controls { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.cs-remove {
  background: none;
  border: 0;
  font-size: 18px;
  color: var(--muted);
  width: 24px; height: 24px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cs-remove:hover { background: var(--line); color: var(--coral); }
.qty-stepper-sm button { width: 22px; height: 22px; font-size: 13px; }
.qty-stepper-sm span { font-size: 12px; min-width: 18px; }
.cs-name { font-size: 14px; font-weight: 600; }
.cs-meta { font-size: 12px; color: var(--muted); }
.cs-price { font-size: 14px; font-weight: 600; }

.cs-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-trust {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* ============================================================
   CONFIRMATION
   ============================================================ */
.fk-cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  padding: 18px 22px;
  z-index: 200;
  max-width: 860px;
  margin: 0 auto;
  animation: fk-cc-in 0.3s ease-out;
}
@keyframes fk-cc-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.fk-cc-inner {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.fk-cc-text { flex: 1; min-width: 260px; }
.fk-cc-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}
.fk-cc-text p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.4; }
.fk-cc-actions { display: flex; gap: 8px; flex-shrink: 0; }
.fk-cc-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.fk-cc-btn.fk-cc-accept {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.fk-cc-btn:hover { transform: translateY(-1px); }
@media (max-width: 600px) {
  .fk-cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
  .fk-cc-actions { width: 100%; }
  .fk-cc-btn { flex: 1; }
}
.stripe-block {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 14px;
}
.stripe-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.stripe-lockup {
  display: inline-flex; align-items: center; gap: 8px;
  background: #635BFF; /* Stripe purple */
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.stripe-lockup span { font-family: var(--font-display); }
.stripe-trust {
  display: inline-flex; gap: 14px;
  font-size: 12px; color: var(--muted);
  font-family: var(--font-mono);
}
.card-row { margin-bottom: 12px; }
.card-brands { display: flex; gap: 6px; flex-wrap: wrap; }
.cb {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.cb-visa   { color: #1A1F71; }
.cb-mc     { color: #EB001B; }
.cb-amex   { color: #2E77BC; }
.cb-apple  { background: #000; color: #fff; border-color: #000; }
.cb-google { background: #fff; color: #1A1A1A; }
.stripe-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-align: center;
  letter-spacing: 0.04em;
}
.confirm-page {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.confirm-card {
  max-width: 640px;
  width: 100%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
}
.confirm-check {
  margin-bottom: 24px;
  animation: pop 0.5s ease-out;
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.confirm-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.confirm-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 32px;
}
.confirm-order {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.conf-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.conf-v { font-weight: 600; font-size: 15px; }
.confirm-track {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 32px;
}
.confirm-next {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
  text-align: left;
}
.confirm-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}
.conf-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.conf-step-n {
  width: 32px; height: 32px;
  background: var(--mint);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.conf-step:nth-child(2) .conf-step-n { background: var(--peach); }
.conf-step:nth-child(3) .conf-step-n { background: var(--butter); }
.conf-step-t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.conf-step-d {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   PARALLAX BANNER — full-bleed image with sticky-feel background
   ============================================================ */
.promo-video {
  background: var(--cream);
  padding-top: 0;
  padding-bottom: 100px;
}
.promo-video-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #1B1B1B;
  box-shadow:
    0 30px 70px rgba(27,27,27,0.18),
    0 8px 20px rgba(27,27,27,0.08);
  aspect-ratio: 16 / 9;
}
.promo-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 800px) {
  .promo-video { padding-bottom: 50px; }
  .promo-video-frame { border-radius: 20px; }
}
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}
.hamburger:hover { background: var(--cream-2); }

.mobile-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(27,27,27,0.4);
  backdrop-filter: blur(4px);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 320px; max-width: 88vw;
  background: var(--cream);
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); box-shadow: var(--sh-lg); }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  flex: 1;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  border-radius: 12px;
  transition: background 0.15s;
}
.mobile-nav-links a:hover { background: var(--cream-2); color: var(--coral); }
.mobile-nav-links a .arr {
  font-size: 18px;
  color: var(--muted);
  opacity: 0.6;
}
.mobile-nav-links a:hover .arr { opacity: 1; color: var(--coral); transform: translateX(4px); }

.mobile-nav-foot {
  padding: 18px 22px 28px;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}
.mobile-nav-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.mobile-nav-langs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
}
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.mobile-lang:hover { border-color: var(--ink-soft); }
.mobile-lang.is-active { background: var(--mint); border-color: var(--mint-deep); color: var(--ink); }
.mobile-nav-contact {
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  font-family: var(--font-mono);
}
.mobile-nav-contact:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .hamburger { display: inline-flex; }
  .topnav-links { display: none; }
  .topnav-inner { gap: 8px; justify-content: space-between; }
  .brand-logo { margin: 0 auto 0 4px; }
  .topnav-actions { gap: 4px; }
  .lang-switch { display: none; }
  .cart-btn span:not(.cart-badge) { display: none; }
  .cart-btn { padding: 9px 12px; }
}
.parallax-banner {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: #FFFFFF;
  isolation: isolate;
}
.parallax-bg {
  position: absolute;
  inset: -60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* JS sets --p-offset based on viewport position */
  transform: translateY(var(--p-offset, 0));
  will-change: transform;
  z-index: -2;
}
.parallax-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.25) 0%, rgba(20,16,12,0.55) 100%);
  z-index: -1;
}
.parallax-banner.is-dark .parallax-veil {
  background: linear-gradient(180deg, rgba(20,16,12,0.35) 0%, rgba(20,16,12,0.7) 100%);
}
.parallax-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.parallax-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.parallax-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.92);
  margin: 0;
  text-wrap: pretty;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
@media (max-width: 800px) {
  .parallax-banner { padding: 80px 0; }
}

/* ============================================================
   GLANCE (product overview infographic — blends into the page)
   ============================================================ */
.hero-product-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow:
    0 30px 60px rgba(27,27,27,0.18),
    0 8px 20px rgba(27,27,27,0.08);
}
.specs-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--sh-md);
}
.bundle-product-img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(27,27,27,0.18);
}

/* In the box — side photo */
.box-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.box-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--sh-md);
}
@media (max-width: 800px) {
  .box-layout { grid-template-columns: 1fr; }
}
.glance {
  /* Match the off-white background baked into the product images so the
     image edges disappear into the page instead of sitting on a hard card. */
  background: #F4F0E5;
  padding-top: 80px;
  padding-bottom: 80px;
}
.glance .section-header { margin-bottom: 32px; }
.glance-window {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glance-window-body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glance-window-body img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* Dark mode: the image's off-white background clashes with the dark page.
   Lift the section + frame the image on its own light card. */
[data-theme="dark"] .glance { background: var(--cream); }
[data-theme="dark"] .glance-window-body {
  background: #F4F0E5;
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
}
[data-theme="dark"] .glance-window-body img { border-radius: 20px; }

@media (max-width: 800px) {
  .glance { padding-top: 40px; padding-bottom: 40px; }
  [data-theme="dark"] .glance-window-body { padding: 14px; border-radius: 20px; }
}
.kontakt { background: var(--cream-2); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.kontakt-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.ki-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.ki-card-wide { grid-column: span 2; }
.ki-icon { font-size: 22px; margin-bottom: 10px; }
.ki-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.ki-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
a.ki-value:hover { color: var(--coral); }
.ki-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.ki-mono { font-family: var(--font-mono); font-size: 12px; }

.kontakt-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.kontakt-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.kontakt-form .field-input { background: var(--cream-2); }
.kontakt-form select.field-input { cursor: pointer; }
.kontakt-form .cta-primary { margin-top: 8px; }
.kontakt-form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-align: center;
}
.kontakt-sent {
  padding: 30px 10px;
  text-align: center;
}
.kontakt-sent-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}
.kontakt-sent h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}
.kontakt-sent p { color: var(--muted); margin: 0; font-size: 14px; }

@media (max-width: 1100px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .kontakt-info { grid-template-columns: 1fr; }
  .ki-card-wide { grid-column: auto; }
  .kontakt-form { padding: 24px; }
}

/* ============================================================
   IMAGE-SLOT theming — match the soft pastel aesthetic
   ============================================================ */
image-slot {
  display: block;
  background: var(--cream-2);
  border-radius: 18px;
}
.hero-product-wrap image-slot {
  background: linear-gradient(135deg, rgba(185,228,210,0.5) 0%, rgba(255,210,184,0.5) 100%);
  box-shadow: var(--sh-md);
}
.specs-product image-slot {
  background: transparent;
}
@media (max-width: 1100px) {
  .features-grid, .reviews-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .use-grid, .box-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-inner, .faq-inner { grid-template-columns: 1fr; }
  .bundle-inner { grid-template-columns: 1fr; text-align: center; }
  .bundle-products { gap: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .topnav-links { display: none; }
  .topnav-inner { justify-content: space-between; }
}
@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .features-grid, .reviews-grid, .use-grid, .box-grid, .how-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr 1fr 1fr; }
  .compare-row > div { padding: 12px 14px; font-size: 13px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .hero-badge { display: none; }
  .cf-row { grid-template-columns: 1fr; }
  .confirm-order { grid-template-columns: 1fr; }
  .confirm-card { padding: 40px 24px; }
  .checkout-page { padding: 0; }
  .checkout-grid { padding: 28px 20px; }
  .cart-btn span:not(.cart-badge) { display: none; }
  .topnav-actions { gap: 8px; }
}
