/* ============================================================
   NIK BAR — Design System
   Streetwear / urban · preto + amarelo neon (+ roxo)
   ============================================================ */

:root {
  /* themed tokens (defaults = DARK) */
  --bg:      #0B0B0C;
  --bg-2:    #141417;
  --bg-3:    #1B1B20;
  --line:    rgba(255,255,255,0.09);
  --line-2:  rgba(255,255,255,0.16);
  --text:    #F6F6F2;
  --dim:     #9C9C9A;
  --dim-2:   #6E6E6C;
  --shadow:  0 24px 60px -24px rgba(0,0,0,0.7);
  --on-card: rgba(255,255,255,0.04);

  /* brand (constant across themes) */
  --accent:    #FFD60A;   /* amarelo da logo */
  --accent-2:  #FFC400;
  --ink:       #0B0B0C;   /* texto sobre amarelo */
  --purple:    #8B5CF6;

  /* shape */
  --r:    20px;
  --r-sm: 13px;
  --r-lg: 28px;
  --pill: 999px;

  /* fonts (overridable via tweaks) */
  --font-ui: "Archivo", system-ui, sans-serif;
  --font-display: "Anton", "Archivo", sans-serif;

  --maxw: 1180px;
}

.theme-light {
  --bg:      #F1F0EA;
  --bg-2:    #FFFFFF;
  --bg-3:    #FFFFFF;
  --line:    rgba(11,11,12,0.10);
  --line-2:  rgba(11,11,12,0.18);
  --text:    #131311;
  --dim:     #5E5E59;
  --dim-2:   #8E8E88;
  --shadow:  0 22px 50px -28px rgba(0,0,0,0.35);
  --on-card: rgba(11,11,12,0.02);
  --purple:  #7C3AED;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}

#root { min-height: 100vh; }
.app-root { min-height: 100vh; position: relative; }
.app-content { position: relative; min-height: 100vh; }
.page-inner { position: relative; min-height: 100vh; }
.page-bg { position: absolute; inset: 0; z-index: 0; transition: background .35s ease; }
.content-wrap { position: relative; z-index: 1; min-height: 100vh; transition: color .35s ease; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---- type helpers ---- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dim);
}
.mono-tag {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 15px; letter-spacing: .2px;
  padding: 14px 22px; border-radius: var(--pill);
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-yellow { background: var(--accent); color: var(--ink); }
.btn-yellow:hover { background: var(--accent-2); box-shadow: 0 10px 30px -10px rgba(255,214,10,.6); }
.btn-dark { background: var(--text); color: var(--bg); }
.btn-ghost { background: var(--on-card); color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--text); }
.btn-wa { background: #1FAE54; color: #fff; }
.btn-wa:hover { background: #1a9a4a; box-shadow: 0 12px 30px -12px rgba(31,174,84,.7); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: center; gap: 18px; height: 70px; }
.hdr-back { flex: none; width: 42px; height: 42px; }
.hdr-back:hover { border-color: var(--accent); color: var(--accent); }
.hdr-wa { color: #fff; background: #1FAE54; border-color: #1FAE54; }
.hdr-wa:hover { background: #1a9a4a; border-color: #1a9a4a; color: #fff; }

/* ---- Menu gaveta (hambúrguer) ---- */
.navmenu { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 86%); z-index: 91;
  background: var(--bg); border-left: 1px solid var(--line); display: flex; flex-direction: column;
  box-shadow: -30px 0 80px -30px rgba(0,0,0,.7); }
.navmenu-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.navmenu-body { flex: 1; overflow-y: auto; padding: 12px 14px 24px; display: flex; flex-direction: column; gap: 2px; }
.navmenu-label { font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--dim-2); padding: 16px 10px 8px; }
.navmenu-link { display: flex; align-items: center; gap: 13px; padding: 13px 12px; border-radius: 13px;
  font-weight: 700; font-size: 15px; color: var(--text); cursor: pointer; transition: background .15s, color .15s; }
.navmenu-link:hover { background: var(--on-card); color: var(--accent); }
.navmenu-link svg { color: var(--dim); flex: none; transition: color .15s; }
.navmenu-link:hover svg { color: var(--accent); }
.navmenu-foot { color: var(--dim); font-size: 12.5px; font-weight: 700; display: flex; align-items: center; gap: 7px; padding: 18px 12px 4px; }

/* ---- Botões sociais do rodapé (com ícone + nome) ---- */
.ftr-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: var(--pill);
  font-weight: 800; font-size: 13.5px; color: #fff; border: 1px solid transparent;
  transition: transform .14s ease, filter .2s; }
.social-btn svg { flex: none; }
.social-btn.ig { background: linear-gradient(120deg, #8B5CF6, #F0435A); }
.social-btn.wa { background: #1FAE54; }
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.social-btn:active { transform: scale(.97); }

/* ---- Avaliações (carrossel deslizante) ---- */
.reviews-marquee { overflow: hidden; padding: 4px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.reviews-track { display: flex; gap: 14px; width: max-content; animation: marquee 38s linear infinite; }
.reviews-track.no-anim { animation: none; }
.reviews-marquee:hover .reviews-track, .reviews-marquee:active .reviews-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review-card { flex: none; width: 300px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px; display: flex; flex-direction: column; gap: 11px; }
.review-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.review-stars .off { color: var(--line-2); }
.review-text { font-size: 14.5px; line-height: 1.55; color: var(--text); font-weight: 500; flex: 1; }
.review-name { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; }
.review-ava { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: var(--ink);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 16px; flex: none; }

/* ---- FAQ (acordeão) ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.faq-item { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; cursor: pointer; transition: border-color .2s; }
.faq-item:hover { border-color: var(--line-2); }
.faq-item.open { border-color: var(--accent); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-weight: 800; font-size: 15px; }
.faq-q svg { color: var(--dim); flex: none; transition: transform .2s, color .2s; transform: rotate(90deg); }
.faq-item.open .faq-q svg { transform: rotate(-90deg); color: var(--accent); }
.faq-a { color: var(--dim); font-size: 14px; line-height: 1.6; margin-top: 12px; font-weight: 500; }
.faq-a b { color: var(--text); }
.faq-a a { text-decoration: underline; }
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; transition: transform .15s ease; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); border: 2.5px solid var(--accent);
  display: grid; place-items: center; flex: none;
  position: relative; overflow: hidden;
}
.brand-mark span { font-family: var(--font-display); font-size: 17px; color: var(--accent); line-height:1; }
/* logo padrão do sistema — mesma forma + animação leve em toda parte */
.brand-mark-img { border-radius: 50%; object-fit: cover; flex: none;
  box-shadow: 0 0 0 2px var(--accent), 0 6px 16px -6px rgba(0,0,0,.6); background: #000;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease; }
.brand-name { font-family: var(--font-display); font-size: 25px; letter-spacing: .8px; line-height: 1;
  text-transform: uppercase; transition: transform .25s ease; }
.brand-name b { color: var(--accent); }
/* desktop: hover anima logo + nome juntos · mobile: feedback ao toque (:active) */
.brand:hover .brand-mark-img { transform: scale(1.07) rotate(-4deg);
  box-shadow: 0 0 0 2px var(--accent), 0 10px 24px -8px rgba(255,214,10,.55); }
.brand:hover .brand-name { transform: translateX(2px); }
.brand:active { transform: scale(.96); }

.hdr-search {
  flex: 1; max-width: 440px; display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--pill); padding: 10px 16px; color: var(--dim);
  cursor: text; transition: border-color .2s;
}
.hdr-search:focus-within, .hdr-search:hover { border-color: var(--line-2); }
.hdr-search input { flex: 1; background: none; border: none; color: var(--text); font-size: 14px; outline: none; }
.hdr-search input::placeholder { color: var(--dim-2); }
.hdr-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-2); border: 1px solid var(--line); position: relative;
  transition: border-color .2s, background .2s;
}
.icon-btn:hover { border-color: var(--line-2); }
.cart-count {
  position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px; background: var(--accent); color: var(--ink);
  font-size: 11px; font-weight: 900; display: grid; place-items: center;
  border: 2px solid var(--bg);
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.grid-products {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.pcard {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; cursor: pointer; position: relative;
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.pthumb { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; }
.pthumb::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,.18), transparent 60%); }
.pthumb-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: 10.5px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--pill); background: var(--ink); color: var(--accent);
}
.pthumb-badge.prem { background: var(--accent); color: var(--ink); }
.pthumb-badge.promo{ background: #F0435A; color:#fff; }
.pthumb-fav {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(11,11,12,.5);
  backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff;
}
.pthumb-fav.on { color: #F0435A; }
/* stylized disposable-vape render (original artwork placeholder) */
.device {
  width: 46px; height: 62%; border-radius: 13px 13px 16px 16px; position: relative; z-index: 2;
  background:
    linear-gradient(118deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.6) 47%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(244,244,246,.72) 58%, rgba(214,214,218,.62));
  box-shadow: 0 22px 36px -16px rgba(0,0,0,.62), inset 0 2px 3px rgba(255,255,255,.92), inset 0 -10px 16px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.45);
}
.device::before { /* bocal / mouthpiece */
  content:""; position:absolute; top:-13%; left:50%; transform:translateX(-50%);
  width: 50%; height: 16%; border-radius: 7px 7px 4px 4px;
  background: linear-gradient(180deg,#2c2c30,#0d0d0f);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.2), 0 4px 8px -3px rgba(0,0,0,.5);
}
.device::after { /* visor / display */
  content:""; position:absolute; left:50%; bottom: 13%; transform:translateX(-50%);
  width: 58%; height: 24%; border-radius: 5px;
  background: linear-gradient(180deg,#141417,#08080a);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 7px 0 -5px var(--accent);
}
.pbody { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pbrand { font-size: 11px; font-weight: 800; letter-spacing: 1.2px; color: var(--dim); text-transform: uppercase; }
.pname { font-family: var(--font-display); font-size: 19px; line-height: .98; text-transform: uppercase; }
.ppuffs { display:inline-flex; align-items:center; gap:5px; font-size:11.5px; font-weight:700; color: var(--purple); }
.pmeta { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; gap: 8px; }
.pprice { font-family: var(--font-display); font-size: 23px; letter-spacing: .3px; }
.pprice small { font-family: var(--font-ui); font-size: 12px; font-weight: 700; color: var(--dim); display:block; line-height:1; margin-bottom:1px; }
.padd {
  width: 42px; height: 42px; border-radius: 13px; flex: none;
  background: var(--accent); color: var(--ink); display: grid; place-items: center;
  transition: transform .12s ease, background .2s;
}
.padd:hover { background: var(--accent-2); }
.padd:active { transform: scale(.9); }
.pflavor-row { display: flex; gap: 5px; flex-wrap: wrap; }
.fchip {
  font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: var(--pill);
  background: var(--on-card); border: 1px solid var(--line); color: var(--dim);
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}
.fchip .dot { flex: none; }
.fchip .dot { width: 7px; height: 7px; border-radius: 50%; }
.pflavor-more { font-size: 10.5px; font-weight: 700; color: var(--dim-2); align-self: center; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec { padding: 56px 0; }
.sec-sm { padding: 36px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.sec-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); line-height: .95; text-transform: uppercase; }
.sec-title em { font-style: normal; color: var(--accent); }
.see-all { font-weight: 800; font-size: 13px; color: var(--dim); display: inline-flex; gap: 6px; align-items:center; white-space: nowrap; cursor: pointer; }
.see-all:hover { color: var(--accent); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 90; opacity: 0; transition: opacity .25s ease; backdrop-filter: blur(2px); }
.scrim.open { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); z-index: 91;
  background: var(--bg); border-left: 1px solid var(--line); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display:flex; align-items:center; justify-content:space-between; padding: 22px; border-bottom: 1px solid var(--line); }
.drawer-title { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 22px; }
.drawer-foot { padding: 20px 22px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.citem { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.citem-thumb { width: 64px; height: 64px; border-radius: 13px; flex: none; display:grid; place-items:center; overflow:hidden; }
.citem-thumb .device { width: 24px; }
.citem-info { flex: 1; min-width: 0; }
.citem-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.citem-remove { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none;
  color: var(--dim); transition: all .15s; }
.citem-remove:hover { background: color-mix(in oklab, #ff5a6a 16%, transparent); color: #ff7a86; }
.citem-remove:active { transform: scale(.85); }
.citem-name { font-weight: 800; font-size: 14px; }
.citem-flavor { font-size: 12px; color: var(--dim); }
.citem-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--line-2); border-radius: var(--pill); overflow:hidden; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-weight: 900; font-size: 16px; color: var(--text); }
.qty button:hover { background: var(--on-card); }
.qty span { min-width: 26px; text-align: center; font-weight: 800; font-size: 14px; }
.citem-price { font-family: var(--font-display); font-size: 17px; }
.cart-empty { text-align:center; padding: 60px 20px; color: var(--dim); }
.row-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.row-total .k { color: var(--dim); font-weight: 700; font-size: 13.5px; }
.row-total .v { font-family: var(--font-display); font-size: 27px; white-space: nowrap; }

/* ============================================================
   FOOTER + MISC
   ============================================================ */
.age-bar {
  background: var(--accent); color: var(--ink); text-align:center;
  font-weight: 800; font-size: 12.5px; letter-spacing: .4px; padding: 8px 16px;
}
.ftr { border-top: 1px solid var(--line); padding: 54px 0 36px; margin-top: 40px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.ftr h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.ftr a { display: block; color: var(--text); padding: 5px 0; font-size: 14px; font-weight: 600; }
.ftr a:hover { color: var(--accent); }
.ftr-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--dim); font-size: 12.5px; flex-wrap: wrap; }

.trust-row { display:flex; gap:10px; flex-wrap: wrap; }
.trust {
  display:inline-flex; align-items:center; gap:8px; padding: 9px 15px; border-radius: var(--pill);
  background: var(--bg-2); border: 1px solid var(--line); font-size: 13px; font-weight: 700;
}
.trust .ic { color: var(--accent); display:grid; place-items:center; }

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate { position: fixed; inset: 0; z-index: 200; background: var(--bg);
  display: grid; place-items: center; padding: 22px;
  background-image: radial-gradient(60% 50% at 50% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%); }
.age-card { width: min(420px, 100%); background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 38px 32px; box-shadow: var(--shadow); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 60px 0 30px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { font-family: var(--font-display); font-size: clamp(46px, 7vw, 92px); line-height: .88;
  text-transform: uppercase; letter-spacing: -1px;
  -webkit-text-stroke: 2.5px var(--ink); paint-order: stroke fill;
  text-shadow: 4px 5px 0 var(--ink); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--dim); max-width: 440px; margin: 22px 0 28px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stage { position: relative; aspect-ratio: 4/4.4; display: grid; place-items: center; }
.hero-blob { position: absolute; inset: 6% 10%; background: var(--accent); border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: blur(2px); opacity: .96; }
.hero-frame { position: relative; z-index: 2; width: 74%; height: 80%; border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); border: 6px solid var(--ink); background: var(--bg-3); }
.hero-frame image-slot { --is-bg: var(--bg-3); background: var(--bg-3); }
.hero-frame image-slot { width: 100%; height: 100%; }
.hero-float { position: absolute; z-index: 3; background: var(--ink); color: #fff; border-radius: 16px;
  padding: 12px 16px; box-shadow: 0 18px 40px -16px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.12); }
.hero-float .big { font-family: var(--font-display); font-size: 22px; color: var(--accent); line-height: 1; }
.hero-float .sm { font-size: 11px; font-weight: 700; letter-spacing: .5px; color: #cfcfcf; text-transform: uppercase; }
.hero-float.tl { top: 4%; left: -2%; }
.hero-float.br { bottom: 7%; right: -3%; }
.hero-spark { position:absolute; z-index:3; top: 16%; right: 4%; color: var(--ink); font-family: var(--font-display); font-size: 30px; }
.hero-logo-m { display: none; } /* logo da marca: só aparece no mobile (ver media query) */

/* category shortcuts */
.cat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.cat-card { position: relative; border-radius: var(--r); padding: 20px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); min-height: 134px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .18s ease, border-color .2s; background: var(--bg-2); }
.cat-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.cat-card .cc-name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; line-height: 1.02; }
.cat-card .cc-count { font-size: 12px; color: var(--dim); font-weight: 700; margin-top: 4px; }
.cat-card .cc-glow { position:absolute; top:-30%; right:-20%; width: 120px; height: 120px; border-radius: 50%; opacity:.5; filter: blur(20px); }

/* promo / atacado banner */
.promo-band { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--accent); color: var(--ink);
  padding: 44px 46px; display: grid; grid-template-columns: 1.5fr auto; align-items: center; gap: 36px; }
.promo-content { position: relative; z-index: 2; }
.promo-band h3 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); line-height: .96; text-transform: uppercase; margin-top: 8px; }
.promo-band p { font-weight: 700; max-width: 460px; margin-top: 12px; font-size: 15px; line-height: 1.5; }
.promo-benefits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin-top: 22px; max-width: 480px; }
.promo-benefits li { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; }
.promo-benefits li svg { flex: none; }
.promo-ctas { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; width: 264px; max-width: 100%; }
.btn-atacado-ghost { background: transparent; color: var(--ink); border: 2px solid rgba(11,11,12,.3); }
.btn-atacado-ghost:hover { border-color: var(--ink); background: rgba(11,11,12,.06); }
.promo-deco { position:absolute; font-family: var(--font-display); font-size: 200px; opacity: .08; right: 2%; top: -30px; text-transform: uppercase; pointer-events:none; line-height:1; }

/* ============================================================
   CATEGORY VIEW
   ============================================================ */
.cat-page { padding: 36px 0 20px; }
.cat-head { display:flex; align-items:flex-end; justify-content:space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.tabs { display: flex; gap: 9px; flex-wrap: wrap; }
.tab { padding: 10px 18px; border-radius: var(--pill); border: 1px solid var(--line);
  background: var(--bg-2); font-weight: 800; font-size: 14px; color: var(--dim); transition: all .18s; }
.tab:hover { border-color: var(--line-2); color: var(--text); }
.tab.on { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.sortbar { display:flex; align-items:center; gap: 10px; color: var(--dim); font-size: 13px; font-weight: 700; }
.sortbar select { background: var(--bg-2); color: var(--text); border: 1px solid var(--line); border-radius: var(--pill);
  padding: 9px 14px; font-weight: 700; font-family: inherit; cursor: pointer; }

/* ============================================================
   PRODUCT VIEW
   ============================================================ */
.pdp { padding: 30px 0 60px; }
.crumb { display:flex; align-items:center; gap: 8px; color: var(--dim); font-weight: 700; font-size: 13px; margin-bottom: 22px; cursor: pointer; }
.crumb:hover { color: var(--accent); }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.pdp-media { position: sticky; top: 90px; }
.pdp-hero { position: relative; aspect-ratio: 1/1; border-radius: var(--r-lg); display: grid; place-items: center; overflow: hidden; }
.pdp-hero .device { width: 96px; height: 62%; }
.pdp-hero .pthumb-badge { top: 18px; left: 18px; font-size: 12px; padding: 7px 13px; }
.pdp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.pdp-gallery .g { aspect-ratio: 1/1; border-radius: var(--r-sm); display:grid; place-items:center; overflow:hidden; border: 1px solid var(--line); }
.pdp-gallery .g .device { width: 30px; }
.pdp-brand { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; color: var(--dim); text-transform: uppercase; }
.pdp-name { font-family: var(--font-display); font-size: clamp(38px, 5vw, 60px); line-height: .92; text-transform: uppercase; margin: 8px 0 14px; }
.pdp-pufftag { display:inline-flex; align-items:center; gap:7px; background: var(--purple); color:#fff; font-weight:800;
  font-size: 13px; padding: 7px 14px; border-radius: var(--pill); }
.pdp-price { font-family: var(--font-display); font-size: 46px; margin: 22px 0 6px; }
.pdp-price small { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--dim); }
.pdp-section-label { font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin: 26px 0 12px; }
.flavor-pick { display: flex; flex-wrap: wrap; gap: 9px; }
.fpick { display:inline-flex; align-items:center; gap: 8px; padding: 10px 15px; border-radius: var(--pill);
  border: 1.5px solid var(--line); background: var(--bg-2); font-weight: 700; font-size: 13.5px; transition: all .15s; }
.fpick:hover { border-color: var(--line-2); }
.fpick.on { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 14%, var(--bg-2)); }
.fpick .dot { width: 11px; height: 11px; border-radius: 50%; }
.pdp-buy { display:flex; gap: 12px; align-items: stretch; margin-top: 28px; }
.pdp-qty { display:flex; align-items:center; border: 1.5px solid var(--line-2); border-radius: var(--pill); padding: 0 6px; }
.pdp-qty button { width: 40px; height: 52px; font-size: 22px; font-weight: 900; color: var(--text); }
.pdp-qty span { min-width: 34px; text-align:center; font-weight: 800; font-size: 17px; }
.pdp-why { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; margin-top: 30px; }
.pdp-why p { color: var(--dim); line-height: 1.7; font-size: 15px; }
.guarantee { display:grid; gap: 10px; margin-top: 22px; }
.guarantee .g-item { display:flex; gap: 12px; align-items:flex-start; font-size: 14px; }
.guarantee .g-item .gi { color: var(--accent); flex:none; margin-top: 1px; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-stage { aspect-ratio: 4/3.4; max-width: 460px; margin: 0 auto; order: -1; }
  .pdp-grid { grid-template-columns: 1fr; gap: 26px; }
  .pdp-media { position: static; }
}
@media (max-width: 780px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hdr-search { display: none; }
  .promo-band { grid-template-columns: 1fr; padding: 32px 26px; gap: 24px; }
  .promo-ctas { width: 100%; }
}
@media (max-width: 520px) {
  .ftr-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   OUTLINE TREATMENT  — letras "vazadas" com borda preta (estilo pôster)
   ============================================================ */
.display, .sec-title, .pname, .pdp-name, .brand-name,
.drawer-title, .adm-top h1, .panel-h h3, .kpi .k-val, .pprice, .pdp-price,
.hero-float .big, .ls-qty, .drawer-title, .age-card h2 {
  -webkit-text-stroke: 1.6px var(--ink);
  paint-order: stroke fill;
  text-shadow: 2px 2.5px 0 var(--ink);
}
/* headline gigante do hero mantém traço mais forte */
.hero h1 { -webkit-text-stroke: 3px var(--ink); text-shadow: 5px 6px 0 var(--ink); }
.sec-title { text-shadow: 3px 3.5px 0 var(--ink); }
/* banner atacado: título limpo (sem contorno) — leitura nítida sobre o amarelo */
.promo-band h3 { -webkit-text-stroke: 0; text-shadow: none; letter-spacing: -.4px; }
/* no tema claro a borda preta contorna fill claro/escuro com leve sombra */
.theme-light .pname, .theme-light .sec-title, .theme-light .pdp-name,
.theme-light .display, .theme-light .adm-top h1 { -webkit-text-stroke-width: 1.3px; }

/* ============================================================
   TOUCH / UX — feedback ao toque em tudo que é clicável
   ============================================================ */
* { -webkit-tap-highlight-color: transparent; }
button, a, .pcard, .cat-card, .tab, .pill, .adm-link, .sw,
.fpick, .padd, .icon-btn, .pthumb-fav, .qty button, .crumb, .see-all { touch-action: manipulation; }
/* ELEVAÇÃO — feedback ao hover/toque em TODOS os botões da loja */
.btn { transition: transform .14s ease, background .2s ease, box-shadow .2s ease, filter .15s; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn.btn-disabled, .btn.btn-disabled:hover, .btn.btn-disabled:active { transform: none !important; box-shadow: none; }

.padd, .icon-btn, .pthumb-fav, .tab, .fpick, .pill, .cat-card, .qty button, .see-all, .citem-remove, .crumb {
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.padd:hover, .icon-btn:hover, .pthumb-fav:hover, .tab:hover, .fpick:hover, .cat-card:hover, .crumb:hover {
  transform: translateY(-3px); box-shadow: 0 12px 22px -10px rgba(0,0,0,.5);
}
.padd:active, .icon-btn:active, .pthumb-fav:active, .tab:active, .fpick:active, .pill:active,
.cat-card:active, .qty button:active, .see-all:active, .citem-remove:active, .crumb:active {
  transform: translateY(-2px) scale(.98);
}
.pcard:active { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.adm-link:active, .ftr a:active { transform: scale(.97); }
.padd, .pthumb-fav, .icon-btn, .btn, .fpick, .tab, .pill { position: relative; }
@media (hover: none) {
  .pcard:active { box-shadow: var(--shadow); border-color: var(--line-2); }
}

/* HERO — moldura da logo responsiva ao toque (elevação) */
.hero-frame { cursor: pointer; transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease; }
.hero-frame:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 56px 96px -30px rgba(0,0,0,.72); }
.hero-frame:active { transform: translateY(-2px) scale(1.0); }

/* CHECKOUT — formulário de dados no carrinho */
.co-form { display: flex; flex-direction: column; gap: 11px; }
.co-head { font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-top: 2px; }
.co-field { display: flex; flex-direction: column; gap: 5px; }
.co-field label { font-size: 11.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; color: var(--dim); }
.co-field input, .co-field select { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 14px; outline: none; transition: border-color .2s; }
.co-field input:focus, .co-field select:focus { border-color: var(--accent); }
.co-field input::placeholder { color: var(--dim-2); }
.co-field input.co-miss { border-color: #ff5a6a; }
.co-hint { color: #ff8a95; font-size: 12.5px; font-weight: 700; margin: 2px 0 0; }

/* Toast de confirmação ("Adicionado ✓") */
.toast { position: fixed; left: 50%; bottom: calc(94px + env(safe-area-inset-bottom)); transform: translateX(-50%);
  z-index: 95; background: var(--text); color: var(--bg); font-weight: 800; font-size: 14px;
  padding: 11px 18px; border-radius: var(--pill); box-shadow: 0 14px 36px -12px rgba(0,0,0,.6);
  display: inline-flex; align-items: center; gap: 8px; animation: toastIn .25s ease; white-space: nowrap; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } }

/* Barra fixa "Finalizar compra" (quando há itens) */
.cart-fab { position: fixed; left: 50%; transform: translateX(-50%); bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 80; width: min(560px, calc(100% - 28px)); display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--accent); color: var(--ink); border-radius: var(--pill); padding: 14px 20px;
  font-weight: 900; font-size: 15px; box-shadow: 0 18px 44px -14px rgba(255,214,10,.55); animation: toastIn .25s ease;
  transition: transform .14s ease, box-shadow .2s ease; }
.cart-fab:hover { transform: translateX(-50%) translateY(-2px); }
.cart-fab:active { transform: translateX(-50%) scale(.99); }
.cart-fab-l { display: inline-flex; align-items: center; gap: 9px; }
.cart-fab-r { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 19px; }
.cart-fab-badge { background: var(--ink); color: var(--accent); min-width: 24px; height: 24px; border-radius: 12px;
  display: inline-grid; place-items: center; font-size: 13px; font-weight: 900; padding: 0 6px; }

/* Resumo dos itens no checkout */
.co-summary { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px; margin-bottom: 16px; }
.co-sum-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13.5px; font-weight: 700; padding: 5px 0; }
.co-sum-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.co-sum-row em { font-style: normal; color: var(--dim); font-weight: 600; }

/* Cupom */
.co-coupon { display: flex; gap: 8px; }
.co-coupon input { flex: 1; min-width: 0; }
.co-coupon .btn { padding: 0 18px; font-size: 14px; flex: none; }
.co-coupon-msg { font-size: 12.5px; font-weight: 700; color: #ff8a95; margin: 6px 0 0; }
.co-coupon-msg.ok { color: #4ed98b; }

/* ============================================================
   RESPONSIVO — LOJA (mobile = prioridade)
   ============================================================ */
.lbl-wide { display: inline; }
@media (max-width: 640px) {
  .shell { padding: 0 15px; }
  .hdr-in { height: 60px; gap: 10px; }
  .brand-name { font-size: 18px; }
  .lbl-wide { display: none; }
  .hdr .btn-wa { padding: 11px 13px; }
  .hdr-actions { gap: 7px; }
  .hdr-actions .icon-btn { width: 40px; height: 40px; }
  .hdr-in { gap: 8px; }
  .brand-name { font-size: 19px; }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pname { font-size: 16px; }
  .pprice { font-size: 19px; }
  .pbody { padding: 12px 12px 14px; gap: 7px; }
  .padd { width: 44px; height: 44px; }
  .pflavor-row .fchip:nth-child(2) { display: none; }
  .sec, .sec-sm { padding: 34px 0; }
  .hero { padding: 22px 0 6px; }
  .hero h1 { -webkit-text-stroke-width: 2px; text-shadow: 3px 4px 0 var(--ink); margin-top: 14px !important; }
  .hero-grid { gap: 0; }
  /* slot de foto vazio só atrapalha no mobile — escondemos */
  .hero-stage { display: none; }
  .hero-float, .hero-spark { display: none; }
  /* logo da marca em destaque, centralizado no topo */
  .hero-logo-m { display: block; width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 14px; background: #000;
    box-shadow: 0 0 0 3px var(--accent), 0 12px 30px -10px rgba(0,0,0,.7); }
  .hero .eyebrow { justify-content: center; }
  .hero h1 { text-align: center; }
  .hero-sub { margin: 14px auto 18px; text-align: center; }
  .hero-ctas { gap: 10px; justify-content: center; }
  .hero-ctas .btn { flex: 1; }
  .trust-row { justify-content: center; }
  .trust { font-size: 12.5px; padding: 8px 12px; }
  .promo-band { grid-template-columns: 1fr; align-items: flex-start; padding: 28px 22px; }
  .promo-benefits { grid-template-columns: 1fr; gap: 8px; }
  .promo-deco { font-size: 120px; top: -10px; }
  .drawer { width: 100%; }
  .fpick { font-size: 12.5px; padding: 9px 13px; }
  .pdp-name { font-size: 34px; }
  .pdp-price { font-size: 38px; }
  .sortbar { display: none; }
  .ftr { padding: 40px 0 28px; }
}
@media (max-width: 360px) { .grid-products { grid-template-columns: 1fr; } }
/* Evita o ZOOM automático do iOS ao focar campos (busca, checkout): >= 16px */
@media (max-width: 860px) {
  input:not([type="range"]), select, textarea { font-size: 16px !important; }
}

/* ============================================================
   RESPONSIVO — ADMIN
   ============================================================ */
.adm-burger { display: none; width: 42px; height: 42px; border-radius: 11px; background: var(--bg-2);
  border: 1px solid var(--line); align-items: center; justify-content: center; }
.adm-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 55; backdrop-filter: blur(2px); }
@media (max-width: 860px) {
  .adm-side { position: fixed; left: -280px; top: 0; height: 100vh; z-index: 60; width: 270px;
    transition: left .25s cubic-bezier(.2,.8,.2,1); box-shadow: 0 0 60px rgba(0,0,0,.6); }
  .adm-side.open { left: 0; }
  .adm-burger { display: inline-flex; }
  .adm-top { padding: 14px 16px; gap: 12px; }
  .adm-top h1 { font-size: 23px; }
  .adm-top .sub { font-size: 12px; }
  .adm-body { padding: 18px 16px 60px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kpi { padding: 16px; }
  .kpi .k-val { font-size: 26px; }
  .adm-cols { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .adm-top .btn span.lbl-wide { display: none; }
  .kpi .k-val { font-size: 23px; }
}
