/* ============================================================
   PETICOTA — brutalist editorial
   palette: cream, ink, red, accent muted
============================================================ */

:root {
  --cream: #f1ecdf;
  --cream-2: #e7e0cd;
  --paper: #faf7ef;
  --ink: #0b0b08;
  --ink-2: #1c1a14;
  --red: #e1261c;
  --red-deep: #b41c14;
  --muted: #8a8472;
  --line: #0b0b08;

  --grid-cols: 12;
  --gutter: clamp(16px, 2vw, 32px);
  --pad-x: clamp(20px, 4vw, 56px);

  --f-display: "Anton", "Archivo Black", Impact, sans-serif;
  --f-serif: "Newsreader", "Times New Roman", serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Grain overlay for tactile editorial feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ----------  type primitives  ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.82;
}
.serif {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
}
.mono {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.red { color: var(--red); }

/* ----------  layout  ---------- */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--gutter);
  padding-inline: var(--pad-x);
}

.rule {
  height: 1px;
  background: var(--ink);
  width: 100%;
}
.rule-thick { height: 2px; }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--pad-x);
  background: var(--cream);
  border-bottom: 1.5px solid var(--ink);
  transition: transform 0.4s ease;
}
.nav.hidden { transform: translateY(-100%); }

.nav .logo {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.nav .logo .dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1.5px; width: 0;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lang-toggle button {
  padding: 6px 10px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.lang-toggle button.active {
  background: var(--ink);
  color: var(--cream);
}

.cart-btn {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 12px;
  background: var(--red);
  color: #fff;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cart-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

/* Sub-ticker under nav */
.ticker {
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  z-index: 999;
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  height: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}
/* When nav slides up on scroll-down, slide ticker up with it */
.nav.hidden + .ticker {
  transform: translateY(calc(-100% - 70px));
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker 36s linear infinite;
  will-change: transform;
}
.ticker-track span {
  padding: 0 22px;
  display: inline-flex; align-items: center; gap: 22px;
}
.ticker-track span::after {
  content: "✻";
  color: var(--red);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding-top: 98px;
  min-height: 100svh;
  overflow: hidden;
}

.hero-frame {
  position: relative;
  margin: 12px var(--pad-x) 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 540px;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  filter: saturate(0.85) contrast(1.05);
  will-change: transform;
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,11,8,0.05) 0%,
    rgba(11,11,8,0.25) 50%,
    rgba(11,11,8,0.65) 100%
  );
}

.hero-meta-top {
  position: absolute;
  top: 22px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 3;
}

.hero-headline {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 36px;
  color: var(--cream);
  z-index: 3;
}

.hero-headline .line {
  display: block;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(56px, 13vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  overflow: hidden;
}
.hero-headline .line .word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-headline .line:nth-child(1) .word { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) .word { animation-delay: 0.30s; }
.hero-headline .line:nth-child(3) .word { animation-delay: 0.45s; }

@keyframes wordUp {
  to { transform: translateY(0); }
}

.hero-headline .line .accent {
  color: var(--red);
  font-style: italic;
  font-family: var(--f-serif);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  position: relative;
  padding: 0 10px;
}

.hero-sticker {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 168px;
  height: 168px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
  animation: stickerSpin 24s linear infinite;
  z-index: 4;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.hero-sticker::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: 0.55;
}
@keyframes stickerSpin {
  from { transform: rotate(-6deg); }
  to { transform: rotate(354deg); }
}
.hero-sticker .inner {
  animation: stickerSpinReverse 24s linear infinite;
}
@keyframes stickerSpinReverse {
  from { transform: rotate(6deg); }
  to { transform: rotate(-354deg); }
}

.hero-bottom-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gutter);
  padding: 18px var(--pad-x) 28px;
  align-items: end;
  border-bottom: 1.5px solid var(--ink);
}
.hero-bottom-row .pitch {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.25;
  max-width: 38ch;
  font-style: italic;
  font-weight: 300;
}
.hero-bottom-row .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.hero-bottom-row .meta b {
  display: block;
  font-weight: 700;
  color: var(--red);
}

/* ============================================================
   MARQUEE (massive kinetic)
============================================================ */
.kinetic-marquee {
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  padding: 22px 0;
  background: var(--cream);
}
.kinetic-marquee.dark {
  background: var(--ink);
  color: var(--cream);
}
.kinetic-marquee-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}
.kinetic-marquee-track > span {
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.kinetic-marquee-track > span::after {
  content: "●";
  font-size: 0.4em;
  color: var(--red);
  transform: translateY(-0.2em);
}
.kinetic-marquee.reverse .kinetic-marquee-track {
  animation-direction: reverse;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.kinetic-marquee .italic {
  font-family: var(--f-serif);
  font-style: italic;
  text-transform: lowercase;
  color: var(--red);
  font-weight: 400;
  letter-spacing: -0.04em;
}

/* ============================================================
   MANIFESTO
============================================================ */
.manifesto {
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  border-bottom: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 9fr 2fr;
  gap: var(--gutter);
  position: relative;
}
.manifesto .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.manifesto-quote {
  font-family: var(--f-serif);
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 300;
  font-style: normal;
  max-width: 22ch;
}
.manifesto-quote em {
  font-style: italic;
  color: var(--red);
}
.manifesto-quote .crossout {
  position: relative;
  display: inline-block;
}
.manifesto-quote .crossout::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 54%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.manifesto-quote.in-view .crossout::after { transform: scaleX(1); }

.manifesto-tail {
  align-self: end;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  max-width: 28ch;
}

/* ============================================================
   PRODUCT CARDS — scroll-driven 3D
============================================================ */
.products-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  padding: 72px var(--pad-x) 24px;
  align-items: end;
}
.products-intro .eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.products-intro h2 {
  font-family: var(--f-display);
  font-size: clamp(60px, 9vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.products-intro h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
  letter-spacing: -0.03em;
}

.product {
  position: relative;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 78svh;
  overflow: hidden;
}
.product + .product { border-top: 0; }
.product.flip { grid-template-columns: 1fr 1fr; }
.product.flip .product-image { order: 2; border-left: 1.5px solid var(--ink); border-right: 0; }
.product.flip .product-info { order: 1; border-right: 1.5px solid var(--ink); }

.product-image {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  border-right: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
}
.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, transparent 0, rgba(225,38,28,0.18) 80%),
    linear-gradient(180deg, #1a1a14 0%, #0b0b08 100%);
}
.product-img-wrap {
  position: relative;
  width: 78%;
  height: 78%;
  display: grid;
  place-items: center;
  will-change: transform;
  transform-style: preserve-3d;
}
.product-img-wrap img,
.product-img-wrap image-slot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
}
.product-image .price-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: var(--red);
  color: var(--cream);
  padding: 8px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 3;
}
.product-image .corner-label {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}
.product-image .corner-label::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 50%;
}

.product-info {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--cream);
  position: relative;
}
.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px);
  background-size: 100% 28px;
  opacity: 0.05;
  pointer-events: none;
}
.product-info > * { position: relative; z-index: 1; }

.product-info .number {
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.product-info .number .barre {
  color: var(--red);
}
.product-info h3 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 80px);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.015em;
}
.product-info h3 em {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.02em;
}
.product-info .desc {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.4;
  font-weight: 300;
  max-width: 38ch;
}
.product-info .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}
.product-info .spec {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-info .spec b {
  display: block;
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
  color: var(--ink);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--cream);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-red {
  background: var(--red);
  color: var(--cream);
}
.btn-red:hover { background: var(--red-deep); }
.btn .arr {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arr { transform: translateX(4px); }

/* swatch row */
.swatches {
  display: flex;
  gap: 10px;
  align-items: center;
}
.swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.swatch.active {
  outline: 1.5px solid var(--ink);
  outline-offset: 3px;
  transform: scale(1.06);
}
.swatch-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   CUSTOMIZE BIG CTA
============================================================ */
.customize {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.customize-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.customize-eyebrow::before {
  content: "";
  width: 36px;
  height: 1.5px;
  background: var(--red);
}
.customize h2 {
  margin-top: 22px;
  font-family: var(--f-display);
  font-size: clamp(72px, 13vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.customize h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.customize-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  border-top: 1px solid rgba(241,236,223,0.2);
  padding-top: 32px;
}
.customize-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.customize-step .step-num {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 0.9;
  color: var(--red);
}
.customize-step h4 {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.customize-step p {
  font-family: var(--f-serif);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(241,236,223,0.75);
}

.customize-cta-row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid rgba(241,236,223,0.2);
  padding-top: 32px;
}
.customize .btn { background: var(--cream); }
.customize .btn-red { background: var(--red); color: var(--cream); }

/* ============================================================
   QR SECTION
============================================================ */
.qr {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-bottom: 1.5px solid var(--ink);
  min-height: 80svh;
}
.qr-left {
  padding: clamp(60px, 8vh, 120px) var(--pad-x);
  border-right: 1.5px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.qr-left h2 {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 150px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.qr-left h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.qr-left .desc {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 300;
  line-height: 1.45;
  max-width: 44ch;
}
.qr-left .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.qr-left .features li {
  list-style: none;
  border-top: 1px solid var(--ink);
  padding-top: 10px;
}
.qr-left .features li::before {
  content: "↳ ";
  color: var(--red);
}

.qr-right {
  position: relative;
  background: var(--paper);
  display: grid;
  place-items: center;
  padding: 40px;
  overflow: hidden;
}
.qr-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(11,11,8,0.06) 22px 23px);
}

.qr-tag {
  position: relative;
  width: min(420px, 60%);
  aspect-ratio: 1 / 1.4;
  background: var(--red);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(-4deg);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.qr-tag:hover { transform: rotate(0deg) scale(1.02); }
.qr-tag .tag-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}
.qr-tag .qr-square {
  align-self: center;
  background: var(--cream);
  padding: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
}
.qr-tag .qr-square img {
  width: 100%;
  display: block;
  filter: contrast(1.05);
}
.qr-tag .tag-bottom {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.qr-tag .tag-bottom em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}

.qr-tag .ring {
  position: absolute;
  top: 14px; left: 22px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: inset 0 0 0 4px var(--red);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--cream);
  padding: 64px var(--pad-x) 32px;
  position: relative;
  overflow: hidden;
}
.footer-mega {
  font-family: var(--f-display);
  font-size: clamp(120px, 28vw, 460px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  pointer-events: none;
  margin-bottom: 28px;
}
.footer-mega .dot {
  display: inline-block;
  width: 0.22em; height: 0.22em;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-0.62em);
  margin-left: 0.06em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gutter);
  border-top: 1.5px solid var(--ink);
  padding-top: 32px;
  align-items: start;
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--muted);
}
.footer-col a, .footer-col p {
  display: block;
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--red); }
.footer-newsletter input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ink);
  background: transparent;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-newsletter button {
  margin-top: 10px;
  width: 100%;
  padding: 12px 14px;
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--red); }

.footer-legal {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

/* ============================================================
   reveal helper
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* small floating helpers — scroll progress */
.scroll-progress {
  position: fixed;
  left: 0; top: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  z-index: 2001;
  transition: width 0.05s linear;
}

/* badge spinning bottom-left */
.float-badge {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  z-index: 800;
  border: 1.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--red);
  animation: float-bob 4s ease-in-out infinite;
  cursor: pointer;
}
@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   CART DRAWER
============================================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(11,11,8,0.4);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(480px, 96vw);
  background: var(--cream);
  border-left: 2px solid var(--ink);
  z-index: 2600;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  padding: 22px 24px 16px;
  border-bottom: 1.5px solid var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cart-close {
  font-size: 38px;
  line-height: 1;
  padding: 0 8px;
  background: transparent;
  border: 1.5px solid var(--ink);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cart-close:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }

.cart-empty {
  padding: 60px 24px;
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}

.cart-list {
  flex: 1;
  list-style: none;
  overflow-y: auto;
  padding: 8px 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px dashed var(--ink);
}
.cart-item-swatch {
  aspect-ratio: 1 / 1.2;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}
.cart-item-info { display: flex; flex-direction: column; gap: 6px; }
.cart-item-row {
  margin-top: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.qty-ctrl {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 13px;
}
.qty-ctrl button { width: 28px; height: 28px; }
.qty-ctrl span { padding: 0 10px; min-width: 28px; text-align: center; }
.cart-remove {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: var(--cream);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.cart-remove:hover {
  background: var(--red);
  color: var(--cream);
  transform: translate(-1px,-1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.cart-foot {
  border-top: 1.5px solid var(--ink);
  padding: 22px 24px 24px;
  background: var(--paper);
}
.cart-subtotal {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.cart-clear {
  margin-top: 10px;
  width: 100%;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  padding: 8px;
}
.cart-clear:hover { color: var(--red); }

/* TOAST */
.cart-toast {
  position: fixed; bottom: 22px; right: 22px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 14px 18px;
  box-shadow: 6px 6px 0 var(--red);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2700;
  transform: translateX(120%);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.cart-toast.in { transform: translateX(0); }
.cart-toast .mono {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.cart-toast .display {
  font-family: var(--f-display); font-size: 26px; line-height: 1;
  text-transform: uppercase;
}
.cart-toast button {
  margin-top: 6px; text-align: left;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}

/* ============================================================
   NEWSLETTER STATE
============================================================ */
.newsletter-success {
  border: 1.5px solid var(--ink);
  padding: 16px 14px;
  background: var(--paper);
  margin-top: 4px;
}
.newsletter-success .mono {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}
.newsletter-success .name {
  font-family: var(--f-serif); font-size: 17px; font-style: italic;
  font-weight: 300;
}

/* ============================================================
   DESIGNER PAGE  (tasarla.html)
============================================================ */
.designer-page {
  min-height: 100svh;
  padding-top: 98px;
}

/* Step 1: choose product */
.chooser {
  padding: 48px var(--pad-x) 0;
}
.chooser-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: end;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 24px;
}
.chooser-eyebrow {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.chooser h1 {
  font-family: var(--f-display);
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.chooser h1 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  color: var(--red);
}
.chooser-sub {
  font-family: var(--f-serif); font-style: italic; font-size: 20px;
  line-height: 1.4; font-weight: 300;
  max-width: 38ch;
}
.chooser-cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 0;
  border-bottom: 1.5px solid var(--ink);
}
.choice {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 70svh;
  border-right: 1.5px solid var(--ink);
  padding: 28px;
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.choice:last-child { border-right: 0; }
.choice::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 40%, var(--red) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.choice:hover::after { opacity: 0.08; }
.choice:hover .choice-num { transform: translate(8px,-8px); color: var(--red); }
.choice:hover .choice-img { transform: scale(1.06) rotate(-2deg); }
.choice:hover .choice-go { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--red); }

.choice-num {
  position: absolute;
  top: 20px; left: 26px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 2;
}

.choice-img {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 260px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 60%;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,0.18));
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}

.choice-text {
  position: relative;
  z-index: 2;
  border-top: 1.5px solid var(--ink);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.choice-name {
  font-family: var(--f-display);
  font-size: clamp(44px, 6.5vw, 100px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.choice-name em {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  color: var(--red);
}

.choice-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.choice-go {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  padding: 12px 16px;
  border: 1.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--red);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

/* Step 2: build */
.builder {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: calc(100svh - 84px);
  border-bottom: 1.5px solid var(--ink);
}
.preview {
  position: relative;
  border-right: 1.5px solid var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.preview-stage {
  flex: 1;
  position: relative;
  display: grid;
  place-items: center;
  transition: background 0.5s ease;
  overflow: hidden;
}
.preview-stage::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 32px, rgba(255,255,255,0.04) 32px 33px),
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.04) 0, transparent 70%);
  pointer-events: none;
}
.preview-product {
  position: relative;
  width: 60%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}
.preview-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 36px 40px rgba(0,0,0,0.45));
}
.preview-flash {
  position: absolute;
  inset: 0;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 4;
}
.preview-flash.fire { opacity: 0.55; }
.preview-name-stamp {
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.78);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}
.preview-plate {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--ink);
  padding: 6px 14px;
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6);
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
  min-width: 80px;
  text-align: center;
}
.preview-bottom-bar {
  border-top: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: var(--cream);
}
.preview-stat {
  padding: 14px 18px;
  border-right: 1px dashed var(--ink);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.preview-stat:last-child { border-right: 0; }
.preview-stat b {
  display: block;
  font-family: var(--f-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

/* Options panel */
.options {
  padding: 28px clamp(20px, 3vw, 40px);
  overflow-y: auto;
  max-height: calc(100svh - 84px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.options-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 16px;
}
.options-header h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 0.9;
}
.options-header h2 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  color: var(--red);
}
.options-back {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
}
.options-back:hover { background: var(--ink); color: var(--cream); }

.opt-group { display: flex; flex-direction: column; gap: 10px; }
.opt-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.opt-label .val {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--red);
}

.opt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.opt-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.opt-chip:hover { transform: translateY(-1px); }
.opt-chip.active { background: var(--ink); color: var(--cream); }

.opt-swatches {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.opt-swatch {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
}
.opt-swatch .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease;
}
.opt-swatch:hover .dot { transform: translate(-1px,-1px); }
.opt-swatch.active .dot {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.opt-swatch .lbl {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.1em;
  text-transform: uppercase;
}

.opt-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.opt-input:focus { outline: 2px solid var(--red); outline-offset: 2px; }

.opt-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}
.opt-toggle .lbl {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.opt-toggle .delta {
  font-family: var(--f-mono); font-size: 10px; color: var(--muted);
  margin-left: 8px;
}
.opt-toggle .switch {
  width: 36px; height: 20px;
  background: #d8d2c2;
  border: 1.5px solid var(--ink);
  position: relative;
  transition: background 0.2s;
}
.opt-toggle.on .switch { background: var(--red); }
.opt-toggle .switch::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 16px;
  background: var(--cream);
  border-right: 1.5px solid var(--ink);
  transition: transform 0.2s;
}
.opt-toggle.on .switch::after {
  transform: translateX(15px);
  border-right: 0;
  border-left: 1.5px solid var(--ink);
}

.summary {
  border-top: 1.5px solid var(--ink);
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.summary-row .val {
  font-family: var(--f-serif); font-size: 16px; font-style: italic;
  text-transform: none; letter-spacing: 0;
}
.summary-total {
  margin-top: 6px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px dashed var(--ink);
  padding-top: 10px;
}
.summary-total .label {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.summary-total .price {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.9;
}
.summary-total .price em {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  color: var(--red);
}

.options .btn-red {
  margin-top: 4px;
  justify-content: center;
  width: 100%;
  padding: 16px;
}

/* responsive */
@media (max-width: 900px) {
  .builder { grid-template-columns: 1fr; }
  .preview { border-right: 0; border-bottom: 1.5px solid var(--ink); min-height: 60svh; }
  .preview-product { width: 70%; }
  .options { max-height: none; }
  .chooser-head { grid-template-columns: 1fr; }
  .chooser-cards { grid-template-columns: 1fr; }
  .choice { min-height: 50svh; border-right: 0; border-bottom: 1.5px solid var(--ink); }
}

.opt-input.err { border-color: var(--red); color: var(--red); }
textarea.opt-input { font-family: var(--f-mono); resize: vertical; min-height: 80px; }

/* ============================================================
   ORDER PAGE  (siparis.html)
============================================================ */
.order {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: calc(100svh - 84px);
  border-bottom: 1.5px solid var(--ink);
}
.order-summary {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 84px;
  align-self: start;
  max-height: calc(100svh - 84px);
  overflow-y: auto;
  border-right: 1.5px solid var(--ink);
}
.order-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.order-num {
  border: 1px solid rgba(241,236,223,0.3);
  padding: 6px 10px;
  text-align: right;
}

.order-items {
  list-style: none;
  border-top: 1px solid rgba(241,236,223,0.15);
  border-bottom: 1px solid rgba(241,236,223,0.15);
}
.order-items li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(241,236,223,0.15);
  align-items: start;
}
.order-items li:last-child { border-bottom: 0; }
.order-item-sw {
  aspect-ratio: 1 / 1.2;
  border: 1.5px solid var(--cream);
  display: grid; place-items: center;
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  box-shadow: 3px 3px 0 var(--red);
}
.order-item-body { display: flex; flex-direction: column; gap: 4px; }
.order-item-price {
  text-align: right;
  display: flex; flex-direction: column; gap: 4px;
}

.order-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-tot-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.order-tot-grand {
  margin-top: 6px;
  border-top: 1px solid rgba(241,236,223,0.3);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.order-tot-grand .mono {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.order-tot-grand .display {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.order-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid rgba(241,236,223,0.15);
  padding-top: 18px;
}
.order-flow-step {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241,236,223,0.85);
  display: flex; align-items: center; gap: 8px;
}
.order-flow-step .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
}

/* form side */
.order-form {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: var(--cream);
}
.order-form-head h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.order-form-head h1 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  color: var(--red);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.span-2 { grid-column: span 2; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.bank-card {
  border: 1.5px solid var(--ink);
  padding: 16px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bank-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.bank-card-iban {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed var(--ink);
  border-bottom: 1px dashed var(--ink);
  padding: 12px 0;
}
.copy-btn {
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 8px 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 3px 3px 0 var(--red);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.copy-btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--red); }

.whats-btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  background: #25D366 !important;
  color: #fff !important;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink) !important;
}
.whats-btn:hover { background: #1ebe5b !important; transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink) !important; }
.whats-btn svg { flex-shrink: 0; }
.whats-btn:disabled { opacity: 0.7; cursor: wait; }

.order-empty {
  padding: clamp(60px, 12vh, 160px) var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1.5px solid var(--ink);
  min-height: calc(100svh - 84px);
  justify-content: center;
}

@media (max-width: 900px) {
  .order { grid-template-columns: 1fr; }
  .order-summary { position: relative; top: 0; max-height: none; border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .form-grid { grid-template-columns: 1fr; }
  .field.span-2 { grid-column: span 1; }
}

/* responsive trims */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-bottom-row { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .products-intro { grid-template-columns: 1fr; }
  .product, .product.flip { grid-template-columns: 1fr; }
  .product.flip .product-image { order: 0; border-left: 0; border-bottom: 1.5px solid var(--ink); }
  .product.flip .product-info { order: 1; border-right: 0; }
  .product-image { border-right: 0; border-bottom: 1.5px solid var(--ink); aspect-ratio: 4/3; }
  .customize-grid { grid-template-columns: 1fr 1fr; }
  .qr { grid-template-columns: 1fr; }
  .qr-left { border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .qr-right { min-height: 60svh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-sticker { width: 120px; height: 120px; font-size: 9px; }
  /* Speed up ticker on smaller screens so motion is perceptible */
  .ticker-track { animation-duration: 20s; }
  .kinetic-marquee-track { animation-duration: 16s; }
}
@media (max-width: 600px) {
  .ticker-track { animation-duration: 14s; font-size: 11px; }
  .ticker-track span { padding: 0 16px; gap: 16px; }
  .kinetic-marquee-track { animation-duration: 10s; }
}

/* ============================================================
   DARK THEME
   ----------------------------------------------------------
   Inverts the cream/ink palette while keeping the red accent
   and the visual rhythm. Sections that were dark-on-light
   (product images, customize, ticker) become light-on-dark —
   the brutalist contrast is preserved, just flipped.
============================================================ */
html[data-theme="dark"] {
  --cream: #0e0c08;
  --cream-2: #1a1813;
  --paper: #15130d;
  --ink: #f1ecdf;
  --ink-2: #e7e0cd;
  --muted: #8a8472;
  --line: #f1ecdf;
  color-scheme: dark;
}

/* Grain overlay flips blend mode so it stays visible on dark bg */
html[data-theme="dark"] body::before {
  mix-blend-mode: screen;
  opacity: 0.05;
}

/* The red accent on white-ish dark surfaces benefits from a tiny lift */
html[data-theme="dark"] {
  --red: #ff3a30;
  --red-deep: #e1261c;
}

/* Newsletter input has transparent bg + ink border + ink text.
   In dark mode the ink is light, so default is fine — but the
   placeholder color needs to lift to be readable. */
html[data-theme="dark"] .footer-newsletter input[type="email"]::placeholder {
  color: rgba(241, 236, 223, 0.45);
}

/* Form inputs (sipariş sayfası) use white-ish bg by default — flip. */
html[data-theme="dark"] .opt-input {
  background: var(--cream-2);
  color: var(--ink);
}
html[data-theme="dark"] .opt-input::placeholder {
  color: rgba(241, 236, 223, 0.35);
}

/* ============================================================
   THEME TOGGLE BUTTON (lives in nav, next to lang toggle)
============================================================ */
.theme-toggle {
  width: 36px;
  height: 26px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  font-family: var(--f-mono);
}
.theme-toggle:hover {
  background: var(--ink);
  color: var(--cream);
}
.theme-toggle svg {
  width: 14px;
  height: 14px;
  display: block;
}

