/* ============ TOKENS ============ */
:root {
  --sand: #F7F1E3;
  --sand-deep: #EFE5CE;
  --paper: #FDFAF3;
  --ink: #2B2318;
  --ink-soft: #5C5240;
  --amber: #E8A13C;
  --amber-deep: #C77F1E;
  --terracotta: #C75B39;
  --olive: #6B7250;
  --night: #14120E;
  --night-soft: #211D16;
  --glow: #FFC97A;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --text-base: clamp(1rem, 0.94rem + 0.3vw, 1.125rem);
  --text-hero: clamp(2.6rem, 1.2rem + 6vw, 5.5rem);
  --text-h2: clamp(1.9rem, 1.2rem + 3vw, 3.2rem);

  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --radius-card: 20px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 300ms;
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0; }
p { margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out), background var(--dur), color var(--dur), box-shadow var(--dur);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 8px 24px rgba(199, 91, 57, 0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--paper);
}
.btn-lg { padding: 1.05rem 2.6rem; font-size: 1.1rem; }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--sand) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 35, 24, 0.08);
}
.logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-sun {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(232, 161, 60, 0.25);
  transition: box-shadow var(--dur);
}
.logo:hover .logo-sun { box-shadow: 0 0 0 7px rgba(232, 161, 60, 0.35); }
.logo-sun--small { width: 16px; height: 16px; box-shadow: none; }
.site-header nav { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.site-header nav a {
  text-decoration: none; font-weight: 500; font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur), border-color var(--dur);
}
.site-header nav a:hover, .site-header nav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--amber);
}
.cart-btn {
  position: relative;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background var(--dur), color var(--dur);
}
.cart-btn:hover, .cart-btn:focus-visible { background: var(--ink); color: var(--paper); }
.cart-count[hidden] { display: none; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 20px; height: 20px;
  display: grid; place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem; font-weight: 500;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1.2rem, 5vw, 4rem) clamp(3.5rem, 6vw, 6rem);
  max-width: 1240px;
  margin: 0 auto;
  overflow: visible;
}
.hero-sun {
  position: absolute;
  top: 4%; right: 6%;
  width: clamp(220px, 32vw, 430px);
  height: clamp(220px, 32vw, 430px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,161,60,0.5) 0%, rgba(232,161,60,0.18) 48%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.hero-copy { position: relative; z-index: 1; }
.hero h1 {
  font-size: var(--text-hero);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-sub {
  max-width: 46ch;
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  color: var(--ink-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-visual { position: relative; z-index: 1; }
.hero-lamps { width: 100%; height: auto; }

/* ============ TRUST BAR ============ */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem 1.1rem;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--sand);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-bar span[aria-hidden] { color: var(--amber); }

/* ============ SECTIONS ============ */
.section-head {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
}
.section-head h2 { font-size: var(--text-h2); letter-spacing: -0.015em; }
.section-sub { max-width: 52ch; margin-top: 1rem; color: var(--ink-soft); }

/* ============ PRODUCTS ============ */
.products { padding: var(--space-section) 0 3.5rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: 1240px;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
  align-items: stretch;
}
.product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(43, 35, 24, 0.07);
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(43, 35, 24, 0.22);
}
.product-card--featured {
  background: linear-gradient(180deg, #FBF3E2 0%, var(--paper) 55%);
  border: 1.5px solid var(--amber);
}
.badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-visual {
  overflow: hidden;
  border-radius: 14px;
  margin-top: 0.4rem;
}
.product-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 600ms var(--ease-out);
}
.product-card:hover .product-visual img { transform: scale(1.04); }
.product-info { display: flex; flex-direction: column; gap: 0.8rem; flex: 1; margin-top: 0.5rem; }
.product-title-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.product-title-row h3 { font-size: 1.5rem; }
.price {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
}
.product-desc { color: var(--ink-soft); font-size: 0.97rem; flex: 1; }
.swatches { display: flex; flex-wrap: wrap; gap: 7px; }
.swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(43, 35, 24, 0.18);
  padding: 0;
  transition: transform 200ms var(--ease-out), border-color 200ms, box-shadow 200ms;
}
.swatch:hover { transform: scale(1.18); }
.swatch[aria-checked="true"] {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--sand-deep), 0 0 0 5px var(--amber);
}
.swatch:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.swatch-label { font-size: 0.85rem; color: var(--ink-soft); }
.swatch-current { font-weight: 500; color: var(--ink); }
.btn-add { width: 100%; text-align: center; margin-top: 0.3rem; }
.products-note {
  max-width: 1240px;
  margin: 2rem auto 0;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ============ DUSK ============ */
.dusk {
  background: var(--night);
  color: var(--sand);
  padding: var(--space-section) 0;
  margin-top: var(--space-section);
}
.dusk-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
}
.eyebrow--dusk { color: var(--glow); }
.dusk h2 { font-size: var(--text-h2); letter-spacing: -0.015em; }
.dusk-features {
  list-style: none;
  margin: 2.2rem 0 0; padding: 0;
  display: grid; gap: 1.3rem;
}
.dusk-features li {
  padding-left: 1.6rem;
  position: relative;
  color: rgba(247, 241, 227, 0.75);
  font-size: 1rem;
}
.dusk-features li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber);
}
.dusk-features strong { color: var(--sand); font-weight: 500; }
.dusk-visual { display: grid; place-items: center; }
.glow-wrap {
  position: relative;
  width: min(460px, 100%);
}
.glow-wrap::before {
  content: "";
  position: absolute; inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 122, 0.28) 0%, rgba(255, 201, 122, 0.1) 45%, transparent 70%);
  animation: breathe 4.5s ease-in-out infinite;
}
.glow-wrap img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 60px -12px rgba(255, 180, 90, 0.25);
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

/* ============ STEPS ============ */
.steps { padding: var(--space-section) 0 0; }
.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.steps-grid h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.steps-grid p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============ COLORS ============ */
.colors { padding: var(--space-section) 0 0; }
.color-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.9rem;
  max-width: 1240px;
  margin: 2.2rem auto 0;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
}
.color-list li {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--paper);
  border: 1px solid rgba(43, 35, 24, 0.07);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.color-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(43, 35, 24, 0.15);
}

/* ============ FAQ ============ */
.faq { padding: var(--space-section) 0 0; }
.faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
  display: grid; gap: 0.8rem;
}
.faq-list details {
  background: var(--paper);
  border: 1px solid rgba(43, 35, 24, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  transition: border-color var(--dur);
}
.faq-list details[open] { border-color: var(--amber); }
.faq-list summary {
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform var(--dur) var(--ease-out);
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.97rem; }

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  padding: var(--space-section) clamp(1.2rem, 5vw, 4rem);
}
.final-cta h2 {
  font-size: var(--text-h2);
  margin-bottom: 1.8rem;
  letter-spacing: -0.015em;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--night);
  color: rgba(247, 241, 227, 0.65);
  padding: 2.5rem clamp(1.2rem, 5vw, 4rem);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--sand);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer a {
  color: rgba(247, 241, 227, 0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--dur);
}
.site-footer a:hover, .site-footer a:focus-visible { color: var(--glow); }
.footer-copy { font-size: 0.85rem; width: 100%; }

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20, 18, 14, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--dur);
}
.cart-overlay.open { opacity: 1; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(430px, 100vw);
  display: flex; flex-direction: column;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform 420ms var(--ease-out);
  box-shadow: -20px 0 60px rgba(20, 18, 14, 0.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid rgba(43, 35, 24, 0.1);
}
.cart-head h2 { font-size: 1.5rem; }
.cart-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  font-size: 1rem;
  transition: background var(--dur), color var(--dur);
}
.cart-close:hover { background: var(--ink); color: var(--paper); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.5rem;
  display: grid; gap: 1rem;
  align-content: start;
}
.cart-empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 3rem 1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(43, 35, 24, 0.12);
}
.cart-item-thumb {
  position: relative;
  width: 64px; height: 64px;
}
.cart-item-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(43, 35, 24, 0.1);
}
.cart-item-colordot {
  position: absolute;
  bottom: -5px; right: -5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2.5px solid var(--paper);
  box-shadow: 0 1px 4px rgba(43, 35, 24, 0.25);
}
.cart-item-name { font-weight: 500; font-size: 0.98rem; }
.cart-item-meta { font-size: 0.82rem; color: var(--ink-soft); }
.cart-item-qty {
  display: flex; align-items: center; gap: 0.4rem;
  margin-top: 0.35rem;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(43, 35, 24, 0.25);
  background: transparent;
  font-size: 0.9rem;
  line-height: 1;
  transition: background var(--dur), border-color var(--dur);
}
.qty-btn:hover { background: var(--sand-deep); border-color: var(--ink); }
.cart-item-price { font-weight: 500; white-space: nowrap; }
.cart-item-remove {
  background: none; border: none;
  font-size: 0.78rem;
  color: var(--terracotta);
  text-decoration: underline;
  padding: 0;
  margin-top: 0.3rem;
}
.cart-foot {
  border-top: 1px solid rgba(43, 35, 24, 0.1);
  padding: 1.2rem 1.5rem 1.5rem;
  display: grid; gap: 0.55rem;
}
.cart-row {
  display: flex; justify-content: space-between;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.cart-row--total {
  font-size: 1.15rem; font-weight: 500;
  color: var(--ink);
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(43, 35, 24, 0.15);
}
.btn-checkout, .btn-copy { width: 100%; text-align: center; margin-top: 0.3rem; }
.cart-hint { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translate(-50%, 150%);
  z-index: 120;
  background: var(--ink);
  color: var(--sand);
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 400ms var(--ease-out);
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============ HEADER ACTIONS / ACCOUNT ============ */
.header-actions { display: flex; gap: 0.6rem; }
.account-dot {
  position: absolute; top: -2px; right: -2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--olive);
  border: 2px solid var(--sand);
  opacity: 0;
  transition: opacity var(--dur);
}
#accountBtn.is-logged-in .account-dot { opacity: 1; }

/* ============ FORMULARE ============ */
.field { display: grid; gap: 0.35rem; }
.field-label { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.field-input {
  font: inherit;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(43, 35, 24, 0.2);
  background: var(--paper);
  color: var(--ink);
  transition: border-color var(--dur), box-shadow var(--dur);
  width: 100%;
}
.field-input:focus-visible {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 161, 60, 0.25);
}
.form-error {
  background: rgba(199, 91, 57, 0.1);
  color: var(--terracotta);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
}
.btn-block { width: 100%; text-align: center; }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.link-btn {
  background: none; border: none; padding: 0;
  color: var(--terracotta);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: var(--amber-deep); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 110;
  display: grid; place-items: center;
  padding: 1.2rem;
  background: rgba(20, 18, 14, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 250ms;
}
.modal-overlay.open { opacity: 1; }
.modal {
  position: relative;
  width: min(430px, 100%);
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 2.2rem 1.9rem 1.9rem;
  box-shadow: 0 30px 80px rgba(20, 18, 14, 0.35);
}
.modal-close { position: absolute; top: 1rem; right: 1rem; }
.modal h2 { font-size: 1.7rem; margin-bottom: 0.3rem; }
.auth-sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.auth-form { display: grid; gap: 1rem; }
.auth-switch { margin-top: 1.2rem; text-align: center; }
.profile-perk {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--sand);
  border: 1px dashed var(--amber);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin: 1.2rem 0 1.4rem;
  font-size: 0.93rem;
}
.perk-icon {
  display: grid; place-items: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
}

/* ============ PRODUKT-STATUS ============ */
.badge--soldout {
  background: var(--ink);
  color: var(--sand);
  left: 1.1rem; right: auto;
}
.product-visual.is-soldout img {
  filter: grayscale(0.5) brightness(0.92);
}
.btn-soldout {
  width: 100%; text-align: center;
  background: rgba(43, 35, 24, 0.08);
  border-color: transparent;
  color: var(--ink-soft);
  cursor: not-allowed;
}
.btn-preorder {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-preorder:hover, .btn-preorder:focus-visible {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
}
.preorder-note { font-size: 0.85rem; color: var(--terracotta); font-weight: 500; }
.restock-hint { font-size: 0.85rem; color: var(--ink-soft); }
.restock-form { display: flex; gap: 0.5rem; }
.restock-form .field-input { flex: 1; min-width: 0; }
.restock-done { color: var(--olive); font-weight: 500; font-size: 0.92rem; }

/* ============ RABATTCODE (Warenkorb) ============ */
.discount-code { display: flex; gap: 0.5rem; margin-bottom: 0.4rem; }
.discount-code .field-input { flex: 1; min-width: 0; }
.cart-row--discount { color: var(--olive); font-weight: 500; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--night);
  color: var(--sand);
  margin-top: var(--space-section);
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem);
}
.newsletter-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-size: var(--text-h2); letter-spacing: -0.015em; }
.newsletter-sub { color: rgba(247, 241, 227, 0.72); margin-top: 1rem; }
.newsletter-form {
  display: flex; gap: 0.6rem;
  max-width: 440px;
  margin: 1.8rem auto 0;
}
.newsletter-form .field-input {
  flex: 1; min-width: 0;
  background: rgba(253, 250, 243, 0.08);
  border-color: rgba(247, 241, 227, 0.25);
  color: var(--sand);
}
.newsletter-form .field-input::placeholder { color: rgba(247, 241, 227, 0.4); }
.newsletter-form .btn-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  white-space: nowrap;
}
.newsletter-form .btn-primary:hover { background: var(--glow); border-color: var(--glow); box-shadow: none; }
.newsletter-success {
  margin-top: 1.6rem;
  background: rgba(255, 201, 122, 0.12);
  border: 1px dashed var(--amber);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--glow);
}
.newsletter-note { margin-top: 1.1rem; font-size: 0.82rem; color: rgba(247, 241, 227, 0.5); }
.newsletter-note a { color: rgba(247, 241, 227, 0.7); }

/* ============ VERFÜGBARKEIT (Ampel) ============ */
.stock {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.stock-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
}
.stock--ok { color: #2E7D46; }
.stock--low { color: #C77F1E; }
.stock--out { color: #C0392B; }
.stock--low .stock-dot { animation: stockPulse 1.8s ease-in-out infinite; }
@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ BURGER-MENÜ ============ */
.nav-toggle {
  display: none;
  place-items: center;
  align-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur);
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ ADMIN-VORSCHAU-BANNER ============ */
.preview-banner {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  background: var(--terracotta);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.preview-banner button {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  font-size: 0.82rem;
}
.preview-banner button:hover { background: rgba(255, 255, 255, 0.3); }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero-visual { order: -1; max-width: 420px; }
  .dusk-inner { grid-template-columns: 1fr; }
  .dusk-visual { order: -1; }
  .newsletter-form { flex-direction: column; }

  /* Mobile Navigation: Burger + ausklappbares Panel */
  .nav-toggle { display: grid; }
  .site-header { position: sticky; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(43, 35, 24, 0.1);
    box-shadow: 0 18px 30px -18px rgba(43, 35, 24, 0.3);
    padding: 0.4rem 0;
  }
  .site-header.nav-open nav { display: flex; }
  .site-header nav a {
    padding: 0.95rem clamp(1.2rem, 4vw, 3rem);
    border-bottom: none;
    font-size: 1.05rem;
  }
  .site-header nav a:not(:last-child) { border-bottom: 1px solid rgba(43, 35, 24, 0.07); }
}

/* Smartphone-Feinschliff */
@media (max-width: 560px) {
  .site-header { padding: 0.7rem 1rem; }
  .logo { font-size: 1.25rem; }
  .header-actions { gap: 0.4rem; }
  .hero { padding-left: 1.2rem; padding-right: 1.2rem; }
  .hero-actions .btn { flex: 1; text-align: center; }
  .trust-bar { font-size: 0.8rem; gap: 0.4rem 0.7rem; padding: 0.8rem 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .swatch { width: 32px; height: 32px; }
  .product-title-row h3 { font-size: 1.35rem; }
  .steps-grid { gap: 2rem; }
  .color-list { grid-template-columns: repeat(2, 1fr); }
  .final-cta .btn { width: 100%; text-align: center; }
  .cart-drawer { width: 100vw; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
