:root {
  --bg: #050506;
  --bg-2: #0c0c0e;
  --card: #121214;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --blue: #2997ff;
  --blue-2: #6f4bff;
  --green: #34c759;
  --white: #ffffff;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
  --grad: linear-gradient(135deg, var(--blue), var(--blue-2));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7vw;
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 20px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nav-account { font-size: 14px; color: var(--muted); }
.nav-account:hover { color: var(--white); }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--white);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.hero, .products, .why, .cart-page, .pdp, .status-page, .legal-page, .trust {
  padding: 72px 7vw;
}

.hero {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 0;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1, h2, h3 { letter-spacing: -0.045em; line-height: 1.05; }

.hero h1 {
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 700;
}

.hero-sub {
  margin: 18px auto 32px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 28px);
}

.hero-actions, .pdp-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  margin-top: 48px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: min(58vh, 620px);
  object-fit: contain;
  background: #0b0b0d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--white); color: #111; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--line); }
.btn-lg { min-width: 220px; padding: 15px 24px; font-size: 16px; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 36px;
  padding-bottom: 12px;
}

.trust-item, .why-grid article, .card, .cart-summary, .pdp-info {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item { padding: 24px; text-align: left; }
.trust-item span { color: var(--muted); font-size: 12px; }
.trust-item strong { display: block; margin: 8px 0 6px; font-size: 18px; }
.trust-item p, .muted, .lead { color: var(--muted); }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head h2, .cart-page h1, .status-page h1, .legal-page h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card { overflow: hidden; }
.card-media {
  display: block;
  position: relative;
  background: radial-gradient(circle at 50% 20%, #1b1b1f, #09090b 70%);
  min-height: 240px;
}

.card-media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  transition: transform 0.5s ease;
}

.card:hover .card-media img { transform: scale(1.04); }

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: rgba(255,255,255,0.92);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 10px;
}

.card-body { padding: 20px; }
.card-body h3 { font-size: 20px; margin: 4px 0 8px; }
.price { font-size: 22px; font-weight: 700; }
.price.big { font-size: 42px; color: var(--white); margin: 12px 0 8px; }
.price-old { color: var(--muted); font-size: 14px; text-decoration: line-through; margin-bottom: 12px; }
.card-actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.card-actions .btn { flex: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-grid article { padding: 28px; }
.why-grid h3 { margin-bottom: 10px; }

.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.pdp-media {
  background:
    radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 42%),
    #0b0b0d;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  min-height: 420px;
}

.pdp-media img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center;
  padding: 24px;
}

.variant { color: var(--muted); font-size: 20px; margin-top: 8px; }
.pdp-info { padding: 36px; }
.pdp-actions { justify-content: flex-start; margin-top: 28px; }

.specs {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  color: var(--text);
}

.specs span { color: var(--muted); }

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 12px;
  background: var(--card);
}

.cart-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 14px;
  background: #111;
  padding: 8px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.remove {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-summary { padding: 24px; position: sticky; top: 96px; }
.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
}
.cart-summary .total { font-size: 22px; padding-top: 12px; border-top: 1px solid var(--line); }
.small { font-size: 13px; margin: 12px 0 18px; }
.offline-banner {
  margin: 16px 7vw 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(41, 151, 255, 0.12);
  color: #c8e4ff;
}
.offline-banner a { color: var(--white); text-decoration: underline; }
.notice, .error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
}
.notice { background: rgba(41, 151, 255, 0.12); color: #c8e4ff; }
.error { background: rgba(255, 80, 80, 0.12); color: #ffb4b4; }
.empty { color: var(--muted); padding: 40px 0; }

.status-page, .legal-page { max-width: 760px; }
.legal-page h2 { margin: 28px 0 10px; font-size: 24px; }
.legal-page p { color: var(--muted); margin-bottom: 12px; }
.status-page .lead { margin: 16px 0 24px; font-size: 20px; }

.footer {
  padding: 48px 7vw 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer h4 { color: var(--white); margin-bottom: 12px; }
.footer a, .footer p { display: block; margin: 6px 0; }
.legal { font-size: 12px; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: #111;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 40;
  box-shadow: var(--shadow);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(255,255,255,0.08);
  padding: 1px 6px;
  border-radius: 6px;
}

.auth-page, .admin-page { padding: 72px 7vw; max-width: 720px; }
.admin-page { max-width: 1100px; }
.auth-form { display: grid; gap: 16px; margin: 28px 0; }
.auth-form label { display: grid; gap: 8px; color: var(--muted); font-size: 14px; }
.auth-form input, .auth-form textarea {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  padding: 12px 14px;
}
.admin-layout { display: grid; grid-template-columns: 280px 1fr; gap: 20px; }
.thread-list a {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 8px;
}
.thread-list a.active { background: #16161a; }
.thread-list span { display: block; color: var(--muted); font-size: 13px; }
.chat-log { max-height: 420px; overflow: auto; display: grid; gap: 10px; margin-bottom: 16px; }
.bubble { padding: 10px 12px; border-radius: 14px; background: #16161a; border: 1px solid var(--line); }
.bubble.user { justify-self: end; background: #1c2a3d; }
.bubble.assistant, .bubble.admin { justify-self: start; }
.bubble small { display: block; color: var(--muted); font-size: 11px; margin-bottom: 4px; }
.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 80; }
.chat-toggle {
  border: 0;
  background: var(--white);
  color: #111;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 16px;
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(380px, calc(100vw - 24px));
  max-height: min(520px, calc(100vh - 96px));
  display: none;
  flex-direction: column;
  background: #0c0c0e;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.chat-panel:not([hidden]) {
  display: flex;
}
.chat-head { font-weight: 700; font-size: 20px; margin-bottom: 8px; flex: none; }
.chat-login { color: var(--muted); font-size: 15px; margin-bottom: 12px; flex: none; }
.chat-actions { display: flex; gap: 8px; flex: none; }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; flex: none; }
.chat-form input {
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  padding: 14px 16px;
  font-size: 16px;
}
.chat-panel .chat-log {
  flex: 1;
  max-height: none;
  min-height: 280px;
  margin-bottom: 12px;
}
.chat-panel .bubble { font-size: 15px; padding: 12px 14px; }

@media (max-width: 980px) {
  .admin-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .trust, .grid, .why-grid, .pdp, .cart-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero, .products, .why, .cart-page, .pdp, .status-page, .legal-page, .trust, .footer, .nav {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pdp-media, .pdp-media img, .card-media img { height: auto; min-height: 0; }
  .cart-item { grid-template-columns: 88px 1fr; }
  .cart-item .price { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .chat-widget { right: 10px; left: 10px; bottom: 10px; }
  .chat-panel {
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    max-height: min(70vh, calc(100vh - 88px));
    bottom: 58px;
    border-radius: 18px;
  }
}

/* ============================================================
   Enhanced UI — richer, more professional look
   ============================================================ */

/* Layered background glows for depth */
body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(41, 151, 255, 0.12), transparent 60%),
    radial-gradient(900px 500px at 5% 8%, rgba(111, 75, 255, 0.10), transparent 55%),
    var(--bg);
  background-attachment: fixed;
}

/* New sections share the standard section padding */
.steps, .delivery, .stats, .testimonials, .faq, .cta-band, .delivery-page {
  padding: 72px 7vw;
}

/* Nav CTA button */
.nav-cta {
  background: var(--grad);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: filter .2s ease, transform .2s ease;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Hero glow + gradient headline + badges */
.hero { position: relative; z-index: 0; }
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6%;
  width: min(760px, 82vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%, rgba(41, 151, 255, 0.28), transparent 62%);
  filter: blur(36px);
  z-index: -1;
  pointer-events: none;
}
.hero h1 {
  background: linear-gradient(180deg, #ffffff, #b9c6d6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
}
.pill strong { color: var(--white); font-weight: 600; }
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.15);
}

/* Buttons refined */
.btn-primary { box-shadow: 0 8px 24px rgba(255, 255, 255, 0.10); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(255, 255, 255, 0.18); }
.btn-blue { background: var(--grad); color: #fff; box-shadow: 0 10px 28px rgba(41, 151, 255, 0.35); }
.btn-blue:hover { filter: brightness(1.06); }
.btn-ghost:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.04); }

/* Card polish */
.card { transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.rating { display: inline-flex; gap: 2px; color: #ffcf4a; font-size: 14px; margin: 8px 0 2px; letter-spacing: 1px; }

/* Trust items: gradient number chip + hover */
.trust-item { transition: transform .3s ease, border-color .3s ease; }
.trust-item:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.trust-item span {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad); color: #fff;
  font-weight: 700; font-size: 14px;
  margin-bottom: 10px;
}

/* Centered section heading */
.section-center { text-align: center; }
.section-center .section-head { margin-inline: auto; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .3s ease, border-color .3s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.step-num { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: .12em; }
.step h3 { font-size: 18px; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* Delivery / DHL */
.delivery-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
}
.dhl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffcc00; color: #d40511;
  font-weight: 800; letter-spacing: .04em;
  padding: 8px 16px; border-radius: 8px; font-size: 18px;
}
.delivery-card h2 { font-size: clamp(26px, 3.4vw, 40px); }
.delivery-list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.delivery-list li { display: flex; align-items: center; gap: 12px; color: var(--text); }
.delivery-list .check {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(52, 199, 89, 0.15); color: var(--green);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.delivery-visual {
  border-radius: 22px; border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 30%, rgba(255, 204, 0, 0.14), #0b0b0d 60%);
  min-height: 240px; display: grid; place-items: center; padding: 24px; text-align: center;
}
.delivery-visual .big { font-size: clamp(40px, 6vw, 56px); font-weight: 800; letter-spacing: -0.02em; }

/* Stats band */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  text-align: center; padding: 28px 20px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.stat .num {
  font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #9fb3c8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: left;
}
.review .stars { color: #ffcf4a; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--text); }
.review .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: 14px;
}
.review .who strong { display: block; font-size: 15px; }
.review .who span { color: var(--muted); font-size: 13px; }

/* FAQ (native <details>) */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; text-align: left; }
.faq-item {
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(255, 255, 255, 0.02); padding: 2px 20px;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-weight: 600; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--blue); font-size: 24px; line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 18px; margin: 0; }

/* CTA band */
.cta-inner {
  background: var(--grad);
  border-radius: 28px;
  padding: 52px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.cta-inner h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); }
.cta-inner p { color: rgba(255, 255, 255, 0.88); margin: 14px auto 26px; max-width: 560px; }
.cta-inner .btn-primary { background: #0a0a0a; color: #fff; box-shadow: none; }
.cta-inner .btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }

/* Info cards (delivery / legal pages) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.info-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; background: rgba(255, 255, 255, 0.02);
  transition: transform .3s ease, border-color .3s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.info-card h3 { font-size: 18px; margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 14px; }
.delivery-page { max-width: 1100px; }
.delivery-page h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 6px; }
.delivery-page h2 { margin: 26px 0 10px; font-size: 24px; }
.delivery-page .delivery-card { margin-top: 24px; }

/* Payment badges + footer bottom bar */
.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pay-badges span {
  border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px;
  font-size: 12px; color: var(--muted); background: rgba(255, 255, 255, 0.02);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 20px; margin-top: 8px;
}
.footer-bottom .legal { margin: 0; }

/* Reveal-on-scroll (only when JS is active, so no-JS still shows content) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* Responsive for new components */
@media (max-width: 980px) {
  .steps, .delivery, .stats, .testimonials, .faq, .cta-band, .delivery-page {
    padding-left: 20px; padding-right: 20px;
  }
  .steps-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .info-grid { grid-template-columns: 1fr; }
  .delivery-card { grid-template-columns: 1fr; padding: 28px; }
}
@media (max-width: 640px) {
  .steps-grid, .stats-grid { grid-template-columns: 1fr; }
}

/* ===== Shop page (filters + sort) ===== */
.shop h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 10px; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.filter-tabs {
  display: inline-flex; gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px;
}
.filter-tab {
  border: 0; background: transparent; color: var(--muted);
  border-radius: 999px; padding: 10px 18px; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s ease, color .2s ease;
}
.filter-tab span { font-size: 12px; opacity: .7; }
.filter-tab:hover { color: var(--white); }
.filter-tab.active { background: var(--grad); color: #fff; }
.sort-select {
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 11px 14px; font: inherit; font-size: 14px; cursor: pointer;
}
.cat-badge {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  background: rgba(10, 10, 12, 0.72); color: #fff; border: 1px solid var(--line);
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px; padding: 5px 10px; backdrop-filter: blur(8px);
}

/* ===== Auth split (login / register) ===== */
.auth-split {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1000px; margin: 56px auto;
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-soft); background: var(--card);
}
.auth-main { padding: 48px; }
.auth-main h1 { font-size: 34px; margin-bottom: 6px; }
.auth-aside {
  padding: 48px;
  background:
    linear-gradient(160deg, rgba(41, 151, 255, 0.16), rgba(111, 75, 255, 0.10)),
    radial-gradient(circle at 30% 20%, rgba(255, 204, 0, 0.08), transparent 60%),
    #0b0b0d;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.auth-aside h2 { font-size: 26px; margin-bottom: 18px; }
.auth-aside .benefits { list-style: none; display: grid; gap: 14px; }
.auth-aside .benefits li { display: flex; gap: 12px; color: var(--muted); }
.auth-aside .benefits .check {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(52, 199, 89, 0.15); color: var(--green);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.auth-split .auth-form { margin: 24px 0 8px; }
@media (max-width: 860px) {
  .auth-split { grid-template-columns: 1fr; margin: 28px auto; }
  .auth-aside { order: -1; border-left: 0; border-bottom: 1px solid var(--line); }
  .auth-main, .auth-aside { padding: 32px; }
}
