/* ============================================================================
   AXIS · SISTEMA VISUAL
   Cores, tipografia e regras seguem a Identidade Visual v1.0
   ========================================================================== */

:root {
  /* Paleta do sistema (4 cores — nunca adicionar outras) */
  --bone:   #F0EBE0;
  --carbon: #0A0A0A;
  --navy:   #1E2A3A;
  --olive:  #3A4535;

  /* Papéis */
  --bg:      var(--bone);
  --ink:     var(--carbon);
  --whats:   #1FA855;   /* usado só no botão de checkout (fora da marca, por função) */

  /* Tipografia */
  --f-display: "Big Shoulders Display", Impact, sans-serif;
  --f-title:   "Barlow", system-ui, sans-serif;
  --f-mono:    "Space Mono", "JetBrains Mono", monospace;
  --f-body:    "Inter", system-ui, sans-serif;
  --f-tech:    "JetBrains Mono", "Space Mono", monospace;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --line: rgba(10,10,10,.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Tipos utilitários -------------------------------------------------- */
.label {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(10,10,10,.55);
}
.label--bone { color: rgba(240,235,224,.6); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240,235,224,.5);
}

/* ============================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px var(--gutter);
  background: rgba(240,235,224,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .08em;
  line-height: 1;
}
.nav {
  display: none;
  gap: clamp(14px, 1.6vw, 24px);
  margin-left: auto;
  font-family: var(--f-title);
  font-weight: 600;
  font-size: 13px;
}
.nav a { position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--ink); transition: width .22s ease;
}
.nav a:hover::after { width: 100%; }

/* Hambúrguer (só aparece no mobile) */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 9px; margin-left: 4px;
  background: transparent; border: 1px solid var(--line); cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--carbon); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu dropdown no mobile */
@media (max-width: 699px) {
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 6px var(--gutter) 14px;
    box-shadow: 0 14px 26px -14px rgba(10,10,10,.4);
  }
  .nav.is-open a { padding: 14px 2px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav.is-open a:last-child { border-bottom: none; }
  .nav.is-open a::after { display: none; }
}

.cart-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--carbon);
  color: var(--bone);
  border: none;
  cursor: pointer;
  font-family: var(--f-title);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-btn__count {
  min-width: 20px; height: 20px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bone); color: var(--carbon);
  font-family: var(--f-tech); font-size: 12px; border-radius: 2px;
}

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--carbon);
  color: var(--bone);
  padding: clamp(56px, 12vw, 130px) var(--gutter) clamp(48px, 9vw, 96px);
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,235,224,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,235,224,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 75%);
}
.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.hero__wordmark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(88px, 27vw, 320px);
  line-height: .82;
  letter-spacing: .04em;
  margin: 10px 0 0;
}
.hero__tagline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 6vw, 52px);
  line-height: 1;
  margin-top: 8px;
}
.hero__subline {
  max-width: 44ch;
  margin-top: 22px;
  color: rgba(240,235,224,.72);
  font-size: 16px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ============================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--f-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .12s ease, background .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--bone); color: var(--carbon); }
.btn--solid:hover { background: #fff; }
.hero .btn--solid { background: var(--bone); color: var(--carbon); }
.btn--ghost { border-color: rgba(240,235,224,.4); color: var(--bone); background: transparent; }
.btn--ghost:hover { border-color: var(--bone); }
.btn--block { width: 100%; }
.btn--line { background: transparent; border-color: rgba(10,10,10,.28); color: var(--carbon); }
.btn--line:hover { border-color: var(--carbon); background: rgba(10,10,10,.04); }
.btn--whats { background: var(--whats); color: #fff; }
.btn--whats:hover { filter: brightness(1.06); }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* ============================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(56px, 9vw, 110px) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.section--dark {
  max-width: none;
  background: var(--navy);
  color: var(--bone);
}
.section__head { margin-bottom: 40px; }
.section__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1;
  margin-top: 10px;
}

/* ---- Grupos do catálogo (Peças / Fita / Kits) --------------------------- */
.catalog__group { margin-bottom: clamp(44px, 6vw, 76px); scroll-margin-top: 84px; }
.catalog__group:last-child { margin-bottom: 0; }
.group__label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(10,10,10,.5);
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

/* ---- Grid de produtos --------------------------------------------------- */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.card {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(10,10,10,.5); }
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bone);
  display: grid; place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
/* Selo de promoção (card e modal) */
.promo-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--olive); color: var(--bone);
  font-family: var(--f-tech); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; padding: 4px 9px;
}
.promo-badge--soon { background: var(--navy); }

/* Em breve (produto em desenvolvimento) */
.card--soon { cursor: default; }
.card--soon:hover { transform: none; box-shadow: none; }
.card--soon .card__media img, .card--soon .card__media svg { opacity: .7; }
.card__soon { border-color: rgba(30,42,58,.4); color: var(--navy); }
/* Preço "de / por" */
.price-old { text-decoration: line-through; color: rgba(10,10,10,.42); font-size: .82em; margin-right: 5px; }
.price-now { color: var(--olive); font-weight: 600; }
.citem__old { text-decoration: line-through; color: rgba(10,10,10,.4); font-size: 11px; margin-right: 4px; }
.card__media img, .card__media svg { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__cat { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; color: rgba(10,10,10,.5); }
.card__name {
  font-family: var(--f-display); font-weight: 700; font-size: 30px; line-height: 1;
}
.card__short { color: rgba(10,10,10,.7); font-size: 14.5px; }
.card__foot {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line);
}
.card__price { font-family: var(--f-tech); font-size: 17px; font-weight: 500; }
.card__price .from { font-family: var(--f-body); font-size: 11px; font-weight: 400; color: rgba(10,10,10,.5); }
.card__cta { font-family: var(--f-title); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.card__badges { display: flex; gap: 6px; }
.swatch-dot { position: relative; width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(10,10,10,.25); }
/* cor sem estoque: risco vermelho cruzando a bolinha */
.swatch-dot--out::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  background: linear-gradient(to top left, transparent 43%, #d63a2f 43%, #d63a2f 57%, transparent 57%);
}

/* Esgotado */
.card--out { cursor: default; }
.card--out:hover { transform: none; box-shadow: none; }
.card--out .card__media img,
.card--out .card__media svg { filter: grayscale(1); opacity: .55; }
.card--out .card__name,
.card--out .card__short { color: rgba(10,10,10,.45); }
.card__out {
  font-family: var(--f-title); font-weight: 800; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--line); color: rgba(10,10,10,.55);
}

/* ============================================================================
   SOBRE
   ========================================================================== */
.about {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 30px;
}
.about__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(32px, 6vw, 58px); line-height: .98;
}
.about__text { color: rgba(240,235,224,.78); margin-bottom: 16px; max-width: 52ch; }
.about__specs { list-style: none; margin-top: 24px; border-top: 1px solid rgba(240,235,224,.16); }
.about__specs li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid rgba(240,235,224,.16);
  font-family: var(--f-tech); font-size: 13px; color: rgba(240,235,224,.85);
}
.about__specs span { color: rgba(240,235,224,.5); letter-spacing: .1em; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--carbon); color: var(--bone);
  padding: clamp(48px, 7vw, 80px) var(--gutter) 40px;
  display: grid; gap: 32px;
}
.footer__brand { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.footer__wordmark { font-family: var(--f-display); font-weight: 900; font-size: 44px; letter-spacing: .06em; }
.footer__tagline { font-family: var(--f-display); font-weight: 700; font-size: 20px; color: rgba(240,235,224,.6); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--f-title); font-weight: 600; }
.footer__links a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.footer__links a:hover { border-color: var(--bone); }
.footer__meta {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(240,235,224,.16);
  font-family: var(--f-mono); font-size: 12px; color: rgba(240,235,224,.5);
}
.is-hidden { display: none !important; }

/* ============================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 45;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--whats); color: #fff;
  box-shadow: 0 10px 26px -8px rgba(10,10,10,.5);
  transition: transform .16s ease, box-shadow .16s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 30px -8px rgba(10,10,10,.55); }
.wa-float:active { transform: scale(.98); }
.wa-float svg { display: block; }

/* ============================================================================
   MODAL
   ========================================================================== */
.modal, .drawer { position: fixed; inset: 0; z-index: 60; display: none; }
.modal.is-open, .drawer.is-open { display: block; }
.modal__backdrop, .drawer__backdrop {
  position: absolute; inset: 0; background: rgba(10,10,10,.62); backdrop-filter: blur(2px);
}
.modal__panel {
  position: relative; z-index: 1;
  max-width: 920px; width: calc(100% - 32px);
  margin: 5vh auto; max-height: 90vh; overflow: auto;
  background: var(--bone);
  display: grid; grid-template-columns: 1fr;
  animation: pop .22s ease;
}
@keyframes pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border: none; cursor: pointer;
  background: rgba(10,10,10,.06); color: var(--carbon); font-size: 26px; line-height: 1;
}
.modal__close:hover { background: rgba(10,10,10,.12); }
.modal__media { background: #fff; border-bottom: 1px solid var(--line); }
.modal__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.modal__img img, .modal__img svg { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
.card__media img, .card__media svg { transform-origin: center; }
/* Galeria: setas e pontos */
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: none; cursor: pointer;
  background: rgba(240,235,224,.9); color: var(--carbon);
  font-size: 26px; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 2px 10px -4px rgba(10,10,10,.4);
}
.gallery__nav:hover { background: var(--bone); }
.gallery__nav--prev { left: 10px; }
.gallery__nav--next { right: 10px; }
.gallery__dots {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.gallery__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(10,10,10,.28); }
.gallery__dot.is-active { background: var(--carbon); }
.modal__body { padding: 26px; }
.modal__title { font-family: var(--f-display); font-weight: 700; font-size: 40px; line-height: 1; margin: 6px 0; }
.modal__sku { font-family: var(--f-tech); font-size: 12px; color: rgba(10,10,10,.5); }
.modal__desc { margin: 16px 0; color: rgba(10,10,10,.78); }
.modal__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.modal__specs span {
  font-family: var(--f-tech); font-size: 11px; padding: 6px 10px;
  background: rgba(10,10,10,.05); border: 1px solid var(--line);
}
.opt { margin-bottom: 20px; }
.opt__label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; color: rgba(10,10,10,.55); margin-bottom: 10px; }
.swatches, .opt__values { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 8px; border: 1.5px solid var(--line); cursor: pointer;
  font-family: var(--f-mono); font-size: 12px; background: #fff;
}
.swatch .dot { position: relative; width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(10,10,10,.25); }
.swatch.is-active { border-color: var(--carbon); }
/* cor sem estoque no modal: riscada e não clicável */
.swatch--out { cursor: not-allowed; opacity: .6; text-decoration: line-through; text-decoration-color: #d63a2f; }
.swatch--out .dot::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  background: linear-gradient(to top left, transparent 43%, #d63a2f 43%, #d63a2f 57%, transparent 57%);
}
.chip {
  padding: 9px 16px; border: 1.5px solid var(--line); cursor: pointer;
  font-family: var(--f-title); font-weight: 600; font-size: 13px; background: #fff;
}
.chip.is-active { border-color: var(--carbon); background: var(--carbon); color: var(--bone); }
.modal__buy { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 6px 0 18px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); }
.qty__btn { width: 42px; height: 42px; border: none; background: #fff; cursor: pointer; font-size: 20px; }
.qty__btn:hover { background: rgba(10,10,10,.06); }
.qty__val { width: 46px; text-align: center; font-family: var(--f-tech); font-size: 16px; }
.modal__price { font-family: var(--f-tech); font-size: 24px; }
.modal__note { font-size: 12px; color: rgba(10,10,10,.5); margin-top: 12px; text-align: center; }

/* ============================================================================
   DRAWER (carrinho)
   ========================================================================== */
.drawer__panel {
  position: absolute; top: 0; right: 0; z-index: 1;
  width: min(760px, 100%); height: 100%;
  background: var(--bone);
  display: flex; flex-direction: column;
  animation: slide .24s ease;
}
@keyframes slide { from { transform: translateX(40px); opacity: .6; } to { transform: none; opacity: 1; } }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px; border-bottom: 1px solid var(--line);
}
.drawer__close { width: 38px; height: 38px; border: none; background: transparent; font-size: 28px; cursor: pointer; }

/* Corpo: mobile rola por inteiro; desktop vira duas colunas */
.drawer__body { flex: 1; min-height: 0; overflow-y: auto; }
.drawer__items { padding: 12px 22px; }
@media (min-width: 700px) {
  .drawer__body { display: grid; grid-template-columns: 1.15fr 0.85fr; overflow: hidden; }
  .drawer__items { overflow-y: auto; min-height: 0; border-right: 1px solid var(--line); }
  .drawer__foot { overflow-y: auto; min-height: 0; border-top: none !important; }
}
.drawer__empty { color: rgba(10,10,10,.5); text-align: center; padding: 48px 0; font-size: 14px; }
.citem { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.citem__thumb { width: 56px; height: 56px; background: #fff; border: 1px solid var(--line); flex-shrink: 0; overflow: hidden; }
.citem__thumb img, .citem__thumb svg { width: 100%; height: 100%; object-fit: cover; }
.citem__info { flex: 1; min-width: 0; }
.citem__name { font-family: var(--f-title); font-weight: 800; font-size: 15px; }
.citem__opts { font-family: var(--f-mono); font-size: 11px; color: rgba(10,10,10,.55); margin-top: 2px; }
.citem__row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.citem__price { font-family: var(--f-tech); font-size: 13px; }
.qtybar { display: inline-flex; align-items: center; border: 1px solid var(--line); background: #fff; }
.qtybar__btn, .qtybar__del {
  width: 32px; height: 32px; border: none; background: transparent; cursor: pointer;
  display: grid; place-items: center; color: var(--carbon); font-size: 17px; line-height: 1;
}
.qtybar__btn:hover { background: rgba(10,10,10,.06); }
.qtybar__val {
  min-width: 30px; text-align: center;
  font-family: var(--f-tech); font-size: 14px;
}
.qtybar__del { border-left: 1px solid var(--line); color: rgba(10,10,10,.5); }
.qtybar__del:hover { color: var(--carbon); background: rgba(10,10,10,.08); }
.qtybar__del svg { display: block; }
.drawer__foot { padding: 20px 22px; border-top: 1px solid var(--line); }
.drawer__foot .btn + .btn { margin-top: 10px; }

/* Entrega (retirada / envio) */
.delivery { display: grid; gap: 8px; margin-bottom: 16px; }
.delivery__opt {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border: 1.5px solid var(--line); cursor: pointer;
  font-family: var(--f-body); font-size: 13px;
}
.delivery__opt input { accent-color: var(--carbon); width: 16px; height: 16px; }
.delivery__opt:has(input:checked) { border-color: var(--carbon); }
.delivery__label { flex: 1; }
.delivery__price { font-family: var(--f-tech); font-size: 12.5px; white-space: nowrap; }
.delivery__ship { display: grid; gap: 6px; padding: 2px 2px 4px; }
.delivery__region-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(10,10,10,.55);
}
.delivery__region-label:not(:first-child) { margin-top: 6px; }
.cep-row { display: flex; align-items: center; gap: 10px; }
#cepInput {
  width: 120px; padding: 10px 12px; border: 1.5px solid var(--line);
  background: #fff; font-family: var(--f-tech); font-size: 14px; letter-spacing: .05em;
}
#cepInput:focus { outline: none; border-color: var(--carbon); }
.cep-status { font-family: var(--f-tech); font-size: 12px; color: rgba(10,10,10,.6); }
.cep-status--ok  { color: var(--carbon); }
.cep-status--err { color: #d63a2f; }
#regionSelect {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--line);
  background: #fff; font-family: var(--f-body); font-size: 13px; cursor: pointer;
}
.delivery__prazo { font-family: var(--f-tech); font-size: 12px; color: rgba(10,10,10,.62); }
.delivery__prazo strong { color: var(--ink); }

/* Resumo (subtotal / frete / total) */
.summary { display: grid; gap: 7px; margin-bottom: 16px; font-family: var(--f-tech); font-size: 13px; }
.summary__row { display: flex; justify-content: space-between; color: rgba(10,10,10,.7); }
.summary__row--total {
  color: var(--ink); font-size: 15px;
  padding-top: 9px; margin-top: 2px; border-top: 1px solid var(--line);
}
.summary__row--total strong { font-size: 20px; }
.ship-progress {
  font-family: var(--f-tech); font-size: 12px; color: var(--olive);
  background: rgba(58,69,53,.08); border: 1px solid rgba(58,69,53,.2);
  padding: 8px 12px; margin-bottom: 14px; text-align: center;
}
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; font-family: var(--f-tech); }
.drawer__total strong { font-size: 22px; }
.drawer__note { font-size: 11px; color: rgba(10,10,10,.5); margin-top: 12px; text-align: center; }

/* ============================================================================
   RESPONSIVO
   ========================================================================== */
@media (min-width: 700px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .site-header .cart-btn { margin-left: 0; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr 1.2fr; gap: 60px; }
  .modal__panel { grid-template-columns: 1fr 1fr; }
  .modal__media { border-bottom: none; border-right: 1px solid var(--line); }
  .modal__img { aspect-ratio: auto; height: 100%; min-height: 420px; }
}
@media (min-width: 1000px) {
  .products { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* Acessibilidade — foco visível */
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
