/* ---------- Tokens ---------- */
:root {
  /* Single theme: White / Black / restrained warm accent */
  --bg: #ffffff;
  --bg-elev: #f7f6f3;
  --bg-deep: #efede7;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --ink-2: #2a2a2a;
  --ink-3: #6e6e6e;
  --ink-4: #a0a0a0;
  --line: #e6e3dc;
  --line-2: #d2cec3;
  --gold: #8a6a1f;
  --gold-2: #b08a2e;
  --gold-3: #d4af4a;
  --gold-soft: #f3ead4;
  --danger: #b04030;
  --ok: #2a6a3a;

  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-sans: "DM Serif Text", Georgia, "Times New Roman", serif;
  --font-mono: "DM Serif Text", Georgia, "Times New Roman", serif;

  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
}

/* Accent variants (subtle) */
[data-accent="warm"] {
  --gold: #8a6a1f;
  --gold-2: #b08a2e;
  --gold-3: #d4af4a;
}

[data-accent="black"] {
  --gold: #0a0a0a;
  --gold-2: #2a2a2a;
  --gold-3: #4a4a4a;
}

[data-accent="cool"] {
  --gold: #2d4a6e;
  --gold-2: #3a5e8a;
  --gold-3: #5577a8;
}

/* Removed palette variants */

/* Typography preset: removed — Inter only */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.thin-divider {
  height: 1px;
  background: var(--line);
}

.muted {
  color: var(--ink-3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-sm);
  transition: opacity .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.88;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  opacity: 1;
  border-color: var(--ink);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.btn--gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  opacity: 1;
}

.btn--link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.btn--link:hover {
  color: var(--gold);
}

.btn--small {
  padding: 10px 14px;
  font-size: 12px;
}

/* ---------- Page chrome ---------- */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

/* Announce bar — light */
.announce {
  background: var(--bg);
  color: var(--ink-3);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.announce-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.announce-item::before {
  content: "◆";
  color: var(--gold-2);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.brand-logo {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-est {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.nav a {
  font-size: 13px;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 1px;
  background: var(--ink);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.lang-toggle button {
  padding: 5px 10px;
  color: var(--ink-3);
  cursor: pointer;
}

.lang-toggle button.on {
  background: var(--ink);
  color: var(--bg);
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color .2s, color .2s;
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobil menü */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: border-color .2s;
}

.menu-toggle:hover {
  border-color: var(--gold);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}

.header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(10, 10, 10, 0.5);
  opacity: 0;
  transition: opacity .3s ease;
  cursor: pointer;
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 340px);
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: max(16px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-nav-links a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--ink);
}

.mobile-nav-links a.active {
  color: var(--gold);
}

.mobile-nav-foot {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-account {
  width: 100%;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* Responsive grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-2-wide {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.grid-2-cert {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.products--related {
  grid-template-columns: repeat(3, 1fr);
}

.pdp-visual-slide {
  padding: 60px;
}

.iban-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

/* Hero — video background */
.hero {
  position: relative;
  min-height: clamp(640px, 86vh, 880px);
  overflow: hidden;
  background: #0a0a0a;
  color: #f8f7f4;
  display: flex;
  align-items: flex-end;
}

/* Slides stack */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fallback {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(170, 130, 60, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(120, 90, 40, 0.45), transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 0, 0, 0.7), transparent 50%),
    linear-gradient(180deg, #1a1612 0%, #0a0806 100%);
  background-size: 140% 140%, 120% 120%, 100% 100%, 100% 100%;
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero-fallback.warm {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(212, 160, 70, 0.4), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(140, 90, 30, 0.5), transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 0, 0, 0.7), transparent 50%),
    linear-gradient(180deg, #1a1410 0%, #080604 100%);
  background-size: 140% 140%, 120% 120%, 100% 100%, 100% 100%;
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero-fallback.cool {
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(80, 100, 140, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(180, 150, 80, 0.25), transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 0, 0, 0.75), transparent 50%),
    linear-gradient(180deg, #0d1018 0%, #050709 100%);
  background-size: 140% 140%, 120% 120%, 100% 100%, 100% 100%;
  animation: heroDrift 34s ease-in-out infinite alternate;
}

.hero-fallback.sepia {
  background:
    radial-gradient(ellipse 80% 70% at 60% 50%, rgba(180, 130, 70, 0.3), transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(220, 180, 100, 0.18), transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 0, 0, 0.6), transparent 50%),
    linear-gradient(180deg, #1c1612 0%, #0a0805 100%);
  background-size: 140% 140%, 120% 120%, 100% 100%, 100% 100%;
  animation: heroDrift 38s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    background-position: 0% 0%, 100% 100%, 50% 100%, 0 0;
  }

  to {
    background-position: 30% 20%, 70% 80%, 50% 100%, 0 0;
  }
}

/* Per-slide subtle motion */
.hero-slide .hero-video,
.hero-slide .hero-fallback {
  transform: scale(1.06);
  transition: transform 9s ease-out;
}

.hero-slide.active .hero-video,
.hero-slide.active .hero-fallback {
  transform: scale(1.0);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0.18 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 11;
  width: 100%;
  padding: 96px 0 88px;
}

/* Slide content fade-in stagger */
.hero-slide-content {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease-out 0.15s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(248, 247, 244, 0.7);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-3);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 116px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 1100px;
  color: #f8f7f4;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-3);
}

.hero-lede {
  max-width: 560px;
  font-size: 16px;
  color: rgba(248, 247, 244, 0.78);
  margin-bottom: 36px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-ctas .btn {
  background: #f8f7f4;
  color: #0a0a0a;
  border-color: #f8f7f4;
}

.hero-ctas .btn:hover {
  background: transparent;
  color: #f8f7f4;
  opacity: 1;
}

.hero-ctas .btn--ghost {
  background: transparent;
  color: #f8f7f4;
  border-color: rgba(248, 247, 244, 0.4);
}

.hero-ctas .btn--ghost:hover {
  background: #f8f7f4;
  color: #0a0a0a;
  border-color: #f8f7f4;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(248, 247, 244, 0.18);
  padding-top: 28px;
  max-width: 720px;
}

.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f8f7f4;
}

.hero-meta-item .lbl {
  margin-top: 8px;
  color: rgba(248, 247, 244, 0.6);
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  padding: 0 var(--pad-x);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-controls>* {
  pointer-events: auto;
}

.hero-progress {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-progress-bar {
  width: 56px;
  height: 2px;
  background: rgba(248, 247, 244, 0.18);
  position: relative;
  cursor: pointer;
  transition: width .3s ease, background .3s;
}

.hero-progress-bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #f8f7f4;
  transition: width .15s linear;
}

.hero-progress-bar.active {
  width: 88px;
}

.hero-progress-bar.active .fill {
  background: var(--gold-3);
  animation: heroProgress 7s linear forwards;
}

.hero-progress-bar.paused .fill {
  animation-play-state: paused;
}

@keyframes heroProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.hero-counter {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(248, 247, 244, 0.7);
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-counter .cur {
  color: #f8f7f4;
}

.hero-counter .sep {
  width: 24px;
  height: 1px;
  background: rgba(248, 247, 244, 0.3);
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 247, 244, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8f7f4;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  background: transparent;
}

.hero-arrow:hover {
  background: rgba(248, 247, 244, 0.08);
  border-color: rgba(248, 247, 244, 0.6);
}

/* Small video label for designer (kept off by default — removed earlier) */
.hero-vid-tag {
  display: none;
}

/* Trust strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: var(--bg-elev);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity .2s;
  white-space: nowrap;
}

.trust-logo:hover {
  opacity: 1;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head .head-l {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-head .eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 700px;
}

.section-head .meta {
  color: var(--ink-3);
  font-size: 15px;
  max-width: 380px;
  line-height: 1.55;
  padding-bottom: 12px;
}

/* Big tagline section */
.tagline-section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tagline-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

/* Tagline timeline — progression through the decades */
.tagline-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 72px;
  padding-top: 36px;
  position: relative;
  border-top: 1px solid var(--line);
}

.tagline-timeline::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      var(--line) 0%,
      var(--line-2) 30%,
      var(--ink-3) 70%,
      var(--gold) 100%);
}

.tagline-tl-item {
  position: relative;
  padding: 0 24px 0 0;
}

.tagline-tl-item::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  transition: transform .25s;
}

.tagline-tl-item:nth-child(2)::before {
  border-color: var(--ink-4);
}

.tagline-tl-item:nth-child(3)::before {
  border-color: var(--ink-3);
}

.tagline-tl-item:nth-child(4)::before {
  background: var(--ink-3);
  border-color: var(--ink-3);
}

.tagline-tl-item:nth-child(5)::before {
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.tagline-tl-item:last-child::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 74, 0.16);
}

.tagline-tl-item:last-child::after {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  animation: tlPulse 2.4s ease-in-out infinite;
}

@keyframes tlPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }

  50% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.tagline-tl-item .yr {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.tagline-tl-item:nth-child(4) .yr,
.tagline-tl-item:nth-child(5) .yr {
  color: var(--ink-2);
}

.tagline-tl-item:last-child .yr {
  color: var(--ink);
}

.tagline-tl-item .t {
  font-size: 13px;
  font-weight: 500;
  margin-top: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.tagline-tl-item:last-child .t {
  color: var(--gold);
}

.tagline-tl-item .b {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
  max-width: 180px;
  line-height: 1.45;
}

/* Products grid */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 20px;
  transition: border-color .25s, transform .25s, background .25s;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold);
  background: var(--bg-deep);
}

.product-card:hover .product-thumb .gold-bar-photo {
  transform: translateY(-4px);
}

.product-thumb {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.product-thumb .gold-bar-photo {
  transition: transform .35s ease;
}

.product-thumb .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

.product-card .pname {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-card .pmeta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: var(--ink-3);
  font-size: 12px;
}

.product-card .pfoot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-card .price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.product-card .arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-3);
}

.product-card:hover .arrow {
  color: var(--gold);
}

/* Process / refining */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 220px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.process-step p {
  color: var(--ink-3);
  font-size: 13px;
}

/* Big stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.stat {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat .v {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.stat .l {
  margin-top: 12px;
}

.stat .d {
  color: var(--ink-3);
  font-size: 12px;
  margin-top: 6px;
}

/* Editorial / split blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.split>div {
  padding: 56px;
  border-right: 1px solid var(--line);
}

.split>div:last-child {
  border-right: 0;
}

.split h3 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.split p {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 520px;
}

/* Certificate verification card */
.cert-card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 40px;
}

.cert-form {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.cert-form input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.cert-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  border-color: var(--gold);
}

.cert-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 12px;
}

.cert-result {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ok);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.cert-result.invalid {
  border-left-color: var(--danger);
}

.cert-result .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.cert-result .row .k {
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  padding-top: 2px;
}

.cert-result .row .v {
  color: var(--ink);
}

.cert-result .status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ok);
}

.cert-result.invalid .status {
  color: var(--danger);
}

.cert-result .status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.cert-result.invalid .status::before {
  background: var(--danger);
}

/* Press quotes */
.press {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.press-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}

.press-item:last-child {
  border-right: 0;
}

.press-item .src {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
}

.press-item .q {
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink-2);
  margin-bottom: 16px;
  text-wrap: balance;
}

.press-item .date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #f8f7f4;
  padding: 72px 0 28px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.55);
  margin-bottom: 18px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(248, 247, 244, 0.82);
  font-size: 13px;
}

.footer ul li a:hover {
  color: var(--gold-3);
}

.footer .big {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  font-weight: 500;
  color: #f8f7f4;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 247, 244, 0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.5);
}

/* ---------- Product Detail ---------- */
.pdp {
  padding: 40px 0 56px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}

.pdp-visual {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.pdp-visual .toolbar {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdp-visual .rot-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.pdp-thumbs>div {
  aspect-ratio: 1/1;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pdp-thumbs>div.on {
  border-color: var(--gold);
}

.pdp-thumbs>div .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
}

.pdp-right {
  display: flex;
  flex-direction: column;
}

.pdp-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  font-weight: 500;
}

.pdp-tagline {
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.5;
}

.pdp-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.pdp-quick>div {
  padding: 14px 0;
  border-right: 1px solid var(--line);
}

.pdp-quick>div:last-child {
  border-right: 0;
  padding-left: 16px;
}

.pdp-quick>div:nth-child(2) {
  padding-left: 16px;
}

.pdp-quick .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.pdp-quick .v {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 0 0 24px;
  margin-bottom: 24px;
}

.pdp-price .v {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.pdp-price .u {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.pdp-price .live-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdp-price .live-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.pdp-price-note {
  color: var(--ink-3);
  font-size: 12px;
  margin: -16px 0 20px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.qty button {
  width: 38px;
  height: 40px;
  color: var(--ink);
}

.qty button:hover {
  background: var(--line);
}

.qty input {
  width: 56px;
  height: 40px;
  text-align: center;
  background: transparent;
  border: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
}

.pdp-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pdp-actions .btn {
  padding: 16px 26px;
  font-size: 13px;
}

.pdp-extras {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pdp-extras div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-extras div::before {
  content: "◆";
  color: var(--gold);
}

/* PDP sections below */
.pdp-sections {
  padding: 80px 0 96px;
  border-top: 1px solid var(--line);
  margin-top: 64px;
}

.pdp-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.pdp-section:last-child {
  border-bottom: 0;
}

.pdp-section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: end;
}

.pdp-section-head .eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 14px;
}

.pdp-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.desc-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  margin-top: 28px;
}

.desc-body p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 640px;
}

.spec-table {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  margin-top: 28px;
}

.spec-table .spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 760px;
}

.spec-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
}

.spec-table .row .k {
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  padding-top: 2px;
}

.spec-table .row:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.spec-table .row:nth-child(even) {
  padding-left: 32px;
}

.faq {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  margin-top: 28px;
}

.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: var(--ink);
}

.faq-q:hover {
  color: var(--gold-2);
}

.faq-toggle {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-3);
  transition: transform .2s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 0 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
}

/* Product catalog (full page) */
.cat-head {
  padding: 56px 0 24px;
}

.cat-head h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.cat-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin: 24px 0 32px;
}

.cat-filters .chips {
  display: flex;
  gap: 8px;
}

.cat-filters .chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
}

.cat-filters .chip.on {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.cat-sort {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}

.cat-sort select {
  background: transparent;
  border: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  cursor: pointer;
}

/* About page */
.about-hero {
  padding: 80px 0 56px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 1100px;
  font-weight: 500;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tl-item {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.tl-item:last-child {
  border-right: 0;
}

.tl-item .yr {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.tl-item .t {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 12px;
}

/* Market / Piyasa */
.market-hero {
  padding: 56px 0;
}

.market-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.chart-card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 28px;
}

.chart-card-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
}

.chart-card-head .pair {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.chart-card-head .change {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ok);
}

.chart-card-head .change.down {
  color: var(--danger);
}

.chart-wrap {
  height: 320px;
  position: relative;
}

.market-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.market-side .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.market-side .item .nm {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.market-side .item .pr {
  font-family: var(--font-mono);
  font-size: 12px;
}

.market-side .item .ch {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ok);
}

.market-side .item .ch.down {
  color: var(--danger);
}

/* Refine service */
.refine-hero {
  padding: 80px 0 40px;
}

.refine-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.refine-form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 40px;
}

.refine-form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  border-color: var(--gold);
}

.field--full {
  grid-column: 1 / -1;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-head {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 8px 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-item .thumb {
  width: 60px;
  height: 60px;
  background: var(--bg-elev);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item .thumb .gold-bar-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item .nm {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cart-item .sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
}

.cart-item .pr {
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: right;
}

.cart-item .rm {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 6px;
  text-align: right;
}

.cart-item .rm:hover {
  color: var(--danger);
}

.cart-foot {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 6px;
}

.cart-total.big {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 14px 0 18px;
}

.cart-cta {
  width: 100%;
  justify-content: center;
}

.cart-empty {
  padding: 64px 24px;
  text-align: center;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Calculator */
.calc {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 32px;
}

.calc h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.calc .out {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.calc .out .v {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.calc .out .u {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 56px 0 96px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-info .blk {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info .blk .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.contact-info .blk .v {
  font-size: 17px;
  margin-top: 6px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  z-index: 200;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===================== Checkout ===================== */
.checkout {
  padding: 56px 0 96px;
}

.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  gap: 32px;
}

.checkout-head .eyebrow {
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.checkout-head h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-top: 12px;
}

.checkout-head .sub {
  color: var(--ink-3);
  font-size: 15px;
  max-width: 360px;
  text-align: right;
}

.checkout-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.checkout-steps .step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.checkout-steps .step .n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
}

.checkout-steps .step.active .n {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.checkout-steps .step.done .n {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.checkout-steps .step .lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
}

.checkout-steps .step.active .lbl,
.checkout-steps .step.done .lbl {
  color: var(--ink);
}

.checkout-steps .step .bar {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.checkout-steps .step:last-child .bar {
  display: none;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.checkout-section {
  padding: 0;
}

.checkout-section h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.checkout-section .lede {
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 24px;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  border: 1px solid var(--line);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  align-items: center;
}

.method:hover {
  border-color: var(--ink-3);
}

.method.on {
  border-color: var(--ink);
  background: var(--bg-elev);
}

.method .radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
}

.method.on .radio {
  border-color: var(--ink);
}

.method.on .radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.method .label-l .l {
  font-weight: 500;
  font-size: 15px;
}

.method .label-l .s {
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 2px;
}

.method .price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.checkout-actions .secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.checkout-actions .secure::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

/* card preview */
.card-preview {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: #f8f7f4;
  border-radius: 8px;
  padding: 28px 24px;
  aspect-ratio: 1.586/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  max-width: 380px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
}

.card-preview::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212, 175, 74, 0.35), transparent 60%);
}

.card-preview .brand-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.card-preview .chip {
  width: 36px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(135deg, #c9a14b, #8a6a1f);
  position: relative;
}

.card-preview .num {
  font-size: 22px;
  letter-spacing: 0.15em;
}

.card-preview .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.card-preview .row .k {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 9px;
}

.payment-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.payment-tabs button {
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  position: relative;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.payment-tabs button.on {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Summary sidebar */
.checkout-summary {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 28px;
}

.checkout-summary h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary .item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-summary .item .th {
  width: 48px;
  height: 48px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.checkout-summary .item .th .gold-bar-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-summary .item .nm {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.checkout-summary .item .sub {
  color: var(--ink-3);
  font-size: 11px;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.checkout-summary .item .pr {
  font-size: 13px;
  font-weight: 500;
}

.summary-totals {
  padding-top: 16px;
}

.summary-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  color: var(--ink-2);
}

.summary-totals .row.big {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.review-block {
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}

.review-block .h {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.review-block .v {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.review-block .v strong {
  font-weight: 600;
}

.review-block .edit {
  font-size: 12px;
  color: var(--ink-3);
  border-bottom: 1px solid currentColor;
  align-self: start;
  cursor: pointer;
}

.review-block .edit:hover {
  color: var(--ink);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  margin: 24px 0;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
}

/* ===================== Success ===================== */
.success {
  padding: 80px 0 96px;
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ok);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.success h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.success .sub {
  color: var(--ink-3);
  font-size: 17px;
  margin-top: 16px;
  max-width: 460px;
  line-height: 1.5;
}

.success-details {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--bg-elev);
}

.success-details .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.success-details .row:last-child {
  border-bottom: 0;
}

.success-details .row .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.success-details .row .v {
  font-size: 14px;
  font-weight: 500;
}

.success-details .row.big .v {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.success-next {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.next-steps {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.next-steps h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.next-step {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.next-step:last-child {
  border-right: 0;
}

.next-step .n {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.next-step h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}

.next-step p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ===================== Auth ===================== */
.auth {
  padding: 80px 0 96px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 540px;
}

.auth-left {
  padding-right: 32px;
}

.auth-left h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 560px;
}

.auth-left .sub {
  margin-top: 20px;
  color: var(--ink-3);
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
}

.auth-left .feature-list {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-left .feature {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}

.auth-left .feature .ico {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.auth-left .feature .t {
  font-weight: 500;
  font-size: 14px;
}

.auth-left .feature .b {
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 2px;
}

.auth-card {
  border: 1px solid var(--line);
  padding: 40px;
  background: var(--bg);
}

.auth-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.auth-card .sub {
  color: var(--ink-3);
  font-size: 14px;
  margin: 8px 0 28px;
}

.auth-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.auth-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn--social {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
  justify-content: center;
  width: 100%;
}

.btn--social:hover {
  background: var(--bg-elev);
  color: var(--ink);
  border-color: var(--ink-3);
  opacity: 1;
}

.auth-foot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}

.auth-foot a,
.auth-foot button {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.auth-foot a:hover,
.auth-foot button:hover {
  color: var(--gold);
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link-quiet {
  color: var(--ink-3);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.link-quiet:hover {
  color: var(--ink);
  border-bottom-color: currentColor;
}

/* ===================== Profile ===================== */
.profile-page {
  padding: 56px 0 96px;
}

.profile-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.profile-head .who {
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.profile-head .nm {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.profile-head .em {
  color: var(--ink-3);
  font-size: 14px;
  margin-top: 6px;
}

.profile-head .meta {
  display: flex;
  gap: 32px;
}

.profile-head .meta .item .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.profile-head .meta .item .v {
  font-size: 15px;
  margin-top: 4px;
  font-weight: 500;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-badge::before {
  content: "◆";
}

.profile-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-nav {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
}

.profile-nav button {
  text-align: left;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-3);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: color .15s, background .15s, padding-left .15s;
}

.profile-nav button:hover {
  color: var(--ink);
  padding-left: 24px;
}

.profile-nav button.on {
  color: var(--ink);
  background: var(--bg-elev);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  font-weight: 500;
}

.profile-nav button:first-child {
  border-top: 1px solid var(--line);
}

.profile-nav .logout {
  color: var(--danger);
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.profile-nav .logout:hover {
  color: var(--danger);
}

.profile-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 32px;
}

.profile-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 40px;
}

.profile-stat {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.profile-stat:last-child {
  border-right: 0;
}

.profile-stat .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.profile-stat .v {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 12px;
  line-height: 1;
}

.profile-stat .s {
  color: var(--ink-3);
  font-size: 12px;
  margin-top: 6px;
}

/* Orders table */
.orders-table {
  border: 1px solid var(--line);
}

.orders-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 14px;
}

.orders-row:last-child {
  border-bottom: 0;
}

.orders-row.header {
  background: var(--bg-elev);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.orders-row.clickable {
  cursor: pointer;
  transition: background .15s;
}

.orders-row.clickable:hover {
  background: var(--bg-elev);
}

.orders-row .no {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.orders-row .total {
  font-weight: 500;
}

.orders-row .view {
  text-align: right;
  font-size: 13px;
  color: var(--ink-3);
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  justify-self: end;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-delivered {
  background: rgba(42, 106, 58, 0.08);
  color: var(--ok);
}

.status-delivered::before {
  background: var(--ok);
}

.status-processing {
  background: rgba(212, 175, 74, 0.12);
  color: var(--gold);
}

.status-processing::before {
  background: var(--gold);
}

.status-shipped {
  background: rgba(45, 74, 110, 0.08);
  color: #2d4a6e;
}

.status-shipped::before {
  background: #2d4a6e;
}

.status-cancelled {
  background: rgba(176, 64, 48, 0.08);
  color: var(--danger);
}

.status-cancelled::before {
  background: var(--danger);
}

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-bar .chip {
  padding: 6px 14px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-3);
}

.filter-bar .chip.on {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.filter-bar .chip:hover:not(.on) {
  border-color: var(--ink-3);
  color: var(--ink);
}

/* Page enter animation */
.page-enter {
  animation: pageIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3D bar perspective — removed */

/* Responsive — tablet */
@media (max-width: 1000px) {
  .nav--desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 0;
  }

  .header-tools {
    gap: 10px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .products--related {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .press {
    grid-template-columns: 1fr;
  }

  .press-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pdp-grid,
  .market-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .pdp-section-head,
  .desc-body,
  .spec-table,
  .faq {
    grid-template-columns: 1fr;
  }

  .grid-2-wide,
  .grid-2-cert {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    min-height: min(92vh, 640px);
  }

  .hero h1 {
    font-size: clamp(36px, 9vw, 56px);
  }

  .hero-lede {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hero-meta-item .num {
    font-size: 32px;
  }

  .hero-controls {
    flex-wrap: wrap;
    gap: 16px;
    bottom: 20px;
  }

  .hero-progress {
    order: 1;
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 48px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .section-head .meta {
    text-align: left;
    max-width: none;
  }

  .tagline-section {
    padding: 72px 0;
  }

  .tagline-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
    padding-top: 48px;
  }

  .tagline-timeline::before {
    display: none;
  }

  .tagline-tl-item {
    padding-left: 24px;
    padding-right: 0;
  }

  .tagline-tl-item::before {
    top: 6px;
    left: 0;
  }

  .tagline-tl-item:last-child::after {
    top: 6px;
    left: 0;
  }

  .cat-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cat-filters .chips {
    flex-wrap: wrap;
  }

  .cat-head {
    padding: 40px 0 16px;
  }

  .cat-head h1 {
    font-size: clamp(36px, 8vw, 56px);
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-head .sub {
    text-align: left;
    max-width: none;
  }

  .auth-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile-nav {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }

  .profile-nav button {
    flex: 1;
    border: 1px solid var(--line);
    min-width: 120px;
  }

  .profile-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .next-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .orders-row {
    grid-template-columns: 1fr 1fr;
  }

  .orders-row.header {
    display: none;
  }

  .refine-form {
    padding: 28px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .calc {
    padding: 24px 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Responsive — telefon */
@media (max-width: 640px) {
  :root {
    --pad-x: 16px;
  }

  .header-tools .lang-toggle--header {
    display: none;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-est {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .announce {
    font-size: 10px;
  }

  .announce-track {
    gap: 40px;
  }

  .hero {
    min-height: min(100svh, 720px);
    align-items: flex-end;
  }

  .hero-content {
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 14px;
    max-width: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 36px;
  }

  .hero-ctas .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-meta-item .num {
    font-size: 28px;
  }

  .hero-counter {
    display: none;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-progress-bar {
    width: 40px;
  }

  .hero-progress-bar.active {
    width: 64px;
  }

  .section {
    padding: 56px 0;
  }

  .section--tight {
    padding: 40px 0;
  }

  .section-head h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .tagline-big {
    font-size: clamp(40px, 12vw, 72px);
  }

  .tagline-timeline {
    grid-template-columns: 1fr;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .products--related {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 16px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .tl-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-logos {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer .big {
    font-size: clamp(28px, 8vw, 40px);
  }

  .pdp-visual {
    min-height: 280px;
  }

  .pdp-visual-slide {
    padding: 24px !important;
  }

  .pdp-visual-slide .gold-bar-photo {
    max-height: 240px;
    width: auto;
    height: auto;
  }

  .pdp-name {
    font-size: clamp(28px, 8vw, 40px);
  }

  .spec-table .spec-list {
    grid-template-columns: 1fr;
  }

  .pdp-thumbs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-hero {
    padding: 48px 0 32px;
  }

  .about-hero h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .refine-hero,
  .market-hero {
    padding: 40px 0 24px;
  }

  .refine-hero h1,
  .market-hero h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .chart-wrap {
    height: 220px;
  }

  .chart-card {
    padding: 20px 16px;
  }

  .chart-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .chart-card-head .pair {
    font-size: 26px;
  }

  .checkout-steps {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .checkout-steps .step {
    flex: none;
  }

  .checkout-steps .step .bar {
    display: none;
  }

  .checkout-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .cart-item .pr,
  .cart-item .rm {
    grid-column: 2;
    text-align: left;
  }

  .cart-drawer {
    width: 100%;
  }

  .auth-grid .auth-left h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }

  .address-grid {
    grid-template-columns: 1fr !important;
  }

  .iban-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cat-head p {
    font-size: 15px;
  }

  .calc .out .v {
    font-size: 32px;
  }
}