/* =====================================================================
   MCICLES: estilo. Preto profundo, gradiente ciano→verde→lima da logo,
   tipografia condensada e itálica como no logotipo.
   ===================================================================== */
:root {
  --bg: #070808;
  --bg-2: #0d0f10;
  --surface: #121416;
  --surface-2: #181b1e;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f3f5f6;
  --muted: #9aa3aa;
  --muted-2: #6d757b;
  --cyan: #00c0e0;
  --teal: #2fd8a6;
  --lime: #c8f020;
  --grad: linear-gradient(100deg, var(--cyan) 0%, var(--teal) 50%, var(--lime) 100%);
  --grad-soft: linear-gradient(100deg, rgba(0,192,224,.18), rgba(47,216,166,.14), rgba(200,240,32,.16));
  --danger: #ff5d5d;
  --card-img: #f1f3f5;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --font-display: "Barlow", "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--lime); color: #000; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--grad); border-radius: 2px; }
h1, h2, h3, .display {
  font-family: var(--font-display); font-weight: 800; font-style: italic; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: .95; margin: 0;
}
h2.section-title { font-size: clamp(34px, 5vw, 58px); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head p { color: var(--muted); max-width: 52ch; margin: 10px 0 0; }
section { padding-block: clamp(64px, 9vw, 120px); position: relative; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #04110f; box-shadow: 0 10px 30px -10px rgba(47,216,166,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(200,240,32,.55); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); }
.btn-dark { background: #0b0d0e; color: #fff; border: 1px solid var(--line-2); }
.btn-dark:hover { border-color: var(--teal); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.icon { width: 18px; height: 18px; flex: none; }

/* ---------------- Header ---------------- */
.topbar {
  background: #000; font-size: 12px; color: var(--muted); text-align: center; padding: 8px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.topbar b { color: var(--text); font-weight: 600; }
.topbar .grad-text { font-weight: 700; }
.header {
  position: sticky; top: 0; z-index: 60; backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(7,8,8,.72); border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 46px; width: auto; border-radius: 8px; }
.nav { display: flex; gap: 6px; margin-left: 8px; }
.nav a { padding: 8px 12px; border-radius: 8px; font-size: 14px; color: var(--muted); font-weight: 500; transition: .2s; }
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,.05); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.search {
  display: flex; align-items: center; gap: 8px; height: 42px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.03); min-width: 240px; transition: .2s;
}
.search:focus-within { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(47,216,166,.12); }
.search input { background: none; border: 0; outline: 0; width: 100%; font-size: 14px; }
.search input::placeholder { color: var(--muted-2); }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.03); transition: .2s;
}
.icon-btn:hover { border-color: rgba(255,255,255,.4); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
  background: var(--lime); color: #000; font-size: 11px; font-weight: 800; display: grid; place-items: center;
  transform: scale(0); transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.show { transform: scale(1); }
.burger { display: none; }

/* ---------------- Hero ---------------- */
.hero { padding-block: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 80px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto; height: 120%; pointer-events: none; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(0,192,224,.16), transparent 60%),
    radial-gradient(40% 40% at 70% 70%, rgba(200,240,32,.10), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(54px, 8.4vw, 118px); margin: 22px 0 22px; }
.hero h1 .line { display: block; }
.hero p.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); max-width: 48ch; margin: 0 0 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-proof { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.proof b { font-family: var(--font-display); font-size: 30px; font-style: italic; font-weight: 800; display: block; line-height: 1; }
.proof span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }

.hero-visual { position: relative; }
.hero-card { display: block;
  position: relative; border-radius: 28px; overflow: hidden; background: var(--card-img);
  aspect-ratio: 1 / 1.05; box-shadow: var(--shadow); transform: rotate(-1.5deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.hero-card:hover { transform: rotate(0deg) scale(1.01); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-card::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
}
.hero-tag {
  position: absolute; z-index: 2; left: 18px; bottom: 18px; right: 18px; display: flex; justify-content: space-between; align-items: end; gap: 12px; color: #fff;
}
.hero-tag .name { font-family: var(--font-display); font-style: italic; font-weight: 800; text-transform: uppercase; font-size: 22px; line-height: 1; }
.hero-tag .price { font-size: 13px; opacity: .85; margin-top: 6px; }
.hero-tag .price b { font-size: 18px; color: var(--lime); }
.chip-float {
  position: absolute; z-index: 3; padding: 10px 14px; border-radius: 14px; background: rgba(10,12,13,.85);
  border: 1px solid var(--line-2); backdrop-filter: blur(10px); font-size: 12px; font-weight: 600; display: flex; gap: 10px; align-items: center;
  animation: float 6s ease-in-out infinite;
}
.chip-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,240,32,.2); }
.chip-1 { top: 22px; left: -22px; }
.chip-2 { top: 42%; right: -18px; animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-glow { position: absolute; inset: 10% -10% -10%; background: var(--grad); filter: blur(90px); opacity: .18; z-index: -1; border-radius: 50%; }

/* ---------------- Marquee ---------------- */
.marquee { border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 20px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted-2); display: flex; align-items: center; gap: 56px; white-space: nowrap;
}
.marquee span::after { content: "•"; color: var(--teal); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- Trust ---------------- */
.trust { padding-block: 40px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.trust-item svg { width: 26px; height: 26px; flex: none; color: var(--teal); }
.trust-item b { display: block; font-size: 14px; margin-bottom: 2px; }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ---------------- Categories ---------------- */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--card-img); aspect-ratio: 4 / 5;
  border: 1px solid var(--line); cursor: pointer; transition: transform .3s ease, box-shadow .3s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85)); }
.cat-card .txt { position: absolute; left: 16px; right: 16px; bottom: 16px; color: #fff; }
.cat-card .txt h3 { font-size: 22px; }
.cat-card .txt small { color: rgba(255,255,255,.7); font-size: 12px; }
.cat-card .arrow {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff;
  display: grid; place-items: center; transition: .3s; backdrop-filter: blur(6px);
}
.cat-card:hover .arrow { background: var(--lime); color: #000; transform: rotate(-45deg); }

/* ---------------- Catalog ---------------- */
.catalog { background: var(--bg-2); border-block: 1px solid var(--line); }
.toolbar {
  position: sticky; top: 72px; z-index: 30; display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  padding: 12px 0; margin-bottom: 26px; background: rgba(13,15,16,.85); backdrop-filter: blur(14px);
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 13px; font-weight: 600; color: var(--muted); transition: .2s;
  background: rgba(255,255,255,.02);
}
.chip:hover { color: var(--text); border-color: rgba(255,255,255,.4); }
.chip.active { background: var(--text); color: #000; border-color: var(--text); }
.toolbar .right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; background: rgba(255,255,255,.03); border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 40px 9px 16px;
  font-size: 13px; font-weight: 600; color: var(--text); outline: 0; cursor: pointer;
}
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.result-count { font-size: 13px; color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  display: flex; flex-direction: column; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
  overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; position: relative; cursor: pointer;
  animation: rise .5s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card-media { position: relative; background: var(--card-img); aspect-ratio: 1; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.card:hover .card-media img { transform: scale(1.06); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; padding: 6px 10px; border-radius: 8px; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; background: var(--lime); color: #000;
}
.badge.kit { background: var(--cyan); }
.badge.out { background: #222; color: #fff; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card .brand { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.card h3 {
  font-family: var(--font-body); font-style: normal; text-transform: none; font-weight: 600; font-size: 14.5px; line-height: 1.35; letter-spacing: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em;
}
.price-row { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 10px; }
.price { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 24px; line-height: 1; }
.price small { font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 11px; color: var(--teal); display: block; margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; }
.price .from { font-family: var(--font-body); font-style: normal; font-size: 11px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 4px; letter-spacing: .04em; }
.price-card { font-size: 12px; color: var(--muted); }
.add-btn {
  width: 42px; height: 42px; border-radius: 50%; background: var(--text); color: #000; display: grid; place-items: center; flex: none;
  transition: .25s; box-shadow: 0 8px 20px -8px rgba(255,255,255,.4);
}
.add-btn:hover { background: var(--lime); transform: scale(1.08); }
.card.soldout .card-media img { filter: grayscale(1) opacity(.6); }
.card.soldout .add-btn { background: var(--surface-2); color: var(--muted); box-shadow: none; }
.empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--muted); }

/* ---------------- Kits ---------------- */
.kits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kit-card {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%); min-height: 380px; position: relative; cursor: pointer; transition: .3s;
}
.kit-card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.kit-card .kit-img { background: var(--card-img); }
.kit-card .kit-img img { width: 100%; height: 100%; object-fit: contain; }
.kit-card .kit-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.kit-card h3 { font-size: 30px; }
.kit-card ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; display: grid; gap: 6px; }
.kit-card li::before { content: "✓"; color: var(--teal); margin-right: 8px; font-weight: 800; }
.kit-card .price { margin-top: auto; font-size: 32px; }

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.about p { color: var(--muted); font-size: 16px; }
.about-visual { position: relative; }
.about-visual .frame { border-radius: 28px; overflow: hidden; background: var(--card-img); aspect-ratio: 4/5; box-shadow: var(--shadow); }
.about-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; right: -16px; bottom: 32px; padding: 20px 22px; border-radius: 18px; background: #0b0d0e; border: 1px solid var(--line-2); box-shadow: var(--shadow);
}
.about-stat b { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 44px; line-height: 1; display: block; }
.about-stat span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.value { padding: 18px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.value b { display: block; margin-bottom: 4px; font-size: 14px; }
.value span { font-size: 13px; color: var(--muted); }

/* ---------------- FAQ ---------------- */
.faq { background: var(--bg-2); border-block: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 90px); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 24px; color: var(--teal); font-weight: 300; transition: transform .3s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0 0 20px; color: var(--muted); max-width: 60ch; }

/* ---------------- CTA ---------------- */
.cta-band { padding-block: 0; }
.cta-inner {
  border-radius: 28px; padding: clamp(36px, 6vw, 72px); background: var(--grad); color: #04110f; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-inner h2 { font-size: clamp(32px, 4.6vw, 56px); }
.cta-inner p { margin: 8px 0 0; font-weight: 500; opacity: .85; }
.cta-inner .btn { background: #05070a; color: #fff; }
.cta-inner .btn:hover { background: #111; }

/* ---------------- Footer ---------------- */
footer { padding: 64px 0 28px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid h4 { margin: 0 0 14px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.foot-grid a, .foot-grid p { display: block; color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.foot-grid a:hover { color: var(--text); }
.foot-logo img { height: 56px; border-radius: 8px; margin-bottom: 14px; }
.pay-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.pay-tags span { padding: 6px 10px; border: 1px solid var(--line-2); border-radius: 8px; font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.foot-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--muted-2); }

/* ---------------- Drawer / Modal ---------------- */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: var(--bg-2); border-left: 1px solid var(--line-2); z-index: 100;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column;
}
.drawer.show { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 26px; }
.drawer-body { flex: 1; overflow: auto; padding: 16px 22px; }
.drawer-foot { padding: 18px 22px 22px; border-top: 1px solid var(--line); background: var(--bg); }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; background: var(--card-img); }
.cart-item .t { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.cart-item .o { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cart-item .p { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 18px; margin-top: 6px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden; }
.qty button { width: 32px; height: 32px; display: grid; place-items: center; font-size: 16px; transition: .2s; }
.qty button:hover { background: rgba(255,255,255,.08); }
.qty span { min-width: 28px; text-align: center; font-weight: 700; font-size: 13px; }
.remove { font-size: 11px; color: var(--muted-2); margin-top: 6px; display: block; text-align: right; }
.remove:hover { color: var(--danger); }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); padding: 4px 0; }
.sum-row.total { color: var(--text); font-weight: 700; font-size: 16px; padding-top: 10px; margin-top: 6px; border-top: 1px dashed var(--line-2); }
.sum-row.total b { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 26px; }
.free-bar { margin: 6px 0 14px; font-size: 12px; color: var(--muted); }
.free-bar .bar { height: 6px; border-radius: 6px; background: var(--surface-2); overflow: hidden; margin-top: 6px; }
.free-bar .bar i { display: block; height: 100%; background: var(--grad); transition: width .4s; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { width: 54px; height: 54px; margin: 0 auto 14px; color: var(--muted-2); }

.modal {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal.show { opacity: 1; pointer-events: auto; }
.modal-card {
  width: min(980px, 100%); max-height: min(92vh, 860px); overflow: auto; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 28px;
  display: grid; grid-template-columns: 1fr 1fr; transform: translateY(20px) scale(.98); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.modal.show .modal-card { transform: none; }
.modal-media { background: var(--card-img); position: relative; min-height: 360px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.modal-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.modal-body h2 { font-family: var(--font-body); font-style: normal; text-transform: none; font-size: 22px; font-weight: 700; line-height: 1.3; letter-spacing: 0; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,.7); color: #fff; display: grid; place-items: center; }
.modal .price { font-size: 38px; }
.modal .price-card { font-size: 13px; }
.opt label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 700; }
.opt-vals { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-val { padding: 9px 14px; border-radius: 10px; border: 1px solid var(--line-2); font-size: 13px; font-weight: 600; transition: .2s; }
.opt-val.active { background: var(--text); color: #000; border-color: var(--text); }
.specs { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 13.5px; color: var(--muted); }
.specs li::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-right: 10px; vertical-align: middle; }
.modal-actions { display: flex; gap: 10px; align-items: center; margin-top: auto; }
.modal-note { font-size: 12px; color: var(--muted-2); }
.modal-note a { color: var(--teal); }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 120; padding: 14px 18px; border-radius: 14px; background: #101314; border: 1px solid var(--line-2);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; opacity: 0; pointer-events: none; transition: .3s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .ok { width: 22px; height: 22px; border-radius: 50%; background: var(--lime); color: #000; display: grid; place-items: center; font-size: 13px; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.7); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------------- Checkout page ---------------- */
.checkout { padding-block: 40px 90px; }
.checkout-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.steps { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 26px; flex-wrap: wrap; }
.steps b { color: var(--text); }
.steps i { width: 24px; height: 1px; background: var(--line-2); }
.panel { border: 1px solid var(--line); border-radius: 22px; padding: 26px; background: var(--surface); margin-bottom: 18px; }
.panel h3 { font-size: 24px; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.panel h3 .num { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #000; font-family: var(--font-body); font-style: normal; font-size: 13px; display: grid; place-items: center; }
.form-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; grid-column: span 6; }
.field.c3 { grid-column: span 3; } .field.c2 { grid-column: span 2; } .field.c4 { grid-column: span 4; } .field.c1 { grid-column: span 1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: rgba(255,255,255,.03); border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 14px; outline: 0; transition: .2s; width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(47,216,166,.12); }
.field input.invalid { border-color: var(--danger); }
.field small { font-size: 11px; color: var(--muted-2); }
.summary { position: sticky; top: 92px; }
.summary .panel { background: var(--bg-2); }
.sum-items { max-height: 320px; overflow: auto; margin-bottom: 8px; }
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; }
.pay-methods div { border: 1px solid var(--line); border-radius: 12px; padding: 10px; text-align: center; font-size: 12px; font-weight: 700; color: var(--muted); }
.pay-methods div b { display: block; color: var(--text); font-size: 13px; }
.secure { font-size: 12px; color: var(--muted-2); display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 12px; }
.ship-opt { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border: 1px solid var(--teal); border-radius: 12px; background: rgba(47,216,166,.06); font-size: 13px; }
.ship-opt b { font-size: 14px; }
.alert { padding: 14px 16px; border-radius: 12px; font-size: 13px; border: 1px solid var(--line-2); background: rgba(255,255,255,.03); }
.alert.err { border-color: rgba(255,93,93,.5); background: rgba(255,93,93,.08); }
.alert.ok { border-color: rgba(47,216,166,.5); background: rgba(47,216,166,.08); }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(0,0,0,.25); border-top-color: #000; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Result page */
.result { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px var(--gutter); }
.result .ring { width: 96px; height: 96px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 26px; color: #000; font-size: 40px; font-weight: 900; }
.result h1 { font-size: clamp(40px, 6vw, 72px); }
.result p { color: var(--muted); max-width: 52ch; margin: 14px auto 28px; }
.result .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .search { display: none; }
  .burger { display: grid; }
  .nav.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 12px var(--gutter) 20px; border-bottom: 1px solid var(--line); }
  .hero-grid, .about-grid, .faq-grid, .kits-grid, .checkout-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; }
  .hero-card { transform: none; }
  .chip-1 { left: 8px; } .chip-2 { right: 8px; }
  .modal-card { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-media { min-height: 280px; aspect-ratio: 1; }
  .modal-media img { position: static; }
  .kit-card { grid-template-columns: 1fr; }
  .kit-card .kit-img { aspect-ratio: 16/10; }
  .summary { position: static; }
  .toolbar { top: 72px; gap: 8px; }
  .chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; width: calc(100% + 2 * var(--gutter)); margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
  .about-stat { right: 8px; }
}
@media (max-width: 600px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-body { padding: 12px; }
  .card h3 { font-size: 13px; }
  .price { font-size: 20px; }
  .add-btn { width: 36px; height: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 18px; }
  .hero-tag .name { font-size: 17px; }
  .hero-tag .btn { padding: 12px 18px; font-size: 13px; }
  .field.c3, .field.c2, .field.c4, .field.c1 { grid-column: span 6; }
  .field.c2.half { grid-column: span 3; }
  .pay-methods { grid-template-columns: 1fr 1fr 1fr; }
  .toolbar .right { width: 100%; }
  .toolbar .right .select-wrap { flex: 1; }
  .toolbar .right select { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
