:root{
  /* Paleta profissional: grafite + azul refinado, neutros frios */
  --ink:#0f172a;          /* texto principal */
  --ink-2:#334155;        /* texto secundário */
  --muted:#64748b;        /* texto auxiliar */
  --line:#e2e8f0;         /* bordas */
  --line-2:#f1f5f9;       /* divisórias suaves */
  --bg:#ffffff;
  --bg-2:#f8fafc;         /* fundo de seções */
  --accent:#1d4ed8;       /* azul confiança */
  --accent-2:#1e40af;
  --accent-soft:#eff4ff;
  --ok:#0f7a4d;           /* verde discreto, só para segurança */
  --ok-soft:#ecfdf3;
  --radius:10px;
  --radius-sm:8px;
  --shadow:0 1px 2px rgba(15,23,42,.04), 0 6px 20px rgba(15,23,42,.06);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  color:var(--ink);background:var(--bg);line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
svg{display:block}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}
.icon{width:20px;height:20px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}

/* Botões */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:1px solid transparent;border-radius:var(--radius-sm);font-weight:600;cursor:pointer;
  padding:11px 20px;font-size:14px;letter-spacing:.01em;transition:.15s;font-family:inherit;
}
.btn--primary{background:var(--accent);color:#fff}
.btn--primary:hover{background:var(--accent-2)}
.btn--primary:disabled{background:#cbd5e1;cursor:not-allowed}
.btn--ghost{background:#fff;border-color:var(--line);color:var(--ink)}
.btn--ghost:hover{border-color:var(--accent);color:var(--accent)}
.btn--lg{padding:14px 28px;font-size:15px}
.btn--block{width:100%}

/* Topbar */
.topbar{background:var(--ink);color:#cbd5e1;font-size:12.5px;letter-spacing:.02em}
.topbar__inner{display:flex;align-items:center;justify-content:center;gap:28px;height:40px;flex-wrap:wrap}
.topbar span{display:inline-flex;align-items:center;gap:7px}
.topbar .icon{width:15px;height:15px;stroke-width:1.7}

/* Header */
.header{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:40}
.header__inner{display:flex;align-items:center;gap:32px;height:78px}
.logo{display:flex;align-items:center;gap:10px;font-size:19px;font-weight:700;letter-spacing:-.01em;color:var(--ink)}
.logo__mark{display:grid;place-items:center;width:34px;height:34px;border-radius:8px;background:var(--ink);color:#fff}
.logo__mark .icon{width:19px;height:19px;stroke:#fff;stroke-width:1.8}
.logo__text strong{font-weight:700}
.logo__text{font-weight:500;color:var(--muted)}
.logo__text strong{color:var(--ink)}
.search{flex:1;display:flex;align-items:center;max-width:520px;border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden;transition:.15s;background:var(--bg-2)}
.search:focus-within{border-color:var(--accent);background:#fff;box-shadow:0 0 0 3px var(--accent-soft)}
.search__ico{padding:0 12px;color:var(--muted);display:flex}
.search input{flex:1;border:none;outline:none;padding:11px 8px 11px 0;font-size:14px;font-family:inherit;background:transparent}
.search button{border:none;background:transparent;color:var(--muted);padding:0 14px;cursor:pointer;display:none}
.header__actions{display:flex;align-items:center;gap:4px}
.header__link,.cart-btn{
  display:flex;align-items:center;gap:8px;background:none;border:none;cursor:pointer;
  padding:9px 12px;border-radius:var(--radius-sm);color:var(--ink-2);font-family:inherit;position:relative;transition:.15s;font-size:13px;font-weight:500;
}
.header__link:hover,.cart-btn:hover{background:var(--bg-2);color:var(--accent)}
.cart-count{
  background:var(--accent);color:#fff;font-size:11px;font-weight:700;min-width:19px;height:19px;
  border-radius:10px;display:grid;place-items:center;padding:0 5px;
}

/* Nav categorias */
.nav{background:#fff;border-bottom:1px solid var(--line)}
.nav__inner{display:flex;gap:4px;overflow-x:auto;padding:0;scrollbar-width:none}
.nav__inner::-webkit-scrollbar{display:none}
.nav__chip{
  white-space:nowrap;padding:14px 16px;font-size:13.5px;font-weight:500;color:var(--ink-2);
  cursor:pointer;border:none;border-bottom:2px solid transparent;transition:.15s;background:none;font-family:inherit;
}
.nav__chip:hover{color:var(--accent)}
.nav__chip.is-active{color:var(--accent);border-bottom-color:var(--accent);font-weight:600}

/* Hero */
.hero{background:var(--bg-2);border-bottom:1px solid var(--line)}
.hero__inner{display:grid;grid-template-columns:1.1fr .9fr;align-items:center;gap:40px;padding:64px 24px}
.hero__badge{
  display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid var(--line);
  padding:6px 13px;border-radius:999px;font-size:12.5px;font-weight:600;color:var(--ink-2);margin-bottom:22px;
}
.hero__badge .icon{width:14px;height:14px;color:var(--ok)}
.hero h1{font-size:46px;line-height:1.08;font-weight:700;letter-spacing:-.025em;margin-bottom:18px}
.hero h1 span{color:var(--accent)}
.hero p{font-size:17px;color:var(--muted);margin-bottom:28px;max-width:460px}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap}
.hero__visual{position:relative;height:380px;border-radius:16px;background:#0f172a;overflow:hidden;display:grid;place-items:center;box-shadow:var(--shadow)}
.hero__visual img{width:100%;height:100%;object-fit:cover}
.hero__card{position:relative;background:rgba(255,255,255,.06);backdrop-filter:blur(4px);border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:26px 30px;color:#fff;text-align:center}
.hero__card .icon{width:42px;height:42px;stroke:#7dd3a0;stroke-width:1.6;margin:0 auto 14px}
.hero__card strong{display:block;font-size:18px;font-weight:600;margin-bottom:4px}
.hero__card small{color:#94a3b8;font-size:13px}

/* Trust badges */
.trust{background:#fff;border-bottom:1px solid var(--line)}
.trust__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;padding:0}
.trust__item{display:flex;align-items:center;gap:14px;padding:26px 24px;border-right:1px solid var(--line-2)}
.trust__item:last-child{border-right:none}
.trust__icon{color:var(--accent);display:flex;flex-shrink:0}
.trust__icon .icon{width:26px;height:26px;stroke-width:1.5}
.trust__item strong{display:block;font-size:14px;font-weight:600}
.trust__item small{color:var(--muted);font-size:12.5px}

/* Sections */
.section{padding:56px 0}
.section--alt{background:var(--bg-2)}
.section__header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:28px;gap:16px}
.section__eyebrow{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);margin-bottom:8px}
.section__title{font-size:28px;font-weight:700;letter-spacing:-.02em}
.section__hint{color:var(--muted);font-size:13.5px}

/* Categorias */
.categories{display:grid;grid-template-columns:repeat(7,1fr);gap:14px}
.category-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px 14px;text-align:center;
  cursor:pointer;transition:.15s;display:flex;flex-direction:column;align-items:center;gap:12px;
}
.category-card:hover{border-color:var(--accent);box-shadow:var(--shadow)}
.category-card .ico{color:var(--ink);display:flex}
.category-card .ico .icon{width:26px;height:26px;stroke-width:1.5}
.category-card:hover .ico{color:var(--accent)}
.category-card span{font-size:13px;font-weight:500;color:var(--ink-2)}

/* Produtos */
.products{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.product{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;transition:.15s;
}
.product:hover{box-shadow:var(--shadow);border-color:#cbd5e1}
.product__media{position:relative;aspect-ratio:1/1;background:var(--bg-2);display:grid;place-items:center;border-bottom:1px solid var(--line-2);overflow:hidden}
.product__media img{width:100%;height:100%;object-fit:cover}
.product__art{width:100%;height:100%;display:grid;place-items:center;background:
  radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--c) 22%, #fff) 0%, color-mix(in srgb, var(--c) 8%, #fff) 60%, #fff 100%)}
.product__art .icon{width:62px;height:62px;stroke:var(--c);stroke-width:1.4}
.product__tag{position:absolute;top:12px;left:12px;background:var(--ink);color:#fff;font-size:11px;font-weight:600;padding:4px 10px;border-radius:6px;letter-spacing:.02em}
.product__body{padding:16px;display:flex;flex-direction:column;gap:7px;flex:1}
.product__cat{font-size:11px;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.06em}
.product__name{font-size:14.5px;font-weight:600;line-height:1.4;color:var(--ink)}
.product__desc{font-size:12.5px;color:var(--muted);line-height:1.45;flex:1}
.product__dots{display:flex;gap:5px;margin:2px 0}
.product__dots span{width:13px;height:13px;border-radius:50%;border:1.5px solid #fff;box-shadow:0 0 0 1px var(--line)}
.product__rating{font-size:12.5px;color:var(--muted);display:flex;align-items:center;gap:5px}
.product__rating .icon{width:14px;height:14px;stroke:none;fill:#f59e0b}
.product__price{display:flex;align-items:baseline;gap:9px;margin-top:2px}
.product__price b{font-size:19px;font-weight:700;color:var(--ink);letter-spacing:-.01em}
.product__price s{font-size:13px;color:var(--muted)}
.product__pix{font-size:12px;color:var(--ok);font-weight:600;display:flex;align-items:center;gap:5px}
.product__pix .icon{width:13px;height:13px}
.product .btn{margin-top:8px}

/* Footer */
.footer{background:var(--ink);color:#94a3b8}
.footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;padding:56px 24px 44px}
.footer h4{color:#fff;font-size:13px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;margin-bottom:16px}
.footer__grid a{display:block;color:#94a3b8;font-size:14px;padding:6px 0;transition:.15s}
.footer__grid a:hover{color:#fff}
.logo--footer{color:#fff;margin-bottom:16px}
.logo--footer .logo__mark{background:#fff}
.logo--footer .logo__mark .icon{stroke:var(--ink)}
.logo--footer .logo__text,.logo--footer .logo__text strong{color:#fff}
.footer__about{font-size:14px;line-height:1.7;max-width:320px;color:#94a3b8}
.paytags{display:flex;flex-wrap:wrap;gap:8px}
.paytag{background:#1e293b;color:#cbd5e1;font-size:12px;font-weight:500;padding:7px 12px;border-radius:6px;border:1px solid #334155}
.paytag--ok{display:inline-flex;align-items:center;gap:6px}
.paytag--ok .icon{width:13px;height:13px;color:#7dd3a0}
.footer__bottom{border-top:1px solid #1e293b;padding:18px 0;font-size:13px}
.footer__bottom .container{display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;color:#64748b}

/* Carrinho lateral */
.product__media[data-open],.product__name[data-open]{cursor:pointer}
.cart-overlay{position:fixed;inset:0;background:rgba(15,23,42,.5);opacity:0;visibility:hidden;transition:.25s;z-index:105}
.cart-overlay.is-open{opacity:1;visibility:visible}
.cart{
  position:fixed;top:0;right:0;height:100%;width:410px;max-width:92vw;background:#fff;z-index:110;
  display:flex;flex-direction:column;transform:translateX(100%);transition:transform .28s ease;
}
.cart.is-open{transform:translateX(0)}
.cart__header{display:flex;align-items:center;justify-content:space-between;padding:22px 24px;border-bottom:1px solid var(--line)}
.cart__header h3{font-size:16px;font-weight:600;letter-spacing:-.01em}
.cart__close{background:none;border:none;cursor:pointer;color:var(--muted);width:32px;height:32px;border-radius:7px;display:grid;place-items:center}
.cart__close:hover{background:var(--bg-2);color:var(--ink)}
.cart__items{flex:1;overflow-y:auto;padding:16px 24px;display:flex;flex-direction:column;gap:18px}
.cart__empty{text-align:center;color:var(--muted);padding:60px 20px;font-size:14px}
.cart__empty .icon{width:40px;height:40px;stroke:#cbd5e1;margin:0 auto 14px}
.cart-item{display:flex;gap:14px;align-items:flex-start}
.cart-item__media{width:60px;height:60px;border-radius:8px;background:var(--bg-2);border:1px solid var(--line-2);display:grid;place-items:center;flex-shrink:0;overflow:hidden}
.cart-item__media img{width:100%;height:100%;object-fit:cover}
.cart-item__art{display:grid;place-items:center}
.cart-item__media .icon{width:28px;height:28px;stroke-width:1.5}
.cart-item__info{flex:1;min-width:0}
.cart-item__name{font-size:13.5px;font-weight:600;line-height:1.35}
.cart-item__price{font-size:13px;color:var(--muted);margin-top:3px}
.cart-item__qty{display:inline-flex;align-items:center;gap:0;margin-top:8px;border:1px solid var(--line);border-radius:7px;overflow:hidden}
.cart-item__qty button{width:28px;height:28px;border:none;background:#fff;cursor:pointer;font-weight:600;color:var(--ink-2);font-size:15px}
.cart-item__qty button:hover{background:var(--bg-2)}
.cart-item__qty span{font-size:13px;font-weight:600;min-width:30px;text-align:center}
.cart-item__remove{background:none;border:none;color:var(--muted);cursor:pointer;font-size:12.5px;padding:4px 0;margin-top:4px}
.cart-item__remove:hover{color:#dc2626}
.cart__footer{border-top:1px solid var(--line);padding:20px 24px;display:flex;flex-direction:column;gap:16px}
.cart__secure{display:flex;align-items:center;justify-content:center;gap:8px;background:var(--ok-soft);color:var(--ok);font-size:12.5px;font-weight:600;padding:10px;border-radius:8px}
.cart__secure .icon{width:15px;height:15px}
.cart__total{display:flex;justify-content:space-between;align-items:baseline;font-size:14px;color:var(--ink-2)}
.cart__total strong{font-size:22px;font-weight:700;color:var(--ink)}

/* Página de pagamento (#pagamento) */
.pay{position:fixed;inset:0;z-index:90;background:var(--bg-2);overflow-y:auto}
.pay__top{background:#fff;border-bottom:1px solid var(--line);height:64px;display:flex;align-items:center;justify-content:space-between;padding:0 24px;position:sticky;top:0;z-index:2}
.pay__back{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:600;color:var(--ink-2);transition:.15s}
.pay__back:hover{color:var(--accent)}
.pay__back .icon{width:18px;height:18px}
.pay__body{max-width:1000px;margin:0 auto;padding:32px 24px 64px;display:grid;grid-template-columns:1fr 350px;gap:26px;align-items:start}
.pay__main{background:#fff;border:1px solid var(--line);border-radius:16px;padding:30px}
.pay__summary{background:#fff;border:1px solid var(--line);border-radius:16px;padding:22px;position:sticky;top:88px}
.pay__summary-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);margin-bottom:16px}
.pay__items{display:flex;flex-direction:column;gap:11px;margin-bottom:16px}
.pay-item{display:grid;grid-template-columns:auto 1fr auto;gap:9px;font-size:13.5px;align-items:baseline}
.pay-item__q{color:var(--muted);font-weight:700}
.pay-item__n{color:var(--ink-2);line-height:1.35}
.pay-item__v{font-weight:600;white-space:nowrap}
.pay__total{display:flex;justify-content:space-between;align-items:baseline;border-top:1px solid var(--line);padding-top:15px;font-size:14px;color:var(--ink-2)}
.pay__total strong{font-size:22px;font-weight:700;color:var(--ink)}
.pay__perks{list-style:none;margin-top:18px;padding-top:16px;border-top:1px solid var(--line-2);display:flex;flex-direction:column;gap:9px}
.pay__perks li{font-size:12.5px;color:var(--muted);padding-left:20px;position:relative}
.pay__perks li::before{content:"✓";position:absolute;left:0;color:var(--ok);font-weight:700}
.pay .modal__step{max-width:460px}
@media (max-width:820px){
  .pay__body{grid-template-columns:1fr}
  .pay__summary{position:static;order:-1}
  .pay .modal__step{max-width:none}
}
.btn--sm{padding:8px 14px;font-size:13px}

/* Página de produto (PDP) */
.pdp__topright{display:flex;align-items:center;gap:16px}
.pdp__topright .cart-btn{flex-direction:row;color:var(--ink-2)}
.pdp__body{max-width:1080px;margin:0 auto;padding:34px 24px 70px;display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:start}
.pdp__media{position:sticky;top:88px;background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;aspect-ratio:1/1;display:grid;place-items:center}
.pdp__media img{width:100%;height:100%;object-fit:cover}
.pdp__media .product__art{width:100%;height:100%}
.pdp__media .product__art .icon{width:120px;height:120px}
.pdp__cat{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:var(--accent);margin-bottom:8px}
.pdp__name{font-size:30px;font-weight:800;letter-spacing:-.02em;line-height:1.15;margin-bottom:12px}
.pdp__rating{font-size:14px;color:var(--muted);display:flex;align-items:center;gap:6px;margin-bottom:16px}
.pdp__rating .icon{width:16px;height:16px;stroke:none;fill:#f59e0b}
.pdp__price{display:flex;align-items:baseline;gap:12px;margin-bottom:4px}
.pdp__price b{font-size:34px;font-weight:800;letter-spacing:-.02em}
.pdp__price s{font-size:17px;color:var(--muted)}
.pdp__pix{font-size:14px;color:var(--ok);font-weight:600;display:flex;align-items:center;gap:6px;margin-bottom:24px}
.pdp__pix .icon{width:15px;height:15px}
.pdp__vtitle{font-size:13px;font-weight:700;margin-bottom:10px;color:var(--ink-2)}
.pdp__flavors{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:24px}
.flavopt{border:2px solid var(--line);background:#fff;border-radius:10px;padding:9px 15px;font-size:14px;font-weight:600;color:var(--ink-2);cursor:pointer;font-family:inherit;transition:.15s;display:inline-flex;align-items:center;gap:8px}
.flavopt::before{content:"";width:12px;height:12px;border-radius:50%;background:var(--c)}
.flavopt:hover{border-color:#cbd5e1}
.flavopt.is-sel{border-color:var(--accent);background:var(--accent-soft);color:var(--accent)}
.pdp__kit{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:24px}
.kitflav{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;color:var(--ink-2);background:var(--bg-2);border:1px solid var(--line);border-radius:8px;padding:7px 12px}
.kitflav i{width:12px;height:12px;border-radius:50%}
.pdp__buy{display:flex;gap:12px;align-items:stretch;margin-bottom:26px}
.qtybox{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:10px;overflow:hidden}
.qtybox button{width:42px;border:none;background:#fff;cursor:pointer;font-size:20px;font-weight:600;color:var(--ink-2)}
.qtybox button:hover{background:var(--bg-2)}
.qtybox span{min-width:44px;text-align:center;font-size:16px;font-weight:700}
.pdp__buy .btn{flex:1}
.pdp__desc{border-top:1px solid var(--line);padding-top:22px}
.pdp__desc p{font-size:15px;color:var(--ink-2);line-height:1.65;margin-bottom:16px}
.pdp__features{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.pdp__features li{font-size:13.5px;color:var(--ink-2);padding-left:24px;position:relative}
.pdp__features li::before{content:"✓";position:absolute;left:0;color:var(--ok);font-weight:800}
@media (max-width:820px){
  .pdp__body{grid-template-columns:1fr;gap:24px}
  .pdp__media{position:static}
  .pdp__name{font-size:24px}
  .pdp__price b{font-size:28px}
  .pdp__features{grid-template-columns:1fr}
}

/* ============================================================
   ANIMAÇÕES / MICRO-INTERAÇÕES
   ============================================================ */
@keyframes fadeSlideIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes pop{0%{transform:scale(1)}40%{transform:scale(1.4)}100%{transform:scale(1)}}
@keyframes cartShake{0%,100%{transform:none}25%{transform:translateX(-3px)}75%{transform:translateX(3px)}}

/* Botões: elevam no hover, afundam no clique */
.btn{will-change:transform}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0) scale(.97)}
.btn:disabled{transform:none!important}
.btn--primary{box-shadow:0 4px 14px rgba(29,78,216,.22)}
.btn--primary:hover{box-shadow:0 8px 22px rgba(29,78,216,.30)}

/* Páginas em overlay entram com fade + slide */
.pay:not([hidden]){animation:fadeSlideIn .3s cubic-bezier(.16,1,.3,1)}

/* Cards de produto: fade-in (opacity só, pra não brigar com o hover) + cascata */
.product{animation:fadeIn .45s ease both}
.product:nth-child(1){animation-delay:.02s}.product:nth-child(2){animation-delay:.06s}
.product:nth-child(3){animation-delay:.10s}.product:nth-child(4){animation-delay:.14s}
.product:nth-child(5){animation-delay:.18s}.product:nth-child(6){animation-delay:.22s}
.product:nth-child(7){animation-delay:.26s}.product:nth-child(8){animation-delay:.30s}
.product{transition:transform .18s ease,box-shadow .18s ease,border-color .15s}
.product:hover{transform:translateY(-5px)}
.product__media img{transition:transform .35s ease}
.product:hover .product__media img{transform:scale(1.05)}

/* Cards de categoria / chips / variantes: press */
.category-card{transition:.18s}
.category-card:hover{transform:translateY(-3px)}
.category-card:active,.nav__chip:active,.flavopt:active,.frete-opt:active{transform:scale(.97)}
.cart-btn:active,.header__link:active{transform:scale(.92)}

/* Badge do carrinho: "pula" ao mudar a quantidade */
.cart-count.bump{animation:pop .4s ease}
.cart-btn.shake{animation:cartShake .4s ease}

/* Hero entra ao carregar (cascata) */
.hero__content>*{animation:fadeUp .55s cubic-bezier(.16,1,.3,1) both}
.hero__badge{animation-delay:.05s}
.hero h1{animation-delay:.12s}
.hero p{animation-delay:.20s}
.hero__cta{animation-delay:.28s}
.hero__visual{animation:fadeUp .6s cubic-bezier(.16,1,.3,1) both;animation-delay:.15s}

/* Selo de sucesso do pagamento (check) */
.done-check{animation:pop .5s ease}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-delay:0ms!important}
  .product__media img,.product:hover .product__media img{transition:none}
}

/* Minha conta */
.conta__body{max-width:760px;margin:0 auto;padding:36px 24px 64px}
.conta__card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:28px;max-width:420px;margin:0 auto}
.conta__tabs{display:flex;gap:6px;background:var(--bg-2);border-radius:10px;padding:4px;margin-bottom:22px}
.conta__tab{flex:1;border:none;background:none;padding:9px;border-radius:8px;font-size:14px;font-weight:600;color:var(--muted);cursor:pointer;font-family:inherit;transition:.15s}
.conta__tab.is-active{background:#fff;color:var(--accent);box-shadow:var(--shadow)}
.conta__welcome{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:22px;flex-wrap:wrap}
.conta__hi{font-size:20px;font-weight:700;letter-spacing:-.01em}
.conta__sub{font-size:14px;color:var(--muted);margin-top:2px}
.ped{background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px 20px;margin-bottom:14px}
.ped__top{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;flex-wrap:wrap;margin-bottom:12px;padding-bottom:12px;border-bottom:1px solid var(--line-2)}
.ped__id{font-family:ui-monospace,monospace;font-size:11.5px;color:var(--muted)}
.ped__date{font-size:12.5px;color:var(--muted);margin-top:2px}
.ped__val{font-size:18px;font-weight:800}
.ped__badges{display:flex;gap:6px;margin-top:7px;flex-wrap:wrap}
.tag{font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.03em;padding:3px 8px;border-radius:7px}
.tag--pago{background:var(--ok-soft);color:var(--ok)}
.tag--pend{background:#fffbeb;color:#b45309}
.tag--env{background:var(--accent-soft);color:var(--accent)}
.ped__itens{font-size:13px;color:var(--ink-2);line-height:1.6}
.ped__track{margin-top:12px;padding:11px 14px;background:var(--accent-soft);border-radius:10px;font-size:13.5px}
.ped__track b{color:var(--accent);font-family:ui-monospace,monospace}
.ped__track small{display:block;color:var(--muted);font-size:12px;margin-bottom:2px}
.ped__notrack{margin-top:12px;font-size:13px;color:var(--muted)}
.conta__empty{text-align:center;color:var(--muted);padding:50px 20px;background:#fff;border:1px solid var(--line);border-radius:14px}
.conta__nav{display:flex;gap:4px;border-bottom:1px solid var(--line);margin-bottom:20px}
.conta__navbtn{border:none;background:none;padding:11px 16px;font-size:14px;font-weight:600;color:var(--ink-2);cursor:pointer;border-bottom:2px solid transparent;font-family:inherit;margin-bottom:-1px}
.conta__navbtn:hover{color:var(--accent)}
.conta__navbtn.is-active{color:var(--accent);border-bottom-color:var(--accent)}
.conta__card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:22px;margin-bottom:16px;max-width:460px}
.conta__cardtitle{font-size:15px;font-weight:700;margin-bottom:16px}
.conta__msg{font-size:13px;font-weight:600;min-height:16px}
.conta__msg.ok{color:var(--ok)}
.conta__msg.err{color:#b42318}
.field input[readonly]{background:var(--bg-2);color:var(--muted);cursor:not-allowed}
.header__link.is-logged{color:var(--accent)}

/* Modal de checkout (legado — estilos reaproveitados pelos passos) */
.modal-overlay{position:fixed;inset:0;background:rgba(15,23,42,.55);opacity:0;visibility:hidden;transition:.2s;z-index:70}
.modal-overlay.is-open{opacity:1;visibility:visible}
.modal{
  position:fixed;top:50%;left:50%;transform:translate(-50%,-46%);z-index:80;
  width:420px;max-width:94vw;max-height:92vh;overflow-y:auto;background:#fff;border-radius:16px;
  box-shadow:0 24px 60px rgba(15,23,42,.3);padding:28px;opacity:0;visibility:hidden;transition:.22s;
}
.modal.is-open{opacity:1;visibility:visible;transform:translate(-50%,-50%)}
.modal__close{position:absolute;top:16px;right:16px;background:none;border:none;cursor:pointer;color:var(--muted);width:32px;height:32px;border-radius:8px;display:grid;place-items:center}
.modal__close:hover{background:var(--bg-2);color:var(--ink)}
.modal__title{font-size:20px;font-weight:700;letter-spacing:-.02em;margin-bottom:6px}
.modal__sub{font-size:14px;color:var(--muted);margin-bottom:20px;line-height:1.5}
.modal__step--center{text-align:center}
.modal__error{background:#fef2f2;color:#b42318;border:1px solid #fecdca;border-radius:9px;padding:11px 14px;font-size:13.5px;margin-top:14px}

/* Form */
.form{display:flex;flex-direction:column;gap:14px}
.field{display:flex;flex-direction:column;gap:6px}
.field span{font-size:13px;font-weight:600;color:var(--ink-2)}
.field span small{font-weight:400;color:var(--muted)}
.field input{border:1px solid var(--line);border-radius:9px;padding:11px 13px;font-size:14.5px;font-family:inherit;outline:none;transition:.15s}
.field input:focus{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form__row--num{grid-template-columns:1fr 1.4fr}
.form__row--cidade{grid-template-columns:1fr 70px}
.form__row--cep{grid-template-columns:1fr auto;align-items:end}
.form__divider{font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--accent);margin:8px 0 2px;padding-top:14px;border-top:1px solid var(--line-2)}
.cep-status{font-size:12px;color:var(--muted);padding-bottom:11px;white-space:nowrap}
.cep-status.ok{color:var(--ok)}
.cep-status.err{color:#b42318}
#cUf{text-transform:uppercase}
/* Frete */
.frete-box{display:flex;flex-direction:column;gap:9px}
.frete-hint{font-size:12.5px;color:var(--muted);line-height:1.45;padding:2px 0 8px;border-top:1px solid var(--line-2);margin-top:4px;padding-top:12px}
.frete-loading,.frete-err{font-size:13px;color:var(--muted);padding:4px 0}
/* no resumo (coluna estreita), opções um pouco mais compactas */
.pay__summary .frete-opt{padding:10px 12px;gap:10px}
.pay__summary .frete-opt__price{font-size:14px}
.pay__summary .frete-opt__info strong{font-size:13.5px}
.frete-err{color:#b42318}
.frete-opt{display:flex;align-items:center;gap:12px;border:2px solid var(--line);border-radius:11px;padding:12px 14px;cursor:pointer;transition:.15s;position:relative}
.frete-opt:hover{border-color:#cbd5e1;background:var(--bg-2)}
.frete-opt.is-sel{border-color:var(--accent);background:var(--accent-soft);box-shadow:0 4px 14px rgba(29,78,216,.16)}
.frete-opt input{accent-color:var(--accent);width:18px;height:18px;flex-shrink:0}
.frete-opt__info{flex:1;display:flex;flex-direction:column;line-height:1.3}
.frete-opt__info strong{font-size:14px;font-weight:600}
.frete-opt__info small{font-size:12px;color:var(--muted)}
.frete-opt__price{font-size:15px;font-weight:700;white-space:nowrap}
/* destaque da opção selecionada */
.frete-opt.is-sel{font-weight:600}
.frete-opt.is-sel .frete-opt__info strong{color:var(--accent-2)}
.frete-opt.is-sel .frete-opt__info small{color:var(--accent)}
.frete-opt.is-sel .frete-opt__price{color:var(--accent)}
.frete-opt.is-sel::after{content:"✓ Selecionado";position:absolute;top:-9px;right:12px;background:var(--accent);color:#fff;font-size:10.5px;font-weight:700;letter-spacing:.02em;padding:2px 8px;border-radius:999px}
.pay-item--frete .pay-item__n small{color:var(--muted)}

.form__total{display:flex;justify-content:space-between;align-items:baseline;padding:14px 0 4px;border-top:1px solid var(--line-2);margin-top:4px}
.form__total strong{font-size:22px;font-weight:700}
.form__secure{display:flex;align-items:center;justify-content:center;gap:7px;font-size:12.5px;color:var(--ok);font-weight:500;margin-top:4px}
.form__secure .icon{width:14px;height:14px}

/* PIX */
.pix-amount{text-align:center;font-size:26px;font-weight:800;letter-spacing:-.02em;margin-bottom:14px}
.pix-code{font-family:ui-monospace,Menlo,Consolas,monospace;font-size:12px;line-height:1.5;color:var(--ink-2);background:var(--bg-2);border:1px solid var(--line);border-radius:10px;padding:12px 14px;word-break:break-all;max-height:96px;overflow-y:auto;margin-bottom:12px;user-select:all}
.pix-qr-wrap{margin-top:18px;text-align:center}
.pix-or{display:block;font-size:12.5px;color:var(--muted);margin-bottom:12px}
.pix-qr{display:inline-grid;place-items:center;min-width:228px;min-height:228px;padding:14px;background:#fff;border:1px solid var(--line);border-radius:14px;margin:0 auto}
.pix-qr canvas,.pix-qr img{width:200px;height:200px;margin:0 auto}
.pix-qr table{margin:0 auto;border-collapse:collapse}
.qr-fail{font-size:13px;color:var(--muted);max-width:200px;line-height:1.4}
.pix-wait{display:flex;align-items:center;justify-content:center;gap:10px;font-size:13.5px;color:var(--muted);margin-top:18px}
.spinner{width:16px;height:16px;border:2px solid var(--line);border-top-color:var(--accent);border-radius:50%;animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* Sucesso */
.done-check{width:64px;height:64px;border-radius:50%;background:var(--ok-soft);display:grid;place-items:center;margin:0 auto 16px}
.done-check .icon{width:34px;height:34px;stroke:var(--ok);stroke-width:2.4}

/* Responsivo */
@media (max-width:1024px){
  .categories{grid-template-columns:repeat(3,1fr)}
  .products{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:860px){
  .hero__inner{grid-template-columns:1fr;gap:32px;padding:48px 24px}
  .hero__visual{height:240px}
  .footer__grid{grid-template-columns:1fr 1fr;gap:30px}
}
@media (max-width:720px){
  .header__inner{flex-wrap:wrap;height:auto;padding:14px 0;gap:14px}
  .search{order:3;max-width:100%;flex-basis:100%}
  .trust__grid{grid-template-columns:1fr 1fr}
  .trust__item{border-bottom:1px solid var(--line-2)}
  .trust__item:nth-child(odd){border-right:1px solid var(--line-2)}
  .trust__item:nth-child(even){border-right:none}
  .products{grid-template-columns:1fr 1fr}
  .categories{grid-template-columns:repeat(3,1fr)}
  .hero h1{font-size:34px}
  .header__link .header__label{display:none}
}
@media (max-width:480px){
  .footer__grid{grid-template-columns:1fr}
}
