@charset "UTF-8";
/* ============================================================================
 * ECOM-03 C.2 — v1-studio overrides
 * Extraído de standardTemplateRequirements/templates/clientes/PLAYWEBAI/pre-site/versions/v1-studio/home.html (<style> inline).
 * Local tuning sobre pw-tokens + pw-components canonical: hero com Newsreader italic accent,
 * cards de serviço com número + preço, stack cards, pillars com borda cyan, testimonials, CTA strip.
 * ============================================================================ */

/* ---- EYEBROW (mono + accent cyan + dash before) ---- */
.v1-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}
.v1-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent-cyan);
}

/* ---- HERO TITLE com Newsreader italic accent ---- */
.v1-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.6vw, 4.25rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: var(--space-6);
    color: var(--text);
}
.v1-hero-title em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent-cyan);
    letter-spacing: -0.02em;
}
.v1-hero-sub {
    font-size: var(--text-lg);
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: var(--space-8);
}
.v1-hero-sub strong { color: var(--text); font-weight: 500; }

/* ---- STAT STRIP (dashed top border + mono values) ---- */
.v1-stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px dashed var(--border);
}
.v1-stat { display: flex; flex-direction: column; gap: 4px; }
.v1-stat-value {
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}
.v1-stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---- SERVICE CARDS (num + title + desc + price with arrow) ---- */
.v1-svc-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--surface-0);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--dur-base) var(--ease-out);
    text-decoration: none;
    color: inherit;
    position: relative;
    min-height: 220px;
}
.v1-svc-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    text-decoration: none; color: inherit;
}
.v1-svc-card .v1-svc-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.v1-svc-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-xl);
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
}
.v1-svc-card p {
    font-size: var(--text-sm);
    color: var(--text-soft);
    line-height: 1.55;
    flex-grow: 1;
    margin: 0;
}
.v1-svc-price {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-top: var(--space-3);
    border-top: 1px dashed var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-cyan);
}
.v1-svc-price .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.v1-svc-card:hover .v1-svc-price .arrow { transform: translateX(4px); }

/* ---- STACK CARDS (mono-label + heading + body) ---- */
.v1-stack-card {
    padding: var(--space-6);
    background: var(--surface-0);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--dur-base) var(--ease-out);
}
.v1-stack-card:hover { border-color: var(--accent-cyan); }
.v1-stack-card .mono-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-cyan);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    font-weight: 500;
}
.v1-stack-card h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--text);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}
.v1-stack-card p {
    font-size: var(--text-sm);
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

/* ---- PILLARS (cyan left border + gradient) ---- */
.v1-pillar {
    padding: var(--space-6);
    border-left: 2px solid var(--accent-cyan);
    background: linear-gradient(90deg, rgba(0,229,255,0.04), transparent);
}
.v1-pillar-num {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}
.v1-pillar h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--text);
    margin-bottom: var(--space-2);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.v1-pillar p {
    font-size: var(--text-sm);
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

/* ---- TESTIMONIALS (Newsreader italic quote + avatar) ---- */
.v1-testimonial {
    padding: var(--space-6);
    background: var(--surface-0);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.v1-testimonial-quote {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 300;
    font-size: var(--text-lg);
    line-height: 1.55;
    color: var(--text-soft);
    margin-bottom: var(--space-5);
}
.v1-testimonial-person {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px dashed var(--border);
}
.v1-testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    display: grid; place-items: center;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--accent-cyan);
    font-weight: 600;
}
.v1-testimonial-name {
    font-size: var(--text-sm);
    color: var(--text);
    font-weight: 500;
}
.v1-testimonial-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ---- CTA STRIP (radial glow + Newsreader italic) ---- */
.v1-cta-strip {
    padding: var(--space-20) var(--space-8);
    background:
        radial-gradient(ellipse at top right, rgba(0,229,255,0.10), transparent 50%),
        var(--surface-0);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}
.v1-cta-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-5);
    color: var(--text);
}
.v1-cta-title em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--accent-cyan);
}

@media (max-width: 880px) {
    .grid-asymmetric, .grid-asymmetric-reverse { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* LC · vitrine de planos (LC-S-3P7): cards de pricing são largos (preço + chips + features) e ficam
   apertados em 2 colunas no celular — em telas estreitas a grade de planos vira coluna única (escopo .lc-plans;
   não afeta as outras grids do StoreFront, que mantêm 2 colunas no mobile). */
@media (max-width: 640px) {
    .lc-plans .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================================
 * STOREFRONT · COMMERCE (2026-05-29 · redesign UI/UX)
 * Helpers de loja sobre o design system v1-studio. Zero hex hardcoded — só tokens.
 * Auth · Catálogo/PDP · Carrinho · Pedidos.
 * ============================================================================ */

/* ---- AUTH: centraliza o auth-card no fluxo do layout (nav/footer visíveis) ---- */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card .field:last-of-type { margin-bottom: var(--space-5); }

/* ---- PRODUCT GRID (vitrine/catálogo) ---- */
.pw-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-5);
}
.pw-product-card { cursor: pointer; }
.pw-product-card .pw-product-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-xl);
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
}
.pw-product-card .pw-product-sub {
    font-size: var(--text-sm);
    color: var(--text-soft);
    line-height: 1.5;
    flex-grow: 1;
    margin: 0;
}

/* ---- PDP: layout 2 colunas (info + visual) ---- */
/* Avner 2026-07-30 (2 rodadas): imagem não ocupa metade da tela; hero reorganizado —
   TEXTO primeiro (col larga), imagem à DIREITA capada, banda centrada com altura digna (R121/R122) */
.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(380px, 760px); /* mídia MAIOR (Avner: emblema maior na tela) */
    gap: clamp(40px, 5vw, 120px);
    align-items: center;
    min-height: min(58vh, 680px);
}
.pdp-grid > div:first-child { order: 2; } /* markup tem a galeria primeiro; visualmente ela vai pra direita */
/* medida de leitura no hero: parágrafo não varre 1800px em tela larga (R121) */
.pdp-grid > div:last-child p { max-width: 68ch; }
/* ESCALA TIPOGRÁFICA HARMÔNICA (R122 · Avner: "alguns textos muito grandes, outros muito pequenos"):
   eyebrow 12.5 · small 15.5 · corpo 17.5 · sub 20-22 · card 19 · seção ≤48 · produto ≤58 (produto > seção SEMPRE) */
.pdp-grid .v1-eyebrow { font-size: 12.5px !important; letter-spacing: .2em; }
.pdp-grid h1.v1-hero-title { font-size: clamp(2.6rem, 3.4vw, 3.7rem) !important; line-height: 1.05 !important; letter-spacing: -.02em; }
.pdp-grid .v1-hero-sub { font-size: clamp(18px, 1.3vw, 22px) !important; color: var(--text-soft); }
.pdp-grid > div:last-child p { font-size: 17.5px; line-height: 1.6; }
@media (max-width: 880px) { .pdp-grid { grid-template-columns: 1fr; } }
/* v4 (Avner 2026-07-30 noite): artes principais são PNG TRANSPARENTE (só o emblema) —
   o painel perde moldura/fundo e a arte flutua na página, maior. */
.pdp-visual {
    border: 0;
    background: transparent;
    aspect-ratio: 720 / 780; /* arte v4 apertada ao emblema — painel quase quadrado, emblema GRANDE */
    min-height: 0;
    display: grid; place-items: center;
    position: relative;
    overflow: visible;
}
.pdp-visual > img {
    width: 100%; height: 100%;
    object-fit: contain; /* arte transparente inteira — nunca cortar */
}
.pdp-visual .pdp-glyph {
    font-family: var(--font-mono);
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 700;
    color: var(--accent-cyan);
    opacity: 0.18;
    letter-spacing: -0.06em;
    user-select: none;
}
.pdp-price {
    font-family: var(--font-mono);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.pdp-price-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

/* ---- CART: linha de item + resumo ---- */
.cart-line {
    display: flex; align-items: center; gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
}
.cart-line:last-child { border-bottom: none; }
.cart-line-thumb {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    display: grid; place-items: center;
    font-family: var(--font-mono);
    font-size: var(--text-base);
    color: var(--accent-cyan);
    font-weight: 700;
}
.cart-line-thumb { overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-line-main { flex-grow: 1; min-width: 0; }
.cart-line-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-line-title { font-weight: 500; color: var(--text); margin: 0; font-size: var(--text-sm); }
/* ver item: thumb + nome da linha do carrinho linkam pra PDP */
.cart-line-link, .cart-line-title-link { text-decoration: none; color: inherit; }
.cart-line-link { transition: opacity .15s ease; }
.cart-line-link:hover { opacity: .85; }
.cart-line-title-link { display: block; transition: color .15s ease; }
.cart-line-title-link:hover { color: var(--accent); }
.cart-line-link:focus-visible, .cart-line-title-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .cart-line-link, .cart-line-title-link { transition: none; } }
/* ECOM Onda 1 — selo "Esgotado" (vitrine/PDP), sóbrio: indisponível, não erro */
.pw-soldout { display:inline-block; font-family:var(--font-mono); font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); border:1px solid var(--border); border-radius:6px; padding:2px 7px; margin:2px 0 6px; }
.cart-line-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin: 2px 0 0; }
/* mini-cart: edição inline (qty + remover) por linha */
.mini-cart-line-controls { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-2); }
.cart-line-unit { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.cart-line-end { display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-1); flex-shrink: 0; }

/* SHP-S-5B2 — widget de cálculo de frete por CEP no carrinho */
.ship-cep-row { display: flex; gap: var(--space-2); margin-top: var(--space-1); }
.ship-cep-row .field-input { flex: 1; min-width: 0; }
.ship-options { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-3); }
.ship-option {
    display: flex; align-items: center; gap: var(--space-3);
    padding: var(--space-3); border: 1px solid var(--border); border-radius: var(--radius-md);
    cursor: pointer; transition: border-color var(--dur-fast) var(--ease-out);
}
.ship-option:hover { border-color: var(--border-strong); }
.ship-option.is-selected { border-color: var(--accent-cyan); background: rgba(0,229,255,0.06); }
.ship-option input[type="radio"] { accent-color: var(--accent-cyan); }
.ship-option-main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ship-option-name { font-size: var(--text-sm); color: var(--text); font-weight: 500; }
.ship-option-eta { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.ship-option-price { font-family: var(--font-mono); font-weight: 600; color: var(--text); }
.mini-cart-drawer .cart-qty button { padding: 2px 9px; font-size: var(--text-sm); }
.mini-cart-drawer .cart-qty-val { min-width: 22px; text-align: center; }
.cart-qty {
    display: inline-flex; align-items: center;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.cart-qty button {
    width: 30px; height: 30px;
    background: var(--surface-1); border: none;
    color: var(--text-soft); cursor: pointer;
    font-size: var(--text-base); line-height: 1;
    transition: background var(--dur-fast) var(--ease-out);
}
.cart-qty button:hover:not(:disabled) { background: var(--surface-2); color: var(--accent-cyan); }
.cart-qty button:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-qty .cart-qty-val {
    min-width: 34px; text-align: center;
    font-family: var(--font-mono); font-size: var(--text-sm); color: var(--text);
}
.cart-line-total {
    font-family: var(--font-mono); font-size: var(--text-sm);
    color: var(--text); font-weight: 600; min-width: 92px; text-align: right;
}
.cart-line-remove {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: var(--text-base);
    transition: color var(--dur-fast) var(--ease-out);
}
.cart-line-remove:hover:not(:disabled) { color: var(--danger); }

.cart-summary {
    background: var(--surface-0);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: sticky; top: calc(var(--topbar-h) + var(--space-4));
}
.cart-summary-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: var(--space-2) 0; font-size: var(--text-sm); color: var(--text-soft);
}
.cart-summary-total {
    /* flex explícito: usado sozinho (sem .cart-summary-row) o rótulo e o valor rendiam
       inline grudados — "TotalR$ 0,00" (SL-S-5N9/7R3/9M2) */
    display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3);
    margin-top: var(--space-3); padding-top: var(--space-3);
    border-top: 1px dashed var(--border);
    font-size: var(--text-base); color: var(--text); font-weight: 600;
}
.cart-summary-total .v {
    font-family: var(--font-mono); font-size: var(--text-2xl); color: var(--accent-cyan);
}

/* ---- FSP-T-4K2 · Barra de progresso de frete grátis ---- */
.free-shipping-bar { display: block; }
.free-shipping-text {
    margin: 0 0 var(--space-2); font-size: var(--text-sm); color: var(--text-soft);
}
.free-shipping-bar.is-reached .free-shipping-text { color: var(--success); }
.free-shipping-track {
    height: 8px; border-radius: var(--radius-full);
    background: var(--surface-2); overflow: hidden;
    border: 1px solid var(--border);
}
.free-shipping-fill {
    height: 100%; border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--accent-cyan-dim), var(--accent-cyan));
    transition: width var(--dur-slow, .4s) var(--ease-out);
}
.free-shipping-bar.is-reached .free-shipping-fill {
    background: linear-gradient(90deg, var(--success), var(--accent-cyan));
}

/* ---- CS-T-COUPON · campo de cupom no resumo do carrinho (port do protótipo STX-S-T03) ---- */
.coupon-section { padding-top: var(--space-4); border-top: 1px solid var(--border); }
.coupon-input-row { display: flex; gap: var(--space-2); }
.coupon-input {
    flex: 1; padding: var(--space-2) var(--space-3);
    background: var(--surface-1); border: 1px solid var(--border-strong);
    border-radius: var(--radius-md); color: var(--text);
    font-family: var(--font-mono); font-size: var(--text-sm);
    transition: border-color var(--dur-fast) var(--ease-out);
}
.coupon-input:focus { outline: none; border-color: var(--accent-cyan); box-shadow: 0 0 0 3px var(--accent-cyan-glow); }
.coupon-input::placeholder { color: var(--text-dim); }
.btn-coupon-apply {
    padding: var(--space-2) var(--space-4);
    background: var(--surface-2); border: 1px solid var(--border-strong);
    border-radius: var(--radius-md); color: var(--text-soft);
    font-size: var(--text-sm); font-weight: 500; white-space: nowrap; cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
}
.btn-coupon-apply:hover:not(:disabled) { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.btn-coupon-apply:disabled { opacity: 0.5; cursor: not-allowed; }
.coupon-applied {
    background: rgba(62,207,142,0.07); border: 1px solid rgba(62,207,142,0.3);
    border-radius: var(--radius-md); padding: var(--space-3) var(--space-4);
    display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm);
}
.coupon-applied-check { color: var(--success); font-size: 14px; }
.coupon-applied-code { color: var(--text); font-family: var(--font-mono); font-weight: 700; font-size: var(--text-xs); letter-spacing: 0.08em; }
.coupon-remove {
    margin-left: auto; background: none; border: none; cursor: pointer;
    color: var(--text-dim); font-size: 16px; padding: 2px;
    transition: color var(--dur-fast) var(--ease-out);
}
.coupon-remove:hover:not(:disabled) { color: var(--danger); }
.coupon-error {
    margin-top: var(--space-2); padding: var(--space-2) var(--space-3);
    background: rgba(243,18,96,0.06); border: 1px solid rgba(243,18,96,0.3);
    border-radius: var(--radius-sm); font-size: var(--text-xs); color: var(--danger);
}

/* ---- FSP-T-4K2 · Mini-cart drawer lateral ---- */
.mini-cart-overlay {
    position: fixed; inset: 0; z-index: 80;
    background: rgba(2, 6, 12, 0.62);
    backdrop-filter: blur(2px);
    animation: miniCartFade var(--dur-fast, .15s) var(--ease-out);
}
.mini-cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 81;
    width: min(420px, 92vw);
    display: flex; flex-direction: column;
    background: var(--surface-0);
    border-left: 1px solid var(--border-strong, var(--border));
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
    animation: miniCartSlide var(--dur-mid, .28s) var(--ease-out);
    outline: none;
}
.mini-cart-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--border);
}
.mini-cart-close {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: var(--text-lg);
    transition: color var(--dur-fast) var(--ease-out);
}
.mini-cart-close:hover { color: var(--accent-cyan); }
.mini-cart-body {
    flex: 1 1 auto; overflow-y: auto;
    padding: var(--space-3) var(--space-6);
}
.mini-cart-more {
    display: block; margin-top: var(--space-3);
    font-family: var(--font-mono); font-size: var(--text-xs);
    color: var(--accent-cyan); text-decoration: none;
}
.mini-cart-more:hover { text-decoration: underline; }
.mini-cart-foot {
    padding: var(--space-5) var(--space-6);
    border-top: 1px solid var(--border);
    background: var(--surface-1);
}
.mini-cart-note { font-size: var(--text-xs); color: var(--text-muted); text-align: center; margin: var(--space-2) 0 0; }
.mini-cart-trust {
    display: flex; align-items: center; justify-content: center; gap: var(--space-2);
    margin-top: var(--space-3); font-size: var(--text-xs); color: var(--text-muted);
}
.mini-cart-trust svg { width: 13px; height: 13px; color: var(--success, var(--accent-cyan)); flex-shrink: 0; }

/* Upsell/cross-sell no mini-cart */
.mini-cart-upsell { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px dashed var(--border); }
.mini-cart-upsell-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 var(--space-3); }
.upsell-item { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-2) 0; }
.upsell-item-link { display: flex; align-items: center; gap: var(--space-3); flex: 1; min-width: 0; text-decoration: none; color: inherit; border-radius: var(--radius-sm); transition: opacity .15s ease; }
.upsell-item-link:hover { opacity: .85; }
.upsell-item-link:hover .cart-line-title { color: var(--accent); }
.upsell-item-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.upsell-item .cart-line-thumb { width: 40px; height: 40px; font-size: var(--text-sm); flex-shrink: 0; }
.upsell-item .cart-line-main { flex: 1; min-width: 0; }
.upsell-item .cart-line-title { font-size: var(--text-sm); transition: color .15s ease; }
.upsell-item .btn { flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .upsell-item-link, .upsell-item .cart-line-title { transition: none; } }

@keyframes miniCartSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes miniCartFade  { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .free-shipping-fill { transition: none; }
    .mini-cart-drawer, .mini-cart-overlay { animation: none; }
}

/* ---- ORDER summary box (success / detalhe) ---- */
.order-meta-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--space-2) 0; font-size: var(--text-sm); color: var(--text-soft);
    border-bottom: 1px solid var(--border);
}
.order-meta-row:last-child { border-bottom: none; }
.order-meta-row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.order-meta-row .v { color: var(--text); }

/* ============ PORTAL B2B (SL) · grids das telas de cotação/pedido ============ */
/* Antes o layout era style= inline nas .razor (grid fixo 2 colunas) — inline ganha de media
   query e o mobile 390px NUNCA colapsava (SL-S-5N9 texto letra-a-letra · SL-S-7R3 doc 736px ·
   SL-S-9M2 doc 604px · SL-S-3K7 doc 548px). Regra central + colapso ≤880px (breakpoint padrão
   da loja) + min-width:0 nos filhos (lição SL-T-2W6: grid-item em min-width:auto não encolhe
   abaixo do min-content e o body rola lateral — tabela larga rola DENTRO do .table-wrap). */
.rq-two, .quote-grid-wrap {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-6);
}
.b2b-grid-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-6);
}
.rq-two > *, .quote-grid-wrap > *, .b2b-grid-wrap > *, .grid-asymmetric > * { min-width: 0; }
@media (max-width: 880px) {
    .rq-two, .quote-grid-wrap, .b2b-grid-wrap { grid-template-columns: 1fr; }
    /* empilhado: o resumo deixa de ser coluna sticky */
    .rq-two .cart-summary, .quote-grid-wrap .cart-summary, .grid-asymmetric .cart-summary { position: static; }
}

/* ============ STF-S-P7K · busca + filtros + autocomplete (Vitrine) ============ */
.stf-toolbar {
    display: flex; flex-wrap: wrap; gap: var(--space-3);
    align-items: flex-end; margin-bottom: var(--space-5);
}
.stf-search-wrap { position: relative; flex: 1 1 260px; min-width: 200px; }
.stf-search-input { width: 100%; }
/* altura uniforme em TODA a toolbar (input e select nativos renderizam alturas diferentes
   por padrão — 40px vs 37px); height fixa + border-box iguala a barra inteira. */
.stf-toolbar .field-input, .stf-toolbar .field-select {
  height: 40px; box-sizing: border-box;
  padding-top: var(--space-2); padding-bottom: var(--space-2);
}
/* "Limpar filtros" inline alinha à mesma altura dos campos (o .btn padrão fica 47px) */
.stf-filters .btn {
  height: 40px; box-sizing: border-box;
  padding-top: 0; padding-bottom: 0;
  display: inline-flex; align-items: center; justify-content: center;
}

/* FSP-T-4K2 (extensão) — ícone de carrinho no header: abre o mini-cart drawer em qualquer tela.
   Mesma caixa do .theme-toggle (36px) p/ alinhar a nav-actions; badge de contagem no canto. */
.pw-cart-btn {
  position: relative;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-soft);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.pw-cart-btn:hover { color: var(--accent-cyan); border-color: var(--accent-cyan-dim); }
.pw-cart-btn svg { width: 16px; height: 16px; }
.pw-cart-btn .pw-cart-count { position: absolute; top: -7px; right: -7px; margin-left: 0 !important; }
.stf-autocomplete {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
    background: var(--surface-1); border: 1px solid var(--border-strong);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg, 0 12px 32px rgba(0,0,0,0.4));
    overflow: hidden; max-height: 320px; overflow-y: auto;
}
.stf-autocomplete-item {
    display: block; width: 100%; text-align: left; padding: var(--space-3) var(--space-4);
    background: none; border: none; color: var(--text-soft); font-family: var(--font-sans);
    font-size: var(--text-sm); cursor: pointer; border-bottom: 1px solid var(--border);
}
.stf-autocomplete-item:last-child { border-bottom: none; }
.stf-autocomplete-item:hover, .stf-autocomplete-item:focus { background: var(--surface-2, var(--surface-0)); color: var(--accent-cyan); outline: none; }

.stf-filters { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: flex-end; }
.stf-filter-field { display: flex; flex-direction: column; gap: var(--space-1); min-width: 120px; }
.stf-filter-field .field-label { margin-bottom: 0; }
.stf-filter-field .field-input, .stf-filter-field .field-select { padding: var(--space-2) var(--space-3); }
.stf-price-pair { display: flex; gap: var(--space-2); align-items: center; }
.stf-price-pair .field-input { width: 92px; }
.stf-price-pair .sep { color: var(--text-dim); }

.stf-filters-toggle { display: none; }

@media (max-width: 640px) {
    .stf-filters-toggle {
        display: inline-flex; align-items: center; gap: var(--space-2);
        width: 100%; justify-content: center;
    }
    .stf-filters { display: none; flex-direction: column; align-items: stretch; width: 100%; }
    .stf-filters.is-open { display: flex; }
    .stf-filter-field, .stf-price-pair .field-input { width: 100%; min-width: 0; }
    .stf-price-pair .field-input { flex: 1; }
    /* painel empilhado: botão volta a ser alvo de toque confortável (≥44px) */
    .stf-filters .btn { height: auto; min-height: 44px; }
}

/* ===== PDP rich body (EItemCopy.HtmlBody) — v2 estilo APPLE (Avner 2026-07-29):
   bandas FULL-BLEED alternadas (troca de cor = quebra de seção, sem bordas), statements
   gigantes com tracking negativo, tiles sem borda, ritmo vertical ~80px, corpo 18px.
   Tela PREENCHE — proibido max-width/margin:auto no wrapper (mesma filosofia da R120). */
.pdp-richbody { width: 100vw; margin: var(--space-10, 4rem) 0 0 calc(50% - 50vw); display: block; }
/* 100vw inclui a largura da scrollbar vertical → sobra ~15px de overflow horizontal; clipa na raiz */
html, body { overflow-x: clip; }
/* escala harmônica R122: seção NUNCA maior que o título do produto (era 54px vs 45px — hierarquia invertida) */
.pdp-richbody h3 { font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-cyan); font-family: var(--font-mono); font-weight: 400; margin: 0 0 var(--space-4); }
.pdp-richbody h2 { font-size: clamp(1.5rem, 1.9vw, 2.3rem); line-height: 1.14; letter-spacing: -.015em; font-weight: 650; color: var(--text); margin: 0 0 var(--space-4); }
.pdp-richbody p { color: var(--text-soft); font-size: 17.5px; line-height: 1.6; margin: 0 0 var(--space-3); }
.pdp-richbody a { color: var(--accent-cyan); text-decoration: underline; text-underline-offset: 3px; }
.pdp-richbody li strong, .pdp-richbody p strong { color: var(--text); }
/* texto da banda full-bleed alinha no MESMO eixo do .container (shell único R121) */
.pdp-richbody { --rb-pad: max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad))); }
.rb-section { border: 0; border-radius: 0; padding: clamp(48px, 7vh, 84px) var(--rb-pad); }
/* Textura + conexão entre seções (ordem Avner 2026-07-30 noite): grade sutil da paleta em TODAS as
   bandas (mantendo a alternância escura/clara) e uma espinha ciano com nó de losango costurando cada
   emenda de seção — as seções ficam visualmente CONECTADAS. */
:root { --rb-grid-line: rgba(148, 163, 184, 0.05); }
:root[data-theme="light"] { --rb-grid-line: rgba(15, 19, 32, 0.05); }
.pdp-richbody .rb-section {
    position: relative;
    background-image:
        linear-gradient(var(--rb-grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--rb-grid-line) 1px, transparent 1px);
    background-size: 44px 44px;
}
.rb-section:nth-of-type(even) { background-color: var(--surface-0); }
.pdp-richbody .rb-section + .rb-section::before {
    content: ''; position: absolute; left: 50%; top: -46px; width: 1px; height: 92px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan) 32%, var(--accent-cyan) 68%, transparent);
    opacity: .55; pointer-events: none;
}
.pdp-richbody .rb-section + .rb-section::after {
    content: ''; position: absolute; left: 50%; top: 0; width: 8px; height: 8px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--bg); border: 1.5px solid var(--accent-cyan); opacity: .85; pointer-events: none;
}
.rb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: var(--space-6); }
.rb-card { background: var(--surface-1); border: 0; border-radius: 20px; padding: 30px 28px; }
.pdp-richbody .rb-card h4 { margin: 0 0 10px; font-size: 19px; font-weight: 600; color: var(--text); }
.pdp-richbody .rb-card p { font-size: 15.5px; line-height: 1.5; margin: 0; max-width: none; }
.rb-steps { display: grid; gap: var(--space-5); counter-reset: rbstep; margin: var(--space-6) 0 0; padding: 0; list-style: none; }
.rb-steps li { display: flex; gap: var(--space-4); align-items: baseline; color: var(--text-soft); font-size: 19px; line-height: 1.5; max-width: 78ch; }
.rb-steps li::before { counter-increment: rbstep; content: "0" counter(rbstep); font-family: var(--font-mono); color: var(--accent-cyan); font-size: 15px; }
.rb-stakes { border: 0; padding: 0; margin-top: var(--space-5); color: var(--text-muted); font-style: italic; font-size: 19px; }
.rb-cta { text-align: center; padding: clamp(56px, 9vh, 100px) var(--rb-pad); border: 0; border-radius: 0; background: var(--surface-0); }
.pdp-richbody .rb-cta h2 { max-width: none; }
.pdp-richbody .rb-cta p { margin-inline: auto; }

/* ===== Richbody v3 — sistema de componentes visuais (R121 · Avner 2026-07-30):
   feedback "bandas só de texto à esquerda, tela mal aproveitada, poucos recursos de UI" →
   toda seção ganha recurso visual pareado e o layout VARIA banda a banda.
   Tudo theme-aware (vars do template) e responsivo 4K→390. ===== */

/* Split: texto + visual lado a lado · .rb-flip inverte · colapsa ≤980px
   R122: align START — center deixava o visual alto começar ~200px ACIMA do texto vizinho (desalinhado) */
.rb-split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 4vw, 80px); align-items: start; }
.rb-split > * { min-width: 0; }
.rb-split.rb-flip > :first-child { order: 2; }
@media (max-width: 980px) { .rb-split { grid-template-columns: 1fr; } .rb-split.rb-flip > :first-child { order: 0; } }
.rb-visual svg { width: 100%; height: auto; display: block; }
/* prints REAIS da página de apresentação PLAY C ENTER (ordem Avner 2026-07-30 noite) */
/* Print do sistema em 3 línguas × 2 temas (Avner 2026-07-31). A LÍNGUA vem do C# nas variáveis
   --shot-l/--shot-d; o TEMA troca aqui embaixo. É background-image de propósito: com duas tags
   <img> o navegador baixaria as DUAS versões de cada print. Proporção fixa 16:9 = a viewport
   1920×1080 da captura, então a caixa não pula enquanto a imagem carrega. */
.pcpage-shot { width: 100%; aspect-ratio: 16 / 9; display: block; border: 1px solid var(--border);
  border-radius: 14px; margin-top: var(--space-5); box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  background-image: var(--shot-l); background-size: cover; background-position: top center;
  background-repeat: no-repeat; }
:root[data-theme="dark"] .pcpage-shot { background-image: var(--shot-d); }
.rb-visual .pcpage-shot { margin-top: 0; }

/* Tiles de números (só dados REAIS do doc — nunca estatística inventada) */
.rb-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-top: var(--space-6); }
.rb-stat { background: var(--surface-1); border-radius: 16px; padding: 22px 22px 18px; border-left: 2px solid var(--accent-cyan); }
.rb-stat b { display: block; font-family: var(--font-mono); font-weight: 600; font-size: clamp(26px, 2.2vw, 40px); line-height: 1; color: var(--text); letter-spacing: -.02em; }
.rb-stat span { display: block; margin-top: 8px; font-size: 13px; line-height: 1.35; color: var(--text-muted); }

/* Tabela de especificação / antes-vs-depois — SEMPRE dentro de .rb-scroll:
   3 colunas em 390px estouram o min-content e o overflow-x:clip da raiz corta a banda em silêncio */
.rb-scroll { overflow-x: auto; }
/* CORREÇÃO 2026-07-31 — o "SEMPRE dentro de .rb-scroll" acima é uma premissa que o DADO não honra:
   existe copy autorada no banco com <table class="rb-table"> solta (modulo-dashboard), e ela
   estourava 301px medidos em 390px. Tabela SEM wrapper agora rola sozinha; com wrapper, quem
   rola é o wrapper (regra mais específica abaixo/acima vence e devolve o display:table). */
.rb-scroll .rb-table { min-width: 640px; display: table; overflow-x: visible; }
.rb-table { display: block; width: 100%; max-width: 100%; overflow-x: auto; border-collapse: collapse; margin-top: var(--space-6); font-size: 15.5px; }
.rb-table th { text-align: left; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); font-weight: 400; padding: 0 16px 12px; }
.rb-table td { padding: 14px 16px; color: var(--text-soft); border-top: 1px solid var(--border); line-height: 1.45; vertical-align: top; }
.rb-table td:first-child { color: var(--text); font-weight: 600; }
.rb-table .ok { color: var(--accent-cyan); font-weight: 600; }
@media (max-width: 700px) { .rb-table td, .rb-table th { padding-inline: 8px; } }

/* Timeline horizontal de etapas (fluxo com seta); empilha no mobile */
.rb-timeline { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 26px; margin-top: var(--space-7); counter-reset: rbtl; padding: 0; list-style: none; }
.rb-tl { position: relative; counter-increment: rbtl; background: var(--surface-1); border-radius: 16px; padding: 22px 24px; }
.rb-tl::before { content: "0" counter(rbtl); font-family: var(--font-mono); font-size: 13px; color: var(--accent-cyan); display: block; margin-bottom: 10px; }
.rb-tl:not(:last-child)::after { content: "→"; position: absolute; right: -22px; top: 50%; transform: translateY(-50%); color: var(--text-dim); font-size: 18px; }
.rb-tl h4 { margin: 0 0 8px; font-size: 18px; font-weight: 600; color: var(--text); }
.pdp-richbody .rb-tl p { font-size: 15px; margin: 0; max-width: none; }
@media (max-width: 900px) { .rb-timeline { grid-auto-flow: row; } .rb-tl:not(:last-child)::after { content: "↓"; right: auto; left: 24px; top: auto; bottom: -24px; transform: none; } }

/* Callout — verdade/consequência em destaque */
.rb-callout { border-left: 3px solid var(--accent-cyan); background: var(--surface-1); border-radius: 0 16px 16px 0; padding: 20px 26px; margin-top: var(--space-6); font-size: 17px; line-height: 1.55; color: var(--text-soft); max-width: 78ch; }

/* Chips de recursos (varredura rápida do que vem junto) */
.rb-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-6); padding: 0; list-style: none; }
.rb-chips li { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; color: var(--text-soft); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; }

/* Banda centrada — variação de ritmo */
.rb-center { text-align: center; }
.rb-center h2, .rb-center p { margin-inline: auto; }

/* ===== Brand do header ajustado ao menu (Avner 2026-07-29): símbolo 28px ficava perdido
   na topbar de 56px, a tag "Interactive · Studio" vinha sem estilo e o play do símbolo
   perdia o terracota da marca no tema escuro. Lockup alinhado à esquerda, tag colada. ===== */
.pw-brand { font-size: 27px; gap: 12px; align-items: center; }
/* o desenho do SVG ocupa só ~46% do viewBox (nós em 15-35 de 0-50) — o scale ótico iguala o
   brasão à altura das DUAS linhas de texto (~35px). Cores = paleta padrão do template. */
.pw-brand-symbol { width: 44px; height: 44px; flex-shrink: 0; }
.pw-brand-symbol svg { transform: scale(1.7); transform-origin: center; overflow: visible; }
/* Play do brasão do MENU + wordmark (ordens Avner 2026-07-30 noite): play SEMPRE #0095A8 nos 2 temas
   (o token compartilhado trazia #333 no escuro e #C15F3C clay no claro — errados na loja), e o texto
   "Playwebai" na MESMA cor #0095A8. */
.pw-nav { --pw-play-fill: #0095A8; }
.pw-brand > span:last-child > span:first-child { color: #0095A8; }
.pw-brand > span:last-child { gap: 4px; }
/* lockup: as DUAS linhas fecham na mesma largura — wordmark 9 glifos ls .20em ≈ tag 20 glifos ls .165em */
.pw-brand > span:last-child > span:first-child { line-height: 1; letter-spacing: .20em; }
.pc-brand-tag {
  font-family: var(--font-mono); font-weight: 400; font-size: 12.3px; line-height: 1;
  letter-spacing: .165em; text-transform: uppercase; color: var(--text-muted);
}

/* ===== Telas da loja PREENCHEM (Avner 2026-07-29 · mesma filosofia da R120 do sistema):
   o .container de 1440px deixava faixas mortas gigantes em telas largas. Fluido até 96vw.
   2026-07-30 (R121): SHELL ÚNICO — nav, conteúdo e bandas richbody dividem o MESMO eixo
   esquerdo (--shell-pad); antes eram 3 bordas diferentes (96/72/128px) e a tela parecia torta. ===== */
:root {
    --shell-max: min(2400px, 98vw);
    --shell-pad: clamp(20px, 2.2vw, 52px);
}
.container { max-width: var(--shell-max); padding-inline: var(--shell-pad); }
.container-narrow { max-width: min(1720px, 96vw); padding-inline: var(--shell-pad); }
/* menu superior acompanha a largura fluida + distribuição: marca | navegação centrada | ações */
.pw-nav-inner { max-width: var(--shell-max); padding-inline: var(--shell-pad); gap: clamp(20px, 2vw, 48px); }
/* espaçamento fluido: com 8 itens, o gap fixo de 48px consumia 336px sozinho e exigia 1563px de
   largura só pro menu caber — o que jogava todo laptop de 1440 pro hambúrguer sem necessidade. */
.pw-nav-menu { margin-inline: auto; gap: clamp(14px, 1.5vw, 48px); }
/* capa do card de produto: 16:9 SEM corte (o height:160px inline cropava as artes).
   Vale pro catálogo E pra vitrine da home — a arte v4 é 720x780 (quase quadrada), então
   `cover` numa caixa de 272x160 deixava só uma tira do meio do brasão. */
[data-teo="catalog-card-cover"],
[data-teo="home-product-card"] > img { height: auto !important; aspect-ratio: 16 / 9; object-fit: contain !important; }

/* ═════════════ MENU DA LOJA — colapso responsivo (R121 · 2026-07-30) ═════════════
   Defeito corrigido: com os 4 planos ao lado de Catálogo o menu tem 8 itens e nunca teve versão
   estreita. Resultado: quebrava em duas linhas em 1440px, cortava "Cadastrar" em 1280 e, no celular,
   deixava 13 dos 15 itens fora da tela — sem hambúrguer, quem entrava pelo telefone não alcançava
   catálogo, carrinho nem login. Abaixo do breakpoint o menu inteiro passa a viver num painel, e o
   carrinho fica fixo na barra, que é onde a pessoa procura. Os itens do menu seguem os mesmos. */

.pw-nav-burger, .pw-nav-cart-mobile { display: none; }
/* rótulo de menu não quebra: "PLAY C ENTER" e "Play Start" viravam duas linhas dentro da barra de
   56px. Sem quebra, o menu ou cabe inteiro ou entrega a vez pro hambúrguer — nunca fica espremido. */
.pw-nav-menu a, .pw-nav-menu button { white-space: nowrap; }

@media (max-width: 1439px) {
  /* aberto vira painel sobreposto: fundo OPACO (o vidro fosco da barra não basta quando há
     conteúdo da página por baixo) e rolagem interna quando o painel passa da altura da tela */
  .pw-nav.menu-open {
    height: auto; max-height: 100dvh; overflow-y: auto;
    background: var(--surface-0); backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .pw-nav-inner { flex-wrap: wrap; gap: var(--space-4); }
  /* a barra (marca · carrinho · hambúrguer) fica na PRIMEIRA linha; menu e ações quebram abaixo.
     Sem os `order`, os botões da barra caem pro fim do painel — carrinho e fechar sumiam do topo. */
  .pw-brand { order: 0; margin-right: auto; }
  .pw-nav-cart-mobile { order: 1; }
  .pw-nav-burger { order: 2; }
  .pw-nav-menu { order: 3; }
  .pw-nav-actions { order: 4; }
  .pw-nav-burger, .pw-nav-cart-mobile { display: inline-flex; align-items: center; justify-content: center; }
  .pw-nav-burger {
    width: 40px; height: 40px; flex: none; cursor: pointer;
    background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-soft);
  }
  .pw-nav-burger svg { width: 20px; height: 20px; }
  .pw-nav-menu, .pw-nav-actions { display: none; }
  .pw-nav.menu-open .pw-nav-menu,
  .pw-nav.menu-open .pw-nav-actions {
    display: flex; flex-direction: column; align-items: flex-start;
    flex-basis: 100%; gap: var(--space-3); margin: 0; padding-block: var(--space-4);
  }
  .pw-nav.menu-open .pw-nav-menu { border-top: 1px solid var(--border); }
  .pw-nav.menu-open .pw-nav-actions { padding-bottom: var(--space-6); }
  .pw-nav-menu li { width: 100%; }
  /* o carrinho do painel some: o da barra já cumpre o papel */
  .pw-nav-actions > .pw-cart-btn { display: none; }
}

/* telas estreitas: a marca em tamanho cheio + carrinho + hambúrguer estouram os ~350px úteis
   e o hambúrguer caía pra uma segunda linha. A marca cede — os dois botões são o que se usa. */
@media (max-width: 560px) {
  .pw-brand { font-size: 20px; }
  .pw-brand > span:last-child > span:first-child { letter-spacing: .16em; }
  .pc-brand-tag { font-size: 9.5px; letter-spacing: .14em; }
  .pw-brand-symbol svg { width: 30px; height: 30px; }
  .pw-nav-inner { gap: var(--space-3); }
}

