/* ═══════════════════════════════════════════════════════════
   ZEYH TWEAKS — LOJA V2  |  shared.css
   Design: "ouro contido" — gold só em ações de compra,
   preço, seleção e selos. Todo o resto neutro escuro.
═══════════════════════════════════════════════════════════ */

/* ── Tokens: Modo Escuro (padrão) ── */
:root {
  /* Tipografia — a Orbitron saiu (dava ar de template pronto). Sans do próprio
     sistema para textos e MONOESPAÇADA para dados (preço, etiqueta, specs),
     que faz os números alinharem em coluna. */
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-data: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --gold:    #FFC820;
  --gold2:   #FF9500;
  --goldInk: #1a1500;
  --gold-bg: rgba(255,200,32,.1);
  --gold-brd:rgba(255,200,32,.28);

  /* #0E1116 é o fundo do protótipo: um pouco mais claro que o preto quase puro
     que estava aqui, e com um leve azul. É ele que faz as faixas em --surf
     aparecerem como camadas em vez de tudo virar um borrão escuro. */
  --bg:      #0E1116;
  --bg2:     #0f1014;
  --page:    #060708;
  --surface: #13151a;
  --surface2:#1c1f27;
  --surface3:#242730;

  /* Paleta do Modelo 1 (lida do fonte do protótipo, não estimada do print).
     O --line era branco transparente; no modelo é um cinza-ardósia sólido, e é
     ele que dá o fio da grade de produtos. */
  --surf:  #161C24;
  --surf2: #1D242E;
  --line:  #252D38;
  --line2: #4A5464;

  --text:    #E7ECF3;
  --text2:   #c8cdd8;
  --muted:   #8B95A5;
  --faint:   #4a4f5e;

  --border:  rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.13);

  --green:   #4ade80;
  --blue:    #60a5fa;
  --yellow:  #fbbf24;
  --purple:  #c4b5fd;
  --red:     #f87171;

  --radius:  14px;
  --radius-sm:8px;
  --shadow:  0 4px 24px rgba(0,0,0,.45);
  --shadow-lg:0 8px 48px rgba(0,0,0,.6);
  --nav-bg:  rgba(10,11,13,.92);
  --toast-bg:#1c1f27;
}

/* ── Tokens: Modo Claro ── */
html[data-theme="light"] {
  --bg:      #f4f6fb;
  --bg2:     #eceef5;
  --page:    #e9ebee;
  --surface: #ffffff;
  --surface2:#f0f2f8;
  --surface3:#e8eaf2;

  /* mockup aliases light */
  --surf:  #ffffff;
  --surf2: #f4f5f7;
  --line:  rgba(0,0,0,.08);
  --line2: rgba(0,0,0,.15);

  --text:    #1a1d22;
  --text2:   #3a3d4a;
  --muted:   #6b7280;
  --faint:   #b0b5c4;

  --border:  rgba(0,0,0,.08);
  --border2: rgba(0,0,0,.15);

  --green:   #1f9d57;
  --blue:    #2f6fd0;
  --yellow:  #b07d00;
  --purple:  #7c5cd6;
  --red:     #d4403a;

  --shadow:  0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:0 8px 48px rgba(0,0,0,.14);
  --nav-bg:  rgba(244,246,251,.94);
  --toast-bg:#ffffff;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .25s, color .25s;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }

/* ── Container ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 58px;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 22px;
  flex: 1;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .18s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-actions select {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: .78rem;
  cursor: pointer;
  outline: none;
}
.nav-actions select:focus { border-color: var(--border2); }

/* Seletor de idioma — pílula com globo (PC); vira só o globo no celular */
.lang-switch {
  position: relative; display: flex; align-items: center; gap: 5px;
  height: 36px; padding: 0 9px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color .18s;
}
.lang-switch:hover { border-color: var(--border2); }
.lang-switch .lang-globe { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--muted); fill: none; }
.lang-switch select {
  background: var(--surface2); border: none; color: var(--text);
  font-size: .78rem; font-weight: 600; cursor: pointer; outline: none;
  padding: 0; font-family: inherit;
}
/* opções com fundo sólido — evita o dropdown transparente no Chrome/Windows */
.lang-switch select option { background: var(--surface2); color: var(--text); font-weight: 500; }

/* faixa de confiança (pagamento seguro · avaliações · suporte) */
.trust-strip { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 14px 0 2px; }
.trust-item { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); }
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.trust-item svg:not(.ti-star) { stroke: var(--muted); fill: none; }
.trust-item .ti-star { fill: var(--gold); }
@media (max-width: 660px) {
  .lang-switch { width: 32px; height: 32px; padding: 0; justify-content: center; }
  .lang-switch .lang-globe { width: 16px; height: 16px; }
  .lang-switch select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; }
}

/* theme + account icon buttons */
.nav-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s, transform .12s;
}
.nav-icon-btn:hover { border-color: var(--border2); transform: translateY(-1px); }
.acc-nav-btn.logged-in { border-color: var(--gold-brd); color: var(--gold); }
.nav-burger { display: none; width: 34px; height: 34px; border-radius: var(--radius-sm); background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-size: 1.1rem; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0; }

/* breadcrumb (produto / checkout / confirmacao pages) */
.nav-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  flex: 1;
}
.nav-breadcrumb a { color: var(--muted); transition: color .18s; }
.nav-breadcrumb a:hover { color: var(--text); }
.nav-breadcrumb-sep { opacity: .4; }

/* ══════════════════════════════════
   HERO DA LOJA
══════════════════════════════════ */
.store-hero {
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
}
.store-hero-tag {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.store-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.store-hero-sub {
  font-size: .97rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  padding: 12px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .05em;
  display: block;
  margin-top: 4px;
}

/* ══════════════════════════════════
   SEÇÃO DE SERVIÇOS / LOJA
══════════════════════════════════ */
#servicos { padding: 56px 0 72px; }

.cat-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.cat-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: .03em;
}
.cat-sub {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Grid de produtos ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.products-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  max-width: 640px;
}

/* ── Card de produto ── */
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--gold-brd);
  box-shadow: 0 6px 32px rgba(255,200,32,.1);
  transform: translateY(-3px);
}
.product-card--popular {
  border-color: rgba(255,200,32,.4);
  box-shadow: 0 0 32px rgba(255,200,32,.12);
}

/* popular badge */
.badge-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-icon {
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .02em;
  padding-right: 70px; /* space for popular badge */
}
.product-card:not(.product-card--popular) .product-name { padding-right: 0; }
.product-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.product-features {
  flex: 1;
  margin-bottom: 20px;
}
.product-features li {
  font-size: .82rem;
  color: var(--text2);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.product-features li::before {
  content: '▸';
  color: var(--muted);
  font-size: .72rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.product-features li:last-child { border-bottom: none; }

/* pricing */
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.pix-badge {
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #000;
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 4px;
  align-self: center;
  flex-shrink: 0;
}
.price-val {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-cents {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-installment {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.price-installment strong { color: var(--text2); }

/* ── Botão de compra (gold — só aqui e no checkout) ── */
.btn-buy {
  width: 100%;
  padding: 13px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  border-radius: var(--radius-sm);
  transition: opacity .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 3px 14px rgba(255,200,32,.3);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-buy:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255,200,32,.42);
}
.btn-buy:active { transform: translateY(0); }

/* ── Botão secundário (neutro) ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: .82rem;
  font-weight: 600;
  transition: background .18s, border-color .18s;
}
.btn-outline:hover { background: var(--surface2); border-color: var(--border2); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .8rem;
  transition: color .18s, border-color .18s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border2); }

/* ══════════════════════════════════
   PÁGINA DO PRODUTO
══════════════════════════════════ */
.product-page { padding: 40px 0 72px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* coluna principal */
.product-main .product-hero-icon {
  font-size: 3rem;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.product-main .product-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
  padding-bottom: 0;
}
.features-section h3 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.features-list { display: flex; flex-direction: column; gap: 0; }
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text2);
}
.features-list li:last-child { border-bottom: none; }
.feat-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--green);
  flex-shrink: 0;
}

/* calendário / slots (serviços agendados) */
.schedule-section {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.schedule-section h3 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.schedule-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 500px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
}
.form-input, .form-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,200,32,.12);
}
.form-select option { background: var(--bg2); color: var(--text); }

.tz-note {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border2);
  display: none;
}

/* coluna lateral (buy box) */
.buy-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 74px;
}
.buy-box-type {
  font-size: .74rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.type-chip {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .7rem;
  color: var(--muted);
}
.buy-box-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.buy-box-installment {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.buy-box-installment strong { color: var(--text2); }

.buy-box-note {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.buy-box-note strong { color: var(--text2); }

/* trust badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--muted);
}
.trust-badge-icon { font-size: 1rem; }

/* ══════════════════════════════════
   CHECKOUT
══════════════════════════════════ */
.checkout-page { padding: 36px 0 80px; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.checkout-step {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-size: .55rem;
  letter-spacing: .06em;
  color: var(--muted);
  border-right: 1px solid var(--border);
  transition: color .2s;
}
.checkout-step:last-child { border-right: none; }
.checkout-step.active { color: var(--gold); }
.checkout-step.done { color: var(--text2); }

.checkout-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin-bottom: 20px;
}
.checkout-section-title {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* order bump */
.order-bump {
  border: 2px dashed var(--gold-brd);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--gold-bg);
  margin-bottom: 20px;
}
.bump-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bump-check {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 2px solid var(--gold-brd);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background .15s, border-color .15s;
}
.bump-check:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.bump-check:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: .75rem;
}
.bump-label { flex: 1; cursor: pointer; }
.bump-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.bump-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.bump-note { font-size: .77rem; color: var(--muted); margin-top: 2px; }
.bump-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--gold); white-space: nowrap; }

/* payment tabs */
.pay-tabs { display: flex; gap: 10px; margin-bottom: 18px; }
.pay-tab {
  flex: 1;
  padding: 10px 14px;
  background: var(--surface2);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .18s;
}
.pay-tab.active { border-color: var(--gold); color: var(--text); background: var(--gold-bg); }

/* MP brick loader */
.brick-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px;
  color: var(--muted);
  font-size: .84rem;
}
/* "ou" divider acima do botão de pagar no site do Mercado Pago */
.mp-or {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-size: .74rem;
  margin: 16px 0 12px;
}
.mp-or::before,
.mp-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.mp-or span { padding: 0 12px; }
/* Accessibility utility */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mp-safe {
  text-align: center;
  font-size: .7rem;
  color: var(--muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* checkout summary (right col) */
.checkout-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: sticky;
  top: 74px;
}
.summary-title {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .86rem;
}
.summary-item:last-child { border-bottom: none; }
.summary-item-name { color: var(--text2); flex: 1; }
.summary-item-price { color: var(--text); font-weight: 600; white-space: nowrap; }
.summary-item-date { font-size: .74rem; color: var(--muted); margin-top: 2px; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.summary-total-lbl {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
}
.summary-total-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
}
.pix-discount-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: .76rem;
  color: var(--green);
  margin-top: 12px;
}

/* ══════════════════════════════════
   CONFIRMAÇÃO
══════════════════════════════════ */
.confirm-page { padding: 60px 0; }
.confirm-box {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.confirm-icon { font-size: 3.5rem; margin-bottom: 20px; }
.confirm-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.confirm-body {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.confirm-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
  margin-bottom: 24px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .86rem;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row-lbl { color: var(--muted); }
.confirm-row-val { color: var(--text); font-weight: 600; text-align: right; }

.confirm-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(255,200,32,.35);
  text-decoration: none;
  transition: opacity .15s, transform .12s;
}
.btn-portal:hover { opacity: .9; transform: translateY(-1px); }

.btn-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: #25d366;
  font-size: .88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .18s;
}
.btn-wpp:hover { background: rgba(37,211,102,.18); }

.poll-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  justify-content: center;
  margin-top: 12px;
}
.poll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 1.6s infinite;
}
.poll-dot.paid { background: var(--green); animation: none; }

/* ══════════════════════════════════
   AVALIAÇÕES
══════════════════════════════════ */
#avaliacoes {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.section-tag {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}
.reviews-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.rev-score {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rev-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .04em; }
.rev-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}
.rev-label { font-size: .82rem; color: var(--muted); }
.rev-count { font-size: .82rem; color: var(--muted); }
.rev-count a { color: var(--muted); border-bottom: 1px solid var(--border2); }
.rev-see-all { display: inline-block; margin-top: 10px; font-size: .78rem; color: var(--gold); border-bottom: 1px solid var(--gold); text-decoration: none; opacity: .85; transition: opacity .2s; }
.rev-see-all:hover { opacity: 1; }

.reviews-track-wrap { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 16px;
  animation: scroll-reviews 96s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
.rev-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 280px;
  flex-shrink: 0;
}
.rev-card-stars { color: var(--gold); font-size: .85rem; margin-bottom: 8px; }
.rev-card-text { font-size: .83rem; color: var(--text2); line-height: 1.55; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rev-card-author { font-size: .76rem; color: var(--muted); font-weight: 600; }
.rev-card-date { font-size: .72rem; color: var(--faint); margin-top: 2px; }

@keyframes scroll-reviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 900;
  color: var(--text2);
  letter-spacing: .1em;
}
.footer-legal {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-legal a { color: var(--muted); border-bottom: 1px solid var(--border2); transition: color .15s; }
.footer-legal a:hover { color: var(--text); }
.footer-rights { font-size: .72rem; color: var(--faint); }

/* ══════════════════════════════════
   CONTA DO CLIENTE — OVERLAY
══════════════════════════════════ */
.acc-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px 24px;
  overflow-y: auto;
}
.acc-overlay.show { display: flex; animation: fadeUp .3s ease both; }

.acc-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}
.acc-header-left { display: flex; align-items: center; gap: 12px; }
.acc-header-ico {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.acc-header-title {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
}
.acc-header-sub { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.acc-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .18s, color .18s;
}
.acc-close:hover { border-color: var(--red); color: var(--red); }
.acc-body { padding: 24px 22px; }
.acc-step { display: none; }
.acc-step.active { display: block; }

.acc-field-label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 7px;
}
.acc-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.acc-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,200,32,.1); }

.acc-btn {
  width: 100%;
  margin-top: 14px;
  padding: 13px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: opacity .15s;
}
.acc-btn:hover { opacity: .9; }
.acc-btn:disabled { opacity: .6; cursor: not-allowed; }

.acc-hint {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}
.acc-hint .link {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .78rem;
  text-decoration: underline;
  padding: 0;
  transition: color .15s;
}
.acc-hint .link:hover { color: var(--text); }

.acc-otp-input {
  width: 100%;
  padding: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-data);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .4em;
  text-align: center;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.acc-otp-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,200,32,.1); }

.acc-email-sent {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .84rem;
  color: var(--text2);
  margin-bottom: 18px;
}

/* profile + orders */
.acc-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.acc-profile-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.acc-profile-email { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.acc-profile-stats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.acc-stat-pill {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .72rem;
  color: var(--muted);
}
.acc-stat-pill strong { color: var(--text2); }
.acc-logout-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: .74rem;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
  flex-shrink: 0;
}
.acc-logout-btn:hover { border-color: var(--red); color: var(--red); }

.acc-orders-list { max-height: 55vh; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.acc-orders-list::-webkit-scrollbar { width: 4px; }
.acc-orders-list::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 2px; }

.acc-order-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.acc-order-top { display: flex; gap: 10px; margin-bottom: 10px; }
.acc-order-service { font-size: .88rem; font-weight: 700; color: var(--text); }
.acc-order-plan { font-size: .76rem; color: var(--muted); margin-top: 3px; }
.acc-type-chip {
  display: inline-block;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: .7rem;
  color: var(--muted);
  margin-top: 3px;
}
.acc-order-right { text-align: right; flex-shrink: 0; }
.acc-order-amount { font-family: var(--font-display); font-size: .88rem; font-weight: 900; color: var(--gold); }

/* status badges */
.acc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
}
.acc-badge-pending  { background: rgba(251,191,36,.1);  color: var(--yellow); border-color: rgba(251,191,36,.25); }
.acc-badge-paid     { background: rgba(96,165,250,.1);  color: var(--blue);   border-color: rgba(96,165,250,.25); }
.acc-badge-confirmed{ background: rgba(74,222,128,.1);  color: var(--green);  border-color: rgba(74,222,128,.25); }
.acc-badge-completed{ background: rgba(196,181,253,.12);color: var(--purple); border-color: rgba(196,181,253,.3); }
.acc-badge-cancelled{ background: rgba(248,113,113,.1); color: var(--red);    border-color: rgba(248,113,113,.2); }

/* timeline */
.acc-timeline { display: flex; gap: 0; margin: 10px 0; }
.acc-tl-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.acc-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border2);
  border: 2px solid var(--surface2);
  transition: background .2s;
}
.acc-tl-dot.tl-done   { background: var(--text2); }
.acc-tl-dot.tl-active { background: var(--gold); box-shadow: 0 0 8px rgba(255,200,32,.5); }
.acc-tl-lbl {
  font-size: .62rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  font-weight: 600;
  letter-spacing: .03em;
}
.acc-tl-lbl.tl-done   { color: rgba(255,255,255,.55); }
.acc-tl-lbl.tl-active { color: var(--gold); font-weight: 700; }

html[data-theme="light"] .acc-tl-lbl { color: rgba(0,0,0,.3); }
html[data-theme="light"] .acc-tl-lbl.tl-done { color: rgba(0,0,0,.5); }
html[data-theme="light"] .acc-tl-lbl.tl-active { color: #9a6f00; }

/* order items */
.acc-items-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 7px; padding: 10px 12px; margin: 10px 0; }
.acc-items-title { font-size: .68rem; font-weight: 700; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.acc-item-row { display: flex; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.acc-item-row:last-child { border-bottom: none; }
.acc-item-bullet { color: var(--muted); font-size: .75rem; margin-top: 2px; }
.acc-item-name { font-size: .82rem; color: var(--text2); }
.acc-item-meta { font-size: .74rem; color: var(--muted); margin-top: 2px; }
.acc-item-serial { font-size: .74rem; color: var(--gold); font-family: monospace; margin-top: 3px; letter-spacing: .04em; }

/* serial box */
.acc-serial-box { background: var(--surface); border: 1px solid var(--border); border-radius: 7px; padding: 10px 12px; margin: 10px 0; }
.acc-serial-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
.acc-serial-val { font-family: monospace; font-size: .88rem; color: var(--text); letter-spacing: .06em; margin-bottom: 8px; word-break: break-all; }
.acc-serial-copy {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .74rem;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.acc-serial-copy:hover { border-color: var(--gold); color: var(--gold); }

/* meta row + actions */
.acc-order-meta-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.acc-id-btn {
  font-size: .7rem;
  font-family: monospace;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}
.acc-id-btn:hover { border-color: var(--border2); color: var(--text); }
.acc-order-meta { font-size: .74rem; color: var(--muted); }
.acc-card-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.acc-action-btn {
  flex: 1;
  min-width: 120px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface);
  transition: border-color .15s, color .15s;
}
.acc-btn-portal { border-color: var(--gold-brd); color: var(--gold); background: var(--gold-bg); }
.acc-btn-wpp    { border-color: rgba(37,211,102,.3); color: #25d366; background: rgba(37,211,102,.07); }
.acc-btn-new    { color: var(--muted); }

/* skeleton */
.acc-skeleton {
  background: linear-gradient(90deg, var(--surface2) 25%, var(--surface3) 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* empty state */
.acc-empty-state { text-align: center; padding: 32px 0; }
.acc-empty-icon { font-size: 2.5rem; margin-bottom: 12px; }
.acc-empty-title { font-size: .95rem; font-weight: 700; color: var(--text2); margin-bottom: 6px; }
.acc-empty-sub { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.acc-empty-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
}

/* ══════════════════════════════════
   TOAST
══════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--toast-bg);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: .84rem;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: var(--shadow);
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════
   FAB WHATSAPP
══════════════════════════════════ */
.fab {
  position: fixed; right: 22px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .15s, box-shadow .15s, opacity .2s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; fill: #fff; }
.fab-wa { bottom: 22px; background: #25d366; box-shadow: 0 4px 16px rgba(37,211,102,.4); }
.fab-wa:hover { box-shadow: 0 6px 22px rgba(37,211,102,.55); }
.fab-discord { bottom: 84px; background: #5865F2; box-shadow: 0 4px 16px rgba(88,101,242,.4); }
.fab-discord:hover { box-shadow: 0 6px 22px rgba(88,101,242,.55); }
/* somem quando carrinho/conta/popup abre — visual mais limpo e profissional */
body.zeyh-overlay .fab { opacity: 0; pointer-events: none; transform: translateY(14px); }
@media (max-width: 660px) {
  .fab { width: 44px; height: 44px; right: 14px; }
  .fab-wa { bottom: 14px; }
  .fab-discord { bottom: 68px; }
}

/* ══════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* ══════════════════════════════════
   RESPONSIVO
══════════════════════════════════ */
@media (max-width: 900px) {
  .product-layout, .checkout-layout { grid-template-columns: 1fr; }
  .buy-box, .checkout-summary { position: static; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { padding: 10px 18px; }
}
@media (max-width: 660px) {
  .nav-inner { position: relative; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--surface); border: 1px solid var(--border); border-top: none;
    border-radius: 0 0 12px 12px; padding: 6px 0; z-index: 120;
    box-shadow: 0 14px 30px rgba(0,0,0,.4);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 18px; font-size: .85rem; }
  .container, .nav-inner { padding: 0 14px; }
  /* nav compacta: cabe em qualquer largura de celular */
  .nav-brand { font-size: .8rem; letter-spacing: .04em; }
  .nav-actions { gap: 6px; }
  .nav-actions select { padding: 5px 6px; font-size: .74rem; }
  .nav-burger { width: 32px; height: 32px; }
  .nav-icon-btn { width: 32px; height: 32px; font-size: .92rem; }
  .store-hero { padding: 36px 0 30px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-2 { max-width: none; }
  .schedule-fields { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pay-tabs { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   LOJA V2 — NOVOS COMPONENTES (iFood / Yampi style)
═══════════════════════════════════════════════════════════ */

/* ── Promo Banner ── */
.promo-bar {
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  color: #000;
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  position: relative;
}
.promo-bar-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(0,0,0,.5);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Nav badge (carrinho) ── */
.nav-cart-btn {
  position: relative;
}
.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-size: .52rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.nav-cart-badge.show { display: flex; }

/* ── Category chips ── */
.store-header {
  padding: 24px 0 0;
}
.store-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}
.store-header-sub {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.cat-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cat-chip {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .16s;
  letter-spacing: .03em;
}
.cat-chip:hover { color: var(--text); border-color: var(--border2); background: var(--surface2); }
.cat-chip.active {
  background: var(--gold-bg);
  border-color: var(--gold-brd);
  color: var(--gold);
}

/* ── Service list rows ── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 32px;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
  border-radius: 0;
  position: relative;
}
.service-row:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.service-row:last-child  { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.service-list { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.service-row:hover { background: var(--surface2); }
.service-row--popular {
  border-left: 3px solid var(--gold);
  padding-left: 13px;
}
.service-thumb {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.seal-top {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .42rem;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 2px 6px;
  border-radius: 100px;
  white-space: nowrap;
}
.service-row-body {
  flex: 1;
  min-width: 0;
}
.service-row-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-row-type {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px;
}
.service-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 1px;
}
.service-price-now {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}
.service-price-old {
  font-size: .72rem;
  color: var(--faint);
  text-decoration: line-through;
  white-space: nowrap;
}
.service-row-add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255,200,32,.35);
  transition: transform .12s, box-shadow .12s;
  line-height: 1;
}
.service-row-add:hover { transform: scale(1.1); box-shadow: 0 4px 16px rgba(255,200,32,.5); }

/* ── Product page v2 ── */
.prod2-page { padding: 0 0 72px; }
.prod2-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
  padding: 14px 0 8px;
  transition: color .15s;
}
.prod2-back:hover { color: var(--text); }
.prod2-icon-area {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  height: 200px;
  margin: 12px 0 20px;
  position: relative;
}
.prod2-type-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: .06em;
}
.prod2-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 8px;
}
.prod2-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.prod2-stars-val { color: var(--gold); font-size: .95rem; }
.prod2-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.prod2-feats {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.prod2-feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .86rem;
  color: var(--text2);
}
.prod2-feat-row:last-child { border-bottom: none; }
.prod2-feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--green);
  flex-shrink: 0;
}

/* calendar */
.cal-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.cal-section-title {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .15s;
}
.cal-nav-btn:hover { border-color: var(--border2); }
.cal-month-label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .06em;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-head {
  font-size: .66rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding: 4px 0;
  letter-spacing: .04em;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .15s;
}
.cal-day:hover:not(.cal-day--empty):not(.cal-day--past) {
  background: var(--surface2);
  border-color: var(--border2);
}
.cal-day--empty { pointer-events: none; }
.cal-day--past { color: var(--faint); pointer-events: none; }
.cal-day--today { color: var(--text); font-weight: 900; }
.cal-day--selected {
  background: var(--gold-bg);
  border-color: var(--gold-brd);
  color: var(--gold);
  font-weight: 900;
}
.cal-day--weekend { color: var(--blue); }
.cal-day--weekend.cal-day--past { color: var(--faint); }
.cal-day--weekend.cal-day--selected { color: var(--gold); }

/* time slots */
.slots-section { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.slots-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.slot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slot-chip {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--surface2);
  color: var(--text2);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.slot-chip:hover { border-color: var(--gold-brd); color: var(--text); }
.slot-chip--selected {
  background: var(--gold-bg);
  border-color: var(--gold);
  color: var(--gold);
}
.slot-chip--busy { opacity: .35; pointer-events: none; text-decoration: line-through; }

/* product buy area */
.prod2-buy-area {
  position: sticky;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 50;
}
.prod2-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.prod2-price-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.prod2-price-old-tag {
  font-size: .82rem;
  color: var(--faint);
  text-decoration: line-through;
}
.prod2-price-pix {
  font-size: .74rem;
  color: var(--green);
  font-weight: 700;
}
.prod2-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.btn-cta-primary {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(255,200,32,.3);
  transition: opacity .15s, transform .12s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-cta-primary:hover { opacity: .92; transform: translateY(-1px); }
.btn-cta-secondary {
  padding: 14px 16px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: .78rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.btn-cta-secondary:hover { background: var(--surface2); border-color: var(--border2); }

/* ── Checkout v2 ── */
.ck2-page { padding: 20px 0 80px; }
.ck2-wrap { max-width: 620px; margin: 0 auto; }
.ck2-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 20px;
  transition: color .15s;
}
.ck2-back:hover { color: var(--text); }
.ck2-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.ck2-summary-head {
  padding: 14px 18px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}
.ck2-summary-body { padding: 4px 0; }
.ck2-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .86rem;
}
.ck2-summary-row:last-child { border-bottom: none; }
.ck2-summary-row-lbl { color: var(--text2); flex: 1; min-width: 0; }
.ck2-summary-row-sub { font-size: .74rem; color: var(--muted); margin-top: 2px; }
.ck2-summary-row-val { color: var(--text); font-weight: 600; white-space: nowrap; }
.ck2-summary-row--discount { background: rgba(74,222,128,.05); }
.ck2-summary-row--discount .ck2-summary-row-lbl { color: var(--green); }
.ck2-summary-row--discount .ck2-summary-row-val { color: var(--green); }
.ck2-summary-row--total { background: var(--gold-bg); padding: 14px 18px; }
.ck2-summary-row--total .ck2-summary-row-lbl {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
}
.ck2-summary-row--total .ck2-summary-row-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
}
.ck2-bump-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.ck2-bump-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border2);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background .15s, border-color .15s;
}
.ck2-bump-check:checked { background: var(--gold); border-color: var(--gold); }
.ck2-bump-check:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: .72rem;
}
.ck2-bump-name { flex: 1; font-size: .84rem; font-weight: 600; color: var(--text2); }
.ck2-bump-saving { font-size: .72rem; color: var(--green); margin-top: 2px; }
.ck2-bump-price { font-family: var(--font-display); font-size: .9rem; color: var(--gold); font-weight: 700; }

.ck2-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.ck2-section-head {
  padding: 14px 18px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}
.ck2-section-body { padding: 18px; }
.ck2-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.ck2-field { display: flex; flex-direction: column; gap: 5px; }
.ck2-field label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
}
.ck2-field input {
  padding: 11px 13px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.ck2-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,200,32,.1); }
.ck2-note { font-size: .74rem; color: var(--faint); margin-top: 4px; line-height: 1.5; }

/* pay tabs */
.ck2-pay-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.ck2-pay-tab {
  flex: 1;
  padding: 12px 10px;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .16s, border-color .16s;
  letter-spacing: .04em;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.ck2-pay-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.ck2-pay-panel { padding: 18px; display: none; }
.ck2-pay-panel.active { display: block; }

.ck2-pix-hint {
  text-align: center;
  padding: 16px 0 8px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.ck2-pix-qr-wrap { text-align: center; padding: 12px 0; }
.ck2-pix-copycode {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .72rem;
  color: var(--text2);
  word-break: break-all;
  line-height: 1.6;
  margin: 12px 0;
  text-align: left;
}

.btn-pay-gold {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255,200,32,.35);
  transition: opacity .15s, transform .12s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.btn-pay-gold:hover { opacity: .92; transform: translateY(-1px); }
.btn-pay-gold:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.ck2-safe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .7rem;
  color: var(--faint);
  margin-top: 10px;
}

/* ── Confirmação v2 ── */
.cf2-page { padding: 48px 0 80px; }
.cf2-wrap { max-width: 540px; margin: 0 auto; text-align: center; }
.cf2-check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(74,222,128,.12);
  border: 2px solid rgba(74,222,128,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes popIn {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cf2-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cf2-sub {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.cf2-order-id {
  display: inline-block;
  font-family: var(--font-data);
  font-size: .72rem;
  color: var(--faint);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.cf2-order-id:hover { border-color: var(--border2); color: var(--text2); }

/* serial card */
.serial-card {
  background: var(--surface);
  border: 1px solid var(--gold-brd);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 16px;
  text-align: left;
}
.serial-card-label {
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.serial-key {
  font-family: var(--font-data);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .1em;
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 14px;
}
.serial-key--loading {
  font-family: 'Exo 2', sans-serif;
  font-size: .84rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.serial-card-actions { display: flex; gap: 10px; }
.serial-card-actions a,
.serial-card-actions button {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-serial-portal {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  border: none;
  box-shadow: 0 2px 12px rgba(255,200,32,.3);
}
.btn-serial-portal:hover { opacity: .9; }
.btn-serial-copy {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
}
.btn-serial-copy:hover { background: var(--surface2); }

/* appointment card */
.appt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  text-align: left;
}
.appt-card-label {
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.appt-date-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.appt-date-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.appt-date-info { flex: 1; }
.appt-date-day {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}
.appt-date-time { font-size: .82rem; color: var(--muted); }
.btn-add-calendar {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: .82rem;
  font-weight: 700;
  background: var(--surface2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s, border-color .15s;
  text-decoration: none;
}
.btn-add-calendar:hover { background: var(--surface3); border-color: var(--border2); }

/* cf2 actions */
.cf2-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.cf2-wpp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: #25d366;
  font-size: .86rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .18s;
}
.cf2-wpp-btn:hover { background: rgba(37,211,102,.18); }
.cf2-new-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  background: transparent;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.cf2-new-btn:hover { background: var(--surface2); color: var(--text); }

/* ── aliases & missing helpers ── */
.ck2-section-title { /* alias for ck2-section-head */
  padding: 14px 18px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* auto delivery note */
.auto-delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin: 20px 0 24px;
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.55;
}
.auto-delivery-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* slot helpers */
.slot-loading {
  font-size: .82rem;
  color: var(--muted);
  padding: 6px 0;
  display: block;
}
.slots-label { /* may already exist */ }

/* product stars label */
.prod2-stars-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 400;
}

/* cf2 circle modifiers */
.cf2-check-circle--paid {
  background: rgba(74,222,128,.12);
  border-color: rgba(74,222,128,.4);
  color: var(--green);
}
.cf2-check-circle--pending {
  background: rgba(251,191,36,.1);
  border-color: rgba(251,191,36,.3);
  color: var(--yellow);
}

/* ── Mobile extras ── */
@media (max-width: 660px) {
  .prod2-cta-row { grid-template-columns: 1fr; }
  .ck2-field-row { grid-template-columns: 1fr; }
  .serial-card-actions { flex-direction: column; }
  .service-row-name { font-size: .84rem; }
  .prod2-icon-area { height: 150px; font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════════════ */
.cdr-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 900;
  animation: cdrFadeIn .22s ease;
}
.cdr-overlay.on { display: block; }

@keyframes cdrFadeIn { from { opacity:0; } to { opacity:1; } }

.cdr-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.35);
}
.cdr-panel.on { transform: translateX(0); }

.cdr-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cdr-title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .09em;
}
.cdr-close {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  font-size: 1rem; padding: 4px 8px;
  border-radius: 6px;
  transition: color .14s, background .14s;
}
.cdr-close:hover { color: var(--text); background: var(--border); }

.cdr-body { flex: 1; overflow-y: auto; padding: 6px 18px; }

.cdr-empty {
  text-align: center;
  color: var(--muted);
  font-size: .83rem;
  padding: 48px 0;
}

.cdr-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.cdr-item:last-child { border-bottom: none; }

.cdr-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.cdr-item-nm {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
}
.cdr-item-meta {
  font-size: .73rem;
  color: var(--muted);
}

.cdr-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.cdr-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--border);
  border-radius: 20px;
  padding: 2px 4px;
}
.cdr-q-btn {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  font-size: .95rem; padding: 0 5px;
  line-height: 1; min-width: 20px;
  text-align: center;
  transition: color .12s;
}
.cdr-q-btn:hover { color: var(--text); }
.cdr-q-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: var(--text);
  min-width: 14px;
  text-align: center;
}
.cdr-item-price {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold, #FFC820);
}
.cdr-rm {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  font-size: .75rem; padding: 3px 6px;
  border-radius: 4px;
  transition: color .13s;
  line-height: 1;
}
.cdr-rm:hover { color: #f87171; }

.cdr-ft {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.cdr-sums { display: flex; flex-direction: column; gap: 5px; }
.cdr-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .79rem;
  color: var(--muted);
}
.cdr-disc span:last-child { color: var(--green, #4ade80); }
.cdr-tot {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 6px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}
.cdr-tot span:last-child { color: var(--gold, #FFC820); }

.cdr-pending-sched { color: var(--gold, #FFC820) !important; opacity: .7; }

.cdr-sched-note {
  font-size: .73rem;
  color: var(--muted);
  text-align: center;
  padding: 6px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  line-height: 1.4;
}
