* { margin: 0; padding: 0; box-sizing: border-box; }
html.restoring-scroll #main-content { opacity: 0; }
:root {
  --bg: #050c16;
  --bg-elevated: #0a1628;
  --bg-card: #0e1e34;
  --bg-hover: #14263e;
  --border: #1a3050;
  --border-strong: #223c62;
  --text: #e8f0ff;
  --text-muted: #6a8fb0;
  --text-dim: #3a5870;
  --accent: #1a8fff;
  --accent-hover: #40a8ff;
  --accent-dim: rgba(26, 143, 255, 0.13);
  --accent-glow: rgba(26, 143, 255, 0.35);
  --success: #10b981;
  --danger: #ef4444;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background effects */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(26,143,255,.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(26,143,255,.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(5,12,22,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: padding .2s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none; color: var(--text);
}
.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(26,143,255,0.45));
  transition: filter .3s;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 0 18px rgba(26,143,255,0.85));
}
.logo-text { display: none; }
.logo-mark { display: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px;
}
.lang-switch button {
  background: transparent; border: none; color: rgba(255,255,255,.55);
  font-size: 11px; font-weight: 700; letter-spacing: .03em;
  padding: 5px 9px; border-radius: 6px; cursor: pointer; transition: all .15s;
}
.lang-switch button.active { background: var(--accent); color: #fff; }
.lang-switch button:hover:not(.active) { color: #fff; }
.nav-link { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-link:hover { color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; font-family: inherit;
  display: flex; align-items: center; gap: 5px; cursor: pointer; padding: 0;
}
.nav-caret { transition: transform .2s; flex-shrink: 0; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; flex-direction: column; gap: 2px;
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; min-width: 200px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-item {
  display: block; padding: 9px 12px; border-radius: 8px;
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: 14px; font-weight: 500; white-space: nowrap; transition: all .15s;
}
.nav-dropdown-item:hover { background: var(--bg-hover); color: #fff; }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 9px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .15s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.cart-btn {
  background: var(--bg-card); color: var(--text);
  border: 1px solid var(--border);
  padding: 9px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
}
.cart-btn:hover { background: var(--bg-hover); border-color: var(--border-strong); }
.cart-count {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  min-width: 18px; height: 18px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.menu-toggle { display: none; background: none; border: none; color: var(--text); padding: 8px; cursor: pointer; }

/* HERO */
section { position: relative; z-index: 1; }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px 80px;
  overflow: hidden;
}
#hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; width: 100%;
}
.hero-logo {
  width: clamp(200px, 55vw, 460px);
  animation: heroLogoPulse 3.5s ease-in-out infinite alternate;
  display: block;
  margin: 0 auto 20px;
}
@keyframes heroLogoPulse {
  from { filter: drop-shadow(0 0 18px rgba(26,143,255,.45)) drop-shadow(0 0 36px rgba(26,143,255,.15)); }
  to   { filter: drop-shadow(0 0 42px rgba(26,143,255,.95)) drop-shadow(0 0 80px rgba(26,143,255,.45)); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(26,143,255,.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.07;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 20%, #8ab4d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #1a8fff, #6ec1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-payment-methods {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 16px;
}
.hero-pay-label { font-size: 12px; color: var(--text-dim); margin-right: 2px; }
.hero-pay-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 4px 10px;
  font-size: 12px; font-weight: 500; color: var(--text-muted);
}
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  transition: all .18s;
  box-shadow: 0 4px 24px rgba(26,143,255,.3);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,143,255,.5); }
.btn-secondary {
  background: rgba(14,30,52,.8); color: var(--text);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .18s;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: var(--bg-hover); border-color: rgba(26,143,255,.4); transform: translateY(-1px); }
.hero-stats {
  display: flex; justify-content: center;
  max-width: 580px;
  margin: 52px auto 0;
}
.hero-stats > div {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stats > div:last-child { border-right: none; }
.stat-num {
  font-size: 38px; font-weight: 900;
  background: linear-gradient(135deg, #1a8fff 30%, #70c8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.03em; line-height: 1;
}
.stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 7px; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* SECTION HEADER */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.section-eyebrow {
  color: var(--accent); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 16px; max-width: 600px; }

/* FEATURES */
.feat-list {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 52px;
}
.feat-row {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 30px 36px;
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.feat-row:last-child { border-bottom: none; }
.feat-row:hover { background: rgba(26,143,255,.04); }
.feat-num {
  font-size: 36px; font-weight: 900;
  color: rgba(26,143,255,.18);
  letter-spacing: -.04em; line-height: 1;
  min-width: 52px;
  transition: color .25s;
  font-variant-numeric: tabular-nums;
}
.feat-row:hover .feat-num { color: rgba(26,143,255,.45); }
.feat-body { flex: 1; }
.feat-title { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.feat-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.feat-tag {
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(26,143,255,.2);
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .01em;
}

/* PRODUCTS */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.product-hidden { display: none !important; }
.show-all-wrap { text-align: center; margin-top: 36px; }
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-fade {
  animation: cardFadeIn .6s cubic-bezier(.22,1,.36,1) both;
}
.card-fade:nth-child(1) { animation-delay: .05s; }
.card-fade:nth-child(2) { animation-delay: .12s; }
.card-fade:nth-child(3) { animation-delay: .19s; }
.card-fade:nth-child(4) { animation-delay: .26s; }
.card-fade:nth-child(5) { animation-delay: .33s; }
.card-fade:nth-child(6) { animation-delay: .40s; }
.product-card {
  background: linear-gradient(160deg, #0e1e34 0%, #0a1628 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 0 20px;
  transition: all .25s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.product-card:hover {
  border-color: rgba(26,143,255,.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(26,143,255,.1);
}
.product-card-body { padding: 0 20px; display: flex; flex-direction: column; flex: 1; }
.product-visual {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26,143,255,.22), transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(0,0,0,.9), transparent 60%),
    linear-gradient(180deg, #0d1f38 0%, #050c18 100%);
  border-radius: 0;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.product-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, rgba(10,18,32,.7));
  pointer-events: none;
}
.product-visual canvas { width: 100%; height: 100%; display: block; }
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.product-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  height: 100%; opacity: 1;
}
.product-placeholder svg { width: 72px; height: 72px; stroke: var(--accent); opacity: .35; }
.product-placeholder-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-dim);
}
.product-name {
  font-size: 17px; font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.product-dosage {
  display: inline-block;
  background: var(--accent-dim); color: var(--accent);
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: .03em;
}
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.product-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-price { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.product-price-old { font-size: 13px; color: var(--text-dim); text-decoration: line-through; margin-right: 6px; }
.add-btn {
  background: var(--accent); color: #fff;
  border: none; cursor: pointer;
  padding: 9px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.add-btn:hover { background: var(--accent-hover); }
.stock-badge { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
.stock-badge.out { color: #f87171; }
.stock-badge.preorder { color: var(--accent); font-weight: 700; }
.stock-badge.low { color: #fbbf24; font-weight: 700; }
.stock-out { color: var(--danger); }
.variant-selector { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.variant-btn {
  padding: 5px 13px; border-radius: 7px; font-size: 12px; font-weight: 700;
  border: 1.5px solid var(--border); background: transparent; color: var(--text-muted);
  cursor: pointer; transition: all .15s; letter-spacing: .02em;
}
.variant-btn.active { border-color: var(--accent); background: var(--accent-dim); color: var(--accent); }
.variant-btn:hover:not(.active) { border-color: var(--border-strong); color: var(--text); }
.detail-variant-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.detail-variant-btn {
  padding: 8px 18px; border-radius: 9px; font-size: 14px; font-weight: 700;
  border: 1.5px solid var(--border); background: transparent; color: var(--text-muted);
  cursor: pointer; transition: all .15s;
}
.detail-variant-btn.active { border-color: var(--accent); background: var(--accent-dim); color: var(--accent); }
.detail-variant-btn:hover:not(.active) { border-color: var(--border-strong); color: var(--text); }

/* HOW IT WORKS */
.timeline {
  position: relative;
  margin-top: 52px;
  max-width: 640px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--accent-dim), var(--border) 85%);
}
.tl-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 44px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 19px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.tl-body { padding-top: 10px; }
.tl-title { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.tl-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 480px; }
.pay-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.pay-pill {
  display: inline-block;
  background: var(--accent-dim); color: var(--accent);
  font-size: 12px; font-weight: 700;
  padding: 6px 13px; border-radius: 20px;
  border: 1px solid rgba(26,143,255,.2);
  letter-spacing: .01em;
}
@media (max-width: 560px) {
  .tl-badge { width: 46px; height: 46px; font-size: 16px; }
  .timeline::before { left: 22px; }
}

/* FAQ */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none; border: none;
  color: var(--text); font-size: 15px; font-weight: 600;
  padding: 18px 22px;
  text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-q svg { width: 16px; height: 16px; stroke: var(--text-muted); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--text-muted); font-size: 14px; line-height: 1.7;
  padding: 0 22px;
  transition: max-height .3s, padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* CTA Banner */
.cta-banner {
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 24px;
}
.cta-banner-inner {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-hover));
  border: 1px solid var(--accent-border, rgba(26,143,255,.3));
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(26,143,255,.2), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 12px;
  position: relative;
}
.cta-banner p { color: var(--text-muted); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: linear-gradient(160deg, #0e1e34 0%, #0a1628 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s;
}
.review-card:hover { border-color: rgba(26,143,255,.35); transform: translateY(-2px); }
.review-header { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0a3060);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
  flex-shrink: 0; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta { flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.review-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.review-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.review-photo {
  width: 100%; border-radius: 10px;
  object-fit: cover; max-height: 200px;
  border: 1px solid var(--border);
}
.reviews-empty { text-align: center; color: var(--text-dim); padding: 40px; font-size: 14px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 48px 24px 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { color: var(--text-muted); font-size: 13px; max-width: 320px; line-height: 1.6; margin-top: 14px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; text-decoration: none; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: var(--text-dim); font-size: 12px;
}
.disclaimer {
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 12px;
  color: #fca5a5;
  text-align: center;
}

/* CART MODAL */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%; max-width: 540px;
  max-height: 90vh;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.modal-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-head h3 { font-size: 18px; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; }
.modal-body { padding: 20px 24px; overflow-y: auto; flex: 1; }
.modal-foot { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--bg-card); }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; }
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.qty-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 26px; height: 26px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); border-radius: 6px; cursor: pointer;
  font-size: 14px; font-weight: 600;
}
.qty-btn:hover { background: var(--bg-hover); }
.qty-val { min-width: 22px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-item-price { font-weight: 700; min-width: 70px; text-align: right; }
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
  font-size: 15px;
}
.cart-total-num { font-size: 22px; font-weight: 800; color: var(--accent); }
.empty-cart { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.btn-full { width: 100%; }

/* Checkout */
.consent-row { margin-bottom: 18px; }
.consent-check {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 12px; color: var(--text-muted); line-height: 1.5;
}
.consent-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-box {
  flex-shrink: 0; width: 19px; height: 19px; margin-top: 1px;
  border: 1.5px solid var(--border-strong); border-radius: 5px;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; position: relative;
}
.consent-box::after {
  content: ''; width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0); transition: transform .15s;
  margin-top: -2px;
}
.consent-check input:checked ~ .consent-box { background: var(--accent); border-color: var(--accent); }
.consent-check input:checked ~ .consent-box::after { transform: rotate(45deg) scale(1); }
.consent-text strong { color: var(--text); }
.consent-row.consent-error .consent-box { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.consent-row.consent-error .consent-text { color: #fca5a5; }

.privacy-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(26,143,255,.07); border: 1px solid rgba(26,143,255,.2);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 18px;
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
}
.privacy-note svg { flex-shrink: 0; margin-top: 1px; }
.privacy-note strong { color: var(--text); }
.checkout-step { margin-bottom: 20px; }
.checkout-step label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.checkout-step input, .checkout-step textarea {
  width: 100%; padding: 11px 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 14px;
  font-family: inherit;
}
.checkout-step input:focus, .checkout-step textarea:focus {
  outline: none; border-color: var(--accent);
}
.pay-box {
  background: var(--bg-card); border: 1px solid var(--accent-border, rgba(26,143,255,.3));
  border-radius: 12px; padding: 18px;
  margin-top: 14px;
}
.pay-box-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pay-icon { width: 32px; height: 32px; background: rgba(247,147,26,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.btc-address {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  word-break: break-all;
  color: var(--accent);
  margin: 10px 0;
  cursor: pointer;
  transition: border-color .15s;
}
.btc-address:hover { border-color: var(--accent); }
.copy-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.pay-path {
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
}
.pay-path-a {
  background: linear-gradient(135deg, #0a1628 0%, #0e1e34 100%);
  border: 1px solid rgba(26,143,255,.3);
}
.pay-path-b {
  background: linear-gradient(135deg, #0f1a0f 0%, #0a1a14 100%);
  border: 1px solid rgba(16,185,129,.3);
}
.pay-path-label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.pay-path-badge {
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-path-badge-a { background: rgba(26,143,255,.2); color: var(--accent); }
.pay-path-badge-b { background: rgba(16,185,129,.2); color: #6ee7b7; }
.pay-path-title { font-weight: 700; font-size: 15px; }
.pay-path-title-b { color: #6ee7b7; }
.pay-or {
  display: flex; align-items: center; gap: 10px;
  margin: 4px 0 12px;
  color: var(--text-dim); font-size: 12px;
}
.pay-or::before, .pay-or::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.pay-confirm-bar {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  margin-top: 4px;
}
.pay-onramp-step {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 9px;
}
.pay-onramp-step:last-child { margin-bottom: 0; }
.pay-onramp-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(16,185,129,.15); color: #6ee7b7;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* Toast */
/* GUTSCHEINCODE */
.discount-row { margin-bottom: 12px; }
.discount-input-row { display: flex; gap: 8px; }
.discount-input-row input {
  flex: 1; padding: 11px 14px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 14px; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.discount-input-row input:focus { border-color: var(--accent); }
.discount-input-row .btn-secondary { padding: 11px 18px; white-space: nowrap; }
.discount-applied {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25);
  border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #6ee7b7;
}
.discount-applied button {
  background: none; border: none; color: var(--text-muted);
  font-size: 12px; text-decoration: underline; cursor: pointer; font-family: inherit;
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-muted); padding: 2px 0;
}

/* SHOP CONTROLS (Suche + Kategorie-Filter) */
.shop-controls { margin-bottom: 28px; display: flex; flex-direction: column; gap: 14px; }
.shop-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0 14px; max-width: 420px;
  transition: border-color .2s;
}
.shop-search:focus-within { border-color: var(--accent); }
.shop-search svg { color: var(--text-muted); flex-shrink: 0; }
.shop-search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-size: 15px; padding: 12px 0; font-family: inherit;
}
.shop-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-chip {
  padding: 7px 15px; border: 1px solid var(--border);
  border-radius: 20px; background: transparent;
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.shop-chip:hover { border-color: var(--accent); color: var(--accent); }
.shop-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* SALE & MENGENRABATT */
.sale-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(239,68,68,.35);
}
.detail-bulk {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 10px 0 4px;
  font-size: 13px;
  color: #6ee7b7;
  line-height: 1.5;
}
.detail-bulk strong { color: #6ee7b7; }

/* PAYMENT METHOD TOGGLE + BANK TRANSFER */
.pay-method-toggle {
  display: flex; gap: 6px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 5px; margin-bottom: 16px;
}
.pay-method-btn {
  flex: 1; padding: 11px;
  border: none; border-radius: 8px;
  background: transparent; color: var(--text-muted);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.pay-method-btn.active { background: var(--accent); color: #fff; }
.bank-field {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px; margin-bottom: 8px;
  cursor: pointer; transition: border-color .15s;
}
.bank-field:hover { border-color: rgba(26,143,255,.4); }
.bank-field-important { border-color: rgba(26,143,255,.35); background: var(--accent-dim); }
.bank-field-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); font-weight: 600; margin-bottom: 4px;
}
.bank-field-value { font-size: 16px; font-weight: 700; color: var(--text); word-break: break-all; }
.bank-field-hint { font-size: 11px; color: var(--text-dim); margin-top: 3px; }

.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--bg-card); border: 1px solid var(--accent);
  color: var(--text); padding: 14px 20px;
  border-radius: 10px; font-size: 14px; font-weight: 500;
  z-index: 300;
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.toast.show { transform: translateX(0); opacity: 1; }

/* Loading */
.loader { text-align: center; padding: 60px; color: var(--text-muted); }
.loader::after {
  content: ''; display: inline-block;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border); border-top-color: var(--accent);
  animation: spin .8s linear infinite;
  margin-left: 10px; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* PRODUCT DETAIL PAGE */
#product-detail { display: none; min-height: 100vh; padding-top: 80px; }
#product-detail.active { display: block; }
#main-content.hidden { display: none; }

.detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  cursor: pointer; padding: 10px 0;
  max-width: 1100px; margin: 16px auto 0; padding-left: 24px;
  display: flex; width: fit-content;
  transition: color .15s; text-decoration: none;
}
.detail-back:hover { color: var(--accent); }
.detail-back svg { width: 16px; height: 16px; }

.detail-layout {
  max-width: 1100px; margin: 0 auto; padding: 32px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.detail-visual {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(26,143,255,.22), transparent 60%),
    linear-gradient(180deg, #0d1f38 0%, #050c18 100%);
  border-radius: 20px; border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.detail-visual canvas { width: 100%; height: 100%; display: block; }
.detail-visual img.detail-product-img {
  width: 100%; height: 100%; object-fit: cover;
}
.detail-visual-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.detail-visual-placeholder svg { width: 90px; height: 90px; stroke: var(--accent); opacity: .25; }
.detail-visual-placeholder span { font-size: 12px; color: var(--text-dim); letter-spacing: .08em; text-transform: uppercase; }

/* LABORTEST */
.detail-lab {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.detail-lab-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted);
}
.detail-lab-header svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; }
.detail-lab-content { padding: 18px; }
.detail-lab-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  padding: 28px 20px; text-align: center;
  color: var(--text-dim); font-size: 13px;
}
.detail-lab-placeholder svg { width: 36px; height: 36px; stroke: var(--text-dim); opacity: .5; }
.detail-lab-img {
  width: 100%; border-radius: 8px;
  cursor: pointer; transition: opacity .15s;
}
.detail-lab-img:hover { opacity: .85; }
.detail-visual .placeholder-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .2; }
.detail-visual .placeholder-icon svg { width: 80px; height: 80px; stroke: var(--accent); }

/* WISSENSCHAFTLICHE STUDIEN */
.detail-studies {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.detail-studies-header {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 700; color: var(--text);
}
.detail-studies-header svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; }
.detail-studies-sub { font-size: 13px; color: var(--text-muted); margin: 6px 0 18px; line-height: 1.5; }
.detail-studies-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.study-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  text-decoration: none; transition: all .18s;
}
.study-card:hover { border-color: rgba(26,143,255,.45); transform: translateY(-2px); }
.study-source {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px;
}
.study-title { font-size: 13px; color: var(--text); line-height: 1.45; flex: 1; }
.study-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  margin-top: 12px; transition: color .15s;
}
.study-card:hover .study-link { color: var(--accent); }
.detail-studies-note { font-size: 11px; color: var(--text-dim); line-height: 1.5; margin-top: 16px; }

.detail-info { padding-top: 8px; }
.detail-type {
  display: inline-block; background: rgba(26,143,255,.12);
  color: var(--accent); font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 6px;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px;
}
.detail-name {
  font-size: clamp(34px, 5vw, 52px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.05; margin-bottom: 10px;
}
.detail-dosage {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-dim); color: var(--accent);
  font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 8px; margin-bottom: 28px;
}
.detail-formula {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 18px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 14px; color: var(--accent);
  margin-bottom: 24px; display: inline-block;
  letter-spacing: .02em;
}
.detail-desc {
  font-size: 15px; line-height: 1.8; color: var(--text-muted);
  margin-bottom: 28px;
}
.detail-effects-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-dim); margin-bottom: 12px;
}
.detail-effects { margin-bottom: 32px; }
.detail-effect {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; line-height: 1.5;
}
.detail-effect:last-child { border-bottom: none; }
.detail-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 5px;
  box-shadow: 0 0 8px rgba(26,143,255,.6);
}
.detail-buy {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
  margin-top: 8px;
}
.detail-price { font-size: 38px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 4px; }
.detail-stock-txt { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.detail-stock-txt.out { color: #f87171; }
.detail-stock-txt.preorder { color: var(--accent); font-weight: 600; }
.detail-preorder-hint {
  font-size: 12px; color: var(--text-dim); line-height: 1.5;
  margin: -10px 0 14px;
}
.detail-add {
  width: 100%; padding: 15px; border-radius: 12px;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  font-size: 16px; font-weight: 700; letter-spacing: -.01em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .18s;
  box-shadow: 0 4px 24px rgba(26,143,255,.3);
}
.detail-add:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,143,255,.5); }
.detail-add:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.preorder-banner {
  background: var(--accent-dim); border: 1px solid rgba(26,143,255,.3);
  border-radius: 12px; padding: 12px 16px; margin-bottom: 14px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
}

/* PAGE HEADER (used on non-hero pages) */
.page-header {
  padding-top: 80px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.page-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 24px 48px;
}

/* AUTH PAGES */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  z-index: 1;
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 440px;
}
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.auth-logo img { height: 48px; }
.auth-title { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 4px; }
.auth-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  padding: 9px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.auth-tab.active { background: var(--accent); color: #fff; }
.auth-field { margin-bottom: 16px; }
.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.auth-field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  transition: border-color .2s;
  box-sizing: border-box;
  font-family: inherit;
}
.auth-field input:focus { outline: none; border-color: var(--accent); }
.auth-error { color: var(--danger); font-size: 13px; margin-bottom: 10px; min-height: 18px; }
.auth-success { color: var(--success); font-size: 13px; margin-bottom: 10px; }
.auth-divider { text-align: center; color: var(--text-muted); font-size: 13px; margin: 16px 0; }

/* KONTO PAGE */
.konto-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 1;
}
.konto-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 28px;
}
.konto-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid rgba(26,143,255,.25);
}
.konto-name { font-size: 18px; font-weight: 700; }
.konto-email { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.konto-since { color: var(--text-dim); font-size: 12px; margin-top: 4px; }
.konto-section-title {
  font-size: 16px; font-weight: 700;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 10px;
}
.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.order-no { font-family: monospace; font-weight: 700; color: var(--accent); font-size: 13px; }
.order-date { color: var(--text-muted); font-size: 12px; }
.order-badge {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(26,143,255,.15); color: var(--accent);
  text-transform: uppercase; letter-spacing: .04em;
}
.order-badge.versandt { background: rgba(16,185,129,.15); color: #6ee7b7; }
.order-badge.bezahlt { background: rgba(16,185,129,.15); color: #6ee7b7; }
.order-items { font-size: 13px; color: var(--text-muted); }
.order-total { font-weight: 700; color: var(--text); font-size: 14px; margin-top: 10px; }

/* Order status timeline */
.order-timeline { display: flex; align-items: flex-start; margin: 16px 0 6px; }
.otl-step { flex: 1; text-align: center; position: relative; }
.otl-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px; position: relative; z-index: 2;
  font-size: 12px; color: var(--text-dim); transition: all .2s;
}
.otl-step.done .otl-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.otl-step.current .otl-dot { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }
.otl-label { font-size: 11px; color: var(--text-muted); }
.otl-step.done .otl-label, .otl-step.current .otl-label { color: var(--text); font-weight: 600; }
.otl-step::before {
  content: ''; position: absolute; top: 13px; left: -50%; width: 100%; height: 2px;
  background: var(--border); z-index: 1;
}
.otl-step:first-child::before { display: none; }
.otl-step.done::before, .otl-step.current::before { background: var(--accent); }
.order-paid-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: #f7931a; font-weight: 700; margin-top: 8px; }
.konto-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.konto-empty svg { margin-bottom: 12px; opacity: .4; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-elevated); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 24px; gap: 18px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); }
  .nav-dropdown-menu {
    display: none; position: static; transform: none; background: none; border: none;
    box-shadow: none; padding: 10px 0 0 14px; min-width: 0; margin: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-item { padding: 8px 0; }
  .nav-inner { padding: 14px 18px; }
  .hero { padding: 110px 18px 70px; }
  .section-wrap { padding: 56px 18px; }
  .hero-stats { max-width: 100%; }
  .hero-stats > div { padding: 14px 8px; }
  .stat-num { font-size: 28px; }
  .feat-row { flex-wrap: wrap; gap: 14px; padding: 22px 20px; }
  .feat-num { font-size: 26px; min-width: 38px; }
  .feat-body { min-width: 0; }
  .feat-tag { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta-banner-inner { padding: 36px 24px; }
  .detail-layout { grid-template-columns: 1fr; gap: 28px; }
  .detail-visual { position: static; }
  .detail-name { font-size: 30px; }

  /* Compact product cards */
  .products-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .product-visual { margin-bottom: 14px; }
  .product-placeholder svg { width: 56px; height: 56px; }

  /* Tighter page header on inner pages */
  .page-header-inner { padding: 32px 20px 28px; }
  .section-title { font-size: clamp(26px, 7vw, 34px); }
}

/* Very narrow phones */
@media (max-width: 400px) {
  .nav-inner { padding: 12px 14px; }
  .logo-img { height: 34px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .section-wrap { padding: 48px 14px; }
  .hero-stats > div { padding: 12px 4px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 9px; letter-spacing: .06em; }
  .feat-row { padding: 18px 16px; }
  .feat-title { font-size: 16px; }
  .feat-desc { font-size: 13px; }
  .btn-primary, .btn-secondary { font-size: 14px; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,.35);
  padding: 18px 24px;
}
.cookie-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 240px; }
.cookie-banner-text strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.cookie-banner-text span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-secondary { padding: 10px 20px; font-size: 14px; box-shadow: none; }

@media (max-width: 600px) {
  .cookie-banner { padding: 16px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions button { flex: 1; }
}
