/* ──────────────────────────────────────────────────────────────
   Catálogo Home Cell — estilos específicos da página de produtos
   (herda tokens e componentes de landing.css)
   ────────────────────────────────────────────────────────────── */

body.catalog { padding-bottom: 0; }

/* ── HEADER DO CATÁLOGO ── */
.cat-hdr .hdr-inner { gap: 14px; }
.hdr-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  margin-left: auto;
  transition: color .15s;
}
.hdr-back:hover { color: var(--ink); }
.hdr-actions { display: flex; align-items: center; gap: 10px; }

.btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .15s, background .15s, color .15s;
}
.btn-icon:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); color: var(--ink); }
.btn-icon svg { flex-shrink: 0; }

#cartBtn {
  border-color: rgba(255,212,0,0.35);
  background: var(--yellow-dim);
  color: var(--yellow);
}
#cartBtn:hover {
  border-color: var(--yellow);
  background: rgba(255,212,0,0.18);
  color: var(--yellow);
}
.cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--yellow);
  color: #0B0B0C;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}
.cart-count[hidden] { display: none; }

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,212,0,0.35);
  background: var(--yellow-dim);
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
}
.user-chip .u-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: #0B0B0C;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}
.user-chip small { display: block; font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── TOPO DA PÁGINA ── */
.cat-top {
  padding: clamp(28px, 4vw, 44px) 0 20px;
  border-bottom: 1px solid var(--border);
}
.cat-title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.cat-lede { color: var(--muted); margin: 0; font-size: 15.5px; max-width: 680px; }
.cat-lede strong { color: var(--ink-2); font-weight: 600; }

/* ── BARRA DE FILTROS ── */
.filters {
  position: sticky;
  top: 68px;
  z-index: 30;
  background: rgba(11,11,12,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.filters-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search {
  position: relative;
  flex: 1 1 280px;
  min-width: 220px;
}
.search svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 12px 40px 12px 42px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.search input::placeholder { color: var(--muted-2); }
.search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px oklch(0.82 0.14 196 / 0.15); }
.search-clear {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 6px;
  border-radius: 50%;
  line-height: 0;
}
.search-clear:hover { color: var(--ink); background: rgba(255,255,255,0.06); }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 38px 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink-2);
  font: inherit;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}
.select-wrap::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select:focus { border-color: var(--accent); }

.cat-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.cat-chip {
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: all .15s;
}
.cat-chip:hover { border-color: var(--border-strong); color: var(--ink-2); }
.cat-chip.on {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0B0B0C;
  font-weight: 700;
}

/* ── RESULTADOS ── */
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 16px;
  font-size: 13.5px;
  color: var(--muted);
}
.results-bar strong { color: var(--ink); font-weight: 700; }

.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  padding-bottom: 32px;
}

.p-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color .18s, transform .18s, background .18s;
}
.p-card:hover { border-color: var(--border-strong); transform: translateY(-2px); background: var(--surface-2); }
.p-card.out { opacity: 0.55; }

.p-head { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.p-sku {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}
.p-stock {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.p-stock.ok { background: rgba(37,211,102,0.12); color: #4ADE80; }
.p-stock.low { background: rgba(255,212,0,0.12); color: var(--yellow); }
.p-stock.no { background: rgba(255,255,255,0.06); color: var(--muted); }

.p-name {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 6px;
  text-wrap: pretty;
}
.p-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.p-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
}

.p-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.p-price { display: flex; flex-direction: column; line-height: 1.1; }
.p-price b {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.p-price small { font-size: 11px; color: var(--muted-2); margin-top: 3px; }
.p-price.tec b { color: var(--yellow); }

.p-locked {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-locked-bar {
  width: 76px;
  height: 20px;
  border-radius: 5px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.09) 0 8px, rgba(255,255,255,0.03) 8px 16px);
}
.p-locked small { font-size: 11px; color: var(--muted-2); }

.p-add {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all .15s;
}
.p-add:hover:not(:disabled) {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0B0B0C;
  transform: scale(1.06);
}
.p-add:disabled { opacity: 0.35; cursor: not-allowed; }
.p-add.in { background: var(--yellow); border-color: var(--yellow); color: #0B0B0C; }

.p-qty {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.p-qty button {
  width: 30px; height: 38px;
  background: var(--yellow-dim);
  border: none;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.p-qty button:hover { background: rgba(255,212,0,0.22); }
.p-qty span {
  min-width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
}

/* ── LISTA / TABELA DE PRODUTOS ── */
.plist {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 32px;
}
.plist-head,
.prow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 140px 136px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
}
.plist-head {
  height: 42px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.plist-head .col-price { text-align: right; }
.plist-head .col-stock { text-align: center; }
.prow {
  min-height: 62px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  transition: background .14s, box-shadow .14s;
}
.prow:last-child { border-bottom: none; }
.prow:hover { background: rgba(255,255,255,0.06); box-shadow: inset 3px 0 0 var(--border-strong); }
.prow.out { opacity: 0.55; }
.prow.in-cart { background: rgba(255,212,0,0.05); box-shadow: inset 3px 0 0 var(--yellow); }
.prow.in-cart:hover { background: rgba(255,212,0,0.09); }

.r-name { min-width: 0; }
.r-name strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: pretty;
}
.r-name span {
  display: inline-block;
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--muted-2);
}

.col-price { text-align: right; }
.col-stock { display: flex; justify-content: center; }
.col-act { display: flex; justify-content: flex-end; }

.r-price { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.r-price b { font-size: 16.5px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.r-price small { font-size: 10.5px; color: var(--muted-2); margin-top: 3px; }
.r-price.tec b { color: var(--yellow); }

.r-locked {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px dashed var(--border-strong);
  background: transparent;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  transition: all .15s;
}
.r-locked:hover { border-color: var(--yellow); color: var(--yellow); border-style: solid; }

.r-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border-radius: 9px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: all .15s;
}
.r-add:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0B0B0C;
  box-shadow: 0 8px 20px -6px rgba(255,212,0,0.45);
}
.r-add:active { transform: scale(0.97); }

.r-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--yellow);
  border-radius: 9px;
  overflow: hidden;
}
.r-qty button {
  width: 28px; height: 34px;
  background: var(--yellow-dim);
  border: none;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.r-qty button:hover { background: rgba(255,212,0,0.24); }
.r-qty span {
  min-width: 28px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--yellow);
}

/* ── ESTADOS ── */
.state {
  padding: 72px 20px;
  text-align: center;
  color: var(--muted);
}
.state h3 { color: var(--ink); font-size: 20px; margin: 0 0 8px; font-weight: 700; letter-spacing: -0.015em; }
.state p { margin: 0 0 20px; font-size: 15px; }
.skeleton-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; padding-bottom: 32px; }
.sk {
  height: 62px;
  border-radius: 0;
  background: linear-gradient(100deg, var(--surface) 30%, var(--surface-2) 50%, var(--surface) 70%);
  background-size: 220% 100%;
  animation: shimmer 1.4s linear infinite;
  border-bottom: 1px solid var(--border);
}
.skeleton-grid { display: block; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@keyframes shimmer { from { background-position: 180% 0; } to { background-position: -80% 0; } }

/* ── PAGINAÇÃO ── */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 0 clamp(48px, 6vw, 72px);
}
.pg {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}
.pg:hover:not(:disabled):not(.on) { border-color: var(--border-strong); color: var(--ink); }
.pg.on { background: var(--yellow); border-color: var(--yellow); color: #0B0B0C; font-weight: 800; }
.pg:disabled { opacity: 0.3; cursor: not-allowed; }
.pg-dots { color: var(--muted-2); padding: 0 4px; }

/* ── DRAWER DO CARRINHO ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.overlay.on { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100%);
  background: var(--bg-soft);
  border-left: 1px solid var(--border-strong);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.drawer.on { transform: none; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}
.drawer-head h2 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.015em; }
.drawer-head span { font-size: 13px; color: var(--muted); }
.x-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: all .15s;
}
.x-btn:hover { color: var(--ink); border-color: var(--border-strong); }

.drawer-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.c-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.c-item:last-child { border-bottom: none; }
.c-info { flex: 1; min-width: 0; }
.c-info strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
.c-info span { font-size: 11.5px; color: var(--muted-2); font-family: 'JetBrains Mono', monospace; }
.c-side { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.c-price { font-size: 14px; font-weight: 700; color: var(--yellow); white-space: nowrap; }
.c-qty { display: flex; align-items: center; gap: 1px; border: 1px solid var(--border-strong); border-radius: 8px; overflow: hidden; }
.c-qty button { width: 26px; height: 28px; background: transparent; border: none; color: var(--muted); font-size: 14px; font-weight: 700; }
.c-qty button:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.c-qty span { min-width: 26px; text-align: center; font-size: 13px; font-weight: 700; }
.c-del { background: transparent; border: none; color: var(--muted-2); font-size: 11px; padding: 0; text-decoration: underline; }
.c-del:hover { color: #F87171; }

.drawer-foot {
  border-top: 1px solid var(--border);
  padding: 18px 22px calc(18px + env(safe-area-inset-bottom));
  background: var(--bg);
}
.c-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.c-total span { font-size: 14px; color: var(--muted); }
.c-total b { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; }
.c-note { font-size: 11.5px; color: var(--muted-2); margin: 0 0 14px; line-height: 1.4; }
.drawer-foot .btn { width: 100%; justify-content: center; }
.c-clear {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--muted-2);
  font-size: 12.5px;
  padding: 12px 0 0;
}
.c-clear:hover { color: var(--ink-2); text-decoration: underline; }

.c-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.c-empty svg { margin: 0 auto 16px; color: var(--muted-2); }
.c-empty p { margin: 0; font-size: 14px; }

/* ── MODAL DE LOGIN ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal.on { opacity: 1; pointer-events: auto; }
.modal-card {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transform: translateY(10px) scale(0.98);
  transition: transform .24s cubic-bezier(.4,0,.2,1);
  max-height: 92vh;
  overflow-y: auto;
}
.modal.on .modal-card { transform: none; }
.modal-card .x-btn { position: absolute; top: 16px; right: 16px; }
.modal-card h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 8px;
}
.modal-card > p { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.modal-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--yellow-dim);
  color: var(--yellow);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,212,0,0.2);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 11px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,212,0,0.12); }
.field .err { color: #F87171; font-size: 12.5px; margin-top: 6px; display: none; }
.field.bad input { border-color: #F87171; }
.field.bad .err { display: block; }

.perfis { display: grid; gap: 8px; margin-bottom: 20px; }
.perfil {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.perfil:hover { border-color: rgba(255,255,255,0.28); }
.perfil input { position: absolute; opacity: 0; pointer-events: none; }
.perfil .rad {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color .15s;
}
.perfil input:checked ~ .rad { border-color: var(--yellow); }
.perfil input:checked ~ .rad::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--yellow);
}
.perfil:has(input:checked) { border-color: var(--yellow); background: var(--yellow-dim); }
.perfil b { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.perfil small { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.35; }

.modal-card .btn { width: 100%; justify-content: center; }
.modal-foot { font-size: 11.5px; color: var(--muted-2); text-align: center; margin: 14px 0 0; line-height: 1.45; }

.info-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 15px;
  border-radius: 11px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.22);
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
}
.info-box svg { color: var(--whatsapp); flex-shrink: 0; margin-top: 1px; }
.info-box strong { font-weight: 600; color: var(--ink); }

.modal-alt {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin: 18px 0 0;
}
.link-btn {
  background: transparent;
  border: none;
  color: var(--yellow);
  font-weight: 700;
  font-size: 13.5px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: var(--yellow-hover); }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  margin-bottom: 18px;
  transition: color .15s;
}
.back-btn:hover { color: var(--ink); }

.code-input {
  text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 26px !important;
  font-weight: 500;
  letter-spacing: 0.32em;
  padding-left: 0.32em !important;
}

/* ── FAB CARRINHO MOBILE ── */
.cart-fab {
  position: fixed;
  left: 16px;
  right: 86px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: #0B0B0C;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 34px -8px rgba(255,212,0,0.5);
  transform: translateY(120%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.cart-fab.on { transform: none; }
.cart-fab b { font-size: 16px; }

/* FAB do WhatsApp — mesmo da landing; sobe quando a barra do carrinho aparece */
.catalog .fab { bottom: 24px; }
@media (max-width: 620px) {
  .cart-fab { display: flex; }
  .catalog .fab { bottom: calc(16px + env(safe-area-inset-bottom)); width: 54px; height: 54px; right: 16px; }
}

/* ── FOOTER SIMPLES ── */
.cat-ft {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 32px 0;
  color: var(--muted-2);
  font-size: 13px;
}
.cat-ft-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.cat-ft a { color: var(--yellow); }
.cat-ft a:hover { text-decoration: underline; }

/* ── RESPONSIVO ── */
@media (max-width: 860px) {
  .hdr-back span { display: none; }
  .btn-icon span.lbl { display: none; }
  .filters { top: 60px; }
  .plist-head, .prow { grid-template-columns: minmax(0, 1fr) 128px 120px 124px; gap: 12px; padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 620px) {
  .cat-hdr .hdr-inner { height: 60px; }
  .filters { top: 60px; padding: 12px 0; }
  .plist-head { display: none; }
  .prow {
    grid-template-columns: 1fr auto auto;
    grid-template-areas: 'nome nome nome' 'price stock act';
    row-gap: 12px;
    column-gap: 10px;
    padding: 14px;
  }
  .prow .r-name { grid-area: nome; }
  .prow .col-price { grid-area: price; text-align: left; }
  .prow .col-price .r-price { align-items: flex-start; }
  .prow .col-stock { grid-area: stock; justify-content: flex-end; align-self: center; }
  .prow .col-act { grid-area: act; }
  .r-add { padding: 0 12px; }
  .r-add .lbl { display: none; }
  .drawer { width: 100%; }
  .results-bar { padding: 18px 0 12px; }
  main.cat-main { padding-bottom: 88px; }
}
@media (max-width: 380px) {
  .r-name strong { font-size: 13.5px; }
}
