/* ===== Tamanduá Gigante — Loja TG =====
   Faithful static port of the "Loja TG" design prototype.
   Colors: bg #0e1220 · panel #151a28 · card #1b2133 · border #232a3d
           border-2 #3a4358 · text #f2f4f8 · muted #c9cfdd / #8b93a7 / #5d6579
           accent #ffd23f (yellow) · accent-hover #ffdd6b */

:root {
  --bg:#0e1220; --panel:#151a28; --card:#1b2133;
  --border:#232a3d; --border2:#3a4358;
  --text:#f2f4f8; --muted:#c9cfdd; --muted2:#8b93a7; --muted3:#5d6579;
  --accent:#ffd23f; --accent-h:#ffdd6b; --danger:#ff6b6b;
}

* { box-sizing:border-box; }
html, body { margin:0; padding:0; background:var(--bg); }
body { color:var(--text); font-family:'Space Grotesk',sans-serif; min-height:100vh; }
::selection { background:var(--accent); color:var(--bg); }
img { max-width:100%; }
input::placeholder { color:var(--muted3); }
a { color:inherit; }

.wrap { max-width:1280px; margin:0 auto; padding:0 24px; }
.font-archivo { font-family:'Archivo',sans-serif; }
.pointer { cursor:pointer; }

@keyframes tg-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes tg-fade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }

/* ---------- hover utilities (replace prototype style-hover) ---------- */
.h-nav { transition:background .15s; }
.h-nav:hover { background:var(--border); }

.btn-yellow { background:var(--accent); color:var(--bg); transition:background .15s; }
.btn-yellow:hover { background:var(--accent-h); }

.card { transition:border-color .15s; }
.card:hover { border-color:var(--border2); }
.card-accent { transition:border-color .15s; }
.card-accent:hover { border-color:var(--accent); }

.btn-outline { transition:border-color .15s, color .15s; }
.btn-outline:hover { border-color:var(--accent); color:var(--accent); }

.quick-add { transition:all .15s; }
.quick-add:hover { background:var(--accent); color:var(--bg); border-color:var(--accent); }

.link-y { transition:color .15s; }
.link-y:hover { color:var(--accent); }

.remove-x { transition:color .15s; }
.remove-x:hover { color:var(--danger); }

.qty-btn { transition:color .15s; }
.qty-btn:hover { color:var(--accent); }

.insta:hover img { opacity:.8; }

/* announcement bar */
.announce { background:var(--accent); color:var(--bg); overflow:hidden; white-space:nowrap;
  font-weight:700; font-size:13px; letter-spacing:.08em; text-transform:uppercase; padding:8px 0; }
.announce-track { display:inline-flex; gap:48px; animation:tg-marquee 22s linear infinite; padding-left:24px; }

/* header */
header.site { position:sticky; top:0; z-index:60; background:#151a28ee; backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
.header-inner { height:72px; display:flex; align-items:center; gap:28px; }
.logo { height:46px; display:block; filter:drop-shadow(0 1px 0 #ffffff66) drop-shadow(0 0 6px #ffffff22); }
nav.main { display:flex; align-items:center; gap:4px; flex:1; }
.nav-link { padding:10px 14px; font-weight:700; font-size:14px; cursor:pointer; border-radius:8px; display:flex; align-items:center; gap:6px; }
.nav-caret { font-size:10px; color:var(--muted2); }
.search { background:var(--bg); border:1px solid var(--border); color:var(--text); border-radius:999px;
  padding:9px 18px; font-size:14px; width:190px; outline:none; font-family:'Space Grotesk',sans-serif; }
.cart-btn { position:relative; border-radius:999px; padding:9px 18px; font-weight:700; font-size:14px; cursor:pointer; display:flex; align-items:center; gap:8px; }
.conta-link { transition:background .15s; }
.conta-link:hover { background:var(--border); }
.cart-badge { background:var(--bg); color:var(--accent); border-radius:999px; min-width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center; font-size:12px; padding:0 6px; }

/* mega menu */
.mega { position:absolute; left:0; right:0; top:72px; background:var(--panel); border-bottom:1px solid var(--border); box-shadow:0 24px 48px #00000088; animation:tg-fade .18s ease; }
.mega-help { position:absolute; right:0; left:0; top:72px; background:transparent; }

/* generic section titles */
.sec-title { font-family:'Archivo',sans-serif; font-weight:900; text-transform:uppercase; margin:0; }
.eyebrow { font-weight:700; font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted2); }

/* product card */
.pcard { background:var(--panel); border:1px solid var(--border); border-radius:16px; overflow:hidden; display:flex; flex-direction:column; }
.pcard-img { position:relative; cursor:pointer; aspect-ratio:1; background:var(--card); }
.pcard-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.promo-tag { position:absolute; top:10px; left:10px; background:var(--accent); color:var(--bg); font-weight:700; font-size:11px; letter-spacing:.08em; text-transform:uppercase; border-radius:999px; padding:4px 10px; }

/* grids */
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }

/* footer */
footer.site { background:var(--panel); border-top:1px solid var(--border); }

/* cart drawer */
.drawer-overlay { position:fixed; inset:0; z-index:100; }
.drawer-scrim { position:absolute; inset:0; background:#0e1220bb; backdrop-filter:blur(3px); }
.drawer { position:absolute; top:0; right:0; bottom:0; width:420px; max-width:100vw; background:var(--panel);
  border-left:1px solid var(--border); display:flex; flex-direction:column; box-shadow:-24px 0 64px #00000088;
  animation:drawer-in .28s cubic-bezier(.2,.8,.2,1); }
@keyframes drawer-in { from { transform:translateX(40px); opacity:.4; } to { transform:none; opacity:1; } }

/* páginas institucionais/legais */
.pagina-conteudo { color:var(--muted); font-size:15px; line-height:1.7; }
.pagina-conteudo h2 { font-family:'Archivo',sans-serif; font-weight:700; font-size:19px; color:var(--text); margin:28px 0 8px; }
.pagina-conteudo p { margin:0 0 14px; }
.pagina-conteudo ul { margin:0 0 14px; padding-left:20px; }
.pagina-conteudo li { margin:6px 0; }
.pagina-conteudo a { color:var(--accent); }
.pagina-conteudo strong { color:var(--text); }

/* botão flutuante de WhatsApp */
.wa-float { position:fixed; right:20px; bottom:20px; z-index:95; width:56px; height:56px; border-radius:50%;
  background:#25d366; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 24px #00000066;
  text-decoration:none; transition:transform .15s; }
.wa-float:hover { transform:scale(1.08); }
.wa-float svg { width:30px; height:30px; fill:#fff; }
@media (max-width:600px) { .wa-float { right:16px; bottom:16px; width:52px; height:52px; } .wa-float svg { width:28px; height:28px; } }

/* banner de cookies (LGPD) */
.cookie-bar { position:fixed; left:0; right:0; bottom:0; z-index:100; background:var(--panel);
  border-top:1px solid var(--border); padding:14px 20px; display:flex; align-items:center; gap:16px;
  flex-wrap:wrap; justify-content:center; box-shadow:0 -8px 32px #00000055; }
.cookie-bar[hidden] { display:none; }   /* sem isto, o display:flex acima anula o atributo hidden */
.cookie-bar p { margin:0; font-size:13px; color:var(--muted); max-width:640px; }
.cookie-bar a { color:var(--accent); }
.cookie-bar button { background:var(--accent); color:var(--bg); border:none; border-radius:999px;
  padding:9px 20px; font-weight:700; font-size:13px; cursor:pointer; font-family:inherit; white-space:nowrap; }

/* toast */
.toast { position:fixed; bottom:24px; left:50%; transform:translateX(-50%); z-index:110; background:var(--accent);
  color:var(--bg); font-weight:700; font-size:14px; padding:12px 24px; border-radius:999px; box-shadow:0 12px 32px #00000088;
  animation:tg-fade .2s ease; }

/* product page — color swatches */
.swatch-grid { display:flex; flex-wrap:wrap; gap:8px; align-items:center; max-width:420px; }
.swatch { position:relative; display:inline-flex; cursor:pointer; }
.swatch[hidden] { display:none; }                /* cores extras recolhidas (display anula hidden) */
.swatch input { position:absolute; opacity:0; width:0; height:0; }
.swatch-dot { width:30px; height:30px; border-radius:50%; border:2px solid var(--border2);
  box-shadow:inset 0 0 0 2px var(--bg); transition:border-color .15s, transform .15s; display:block; }
.swatch:hover .swatch-dot { transform:scale(1.12); }
.swatch input:checked + .swatch-dot { border-color:var(--accent); transform:scale(1.12); }
.swatch input:focus-visible + .swatch-dot { outline:2px solid var(--accent); outline-offset:2px; }
.swatch-mais { background:none; border:1px dashed var(--border2); border-radius:999px;
  color:var(--muted2); font:700 12px 'Space Grotesk',sans-serif; padding:7px 14px; cursor:pointer;
  transition:border-color .15s, color .15s; }
.swatch-mais:hover { border-color:var(--accent); color:var(--accent); }

/* product page — versões da estampa (mesma arte, tipos diferentes) */
.versoes-lista { display:flex; flex-wrap:wrap; gap:8px; align-items:stretch; }
.versao-atual, .versao-link { display:inline-flex; align-items:center; gap:8px;
  border-radius:12px; padding:9px 14px; font-size:13px; font-weight:700; text-decoration:none; }
.versao-atual { background:rgba(255,210,63,.1); border:1px solid var(--accent); color:var(--accent); cursor:default; }
.versao-atual .v-check { font-size:12px; }
.versao-link { background:var(--card); border:1px solid var(--border2); color:var(--text);
  transition:border-color .15s, transform .15s, background .15s; }
.versao-link:hover { border-color:var(--accent); background:#20283c; transform:translateY(-1px); }
.versao-link .v-preco { color:var(--muted2); font-weight:500; font-size:12px; }
.versao-link .v-seta { color:var(--accent); transition:transform .15s; }
.versao-link:hover .v-seta { transform:translateX(3px); }

/* product page — seção rica de diferenciação do tipo */
.tipo-secao { margin-top:56px; border-top:1px solid var(--border); padding-top:44px; }
.tipo-secao-head { max-width:760px; }
.tipo-secao-desc { margin:14px 0 0; font-size:16px; line-height:1.65; color:var(--muted); text-wrap:pretty; }
.tipo-secao-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start; margin-top:28px; }
.tipo-secao-grid.sem-midia { grid-template-columns:1fr; }
.tipo-midia { border-radius:16px; overflow:hidden; background:var(--card); border:1px solid var(--border); aspect-ratio:4/3; }
.tipo-midia img, .tipo-midia video, .tipo-midia iframe { width:100%; height:100%; object-fit:cover; display:block; border:0; }
.tipo-destaques { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.tipo-secao-grid.sem-midia .tipo-destaques { grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); }
.tipo-destaque { display:flex; gap:13px; align-items:flex-start; background:var(--card); border:1px solid var(--border);
  border-radius:14px; padding:16px; }
.td-ic { flex-shrink:0; width:44px; height:44px; border-radius:11px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,210,63,.1); color:var(--accent); }
.td-titulo { font-weight:700; font-size:14.5px; color:var(--text); }
.td-texto { font-size:13px; line-height:1.55; color:var(--muted2); margin-top:3px; text-wrap:pretty; }
.tipo-secao-versoes { display:flex; flex-wrap:wrap; align-items:center; gap:8px 14px; margin-top:26px;
  font-size:13.5px; color:var(--muted2); }
.tipo-secao-versoes .tsv-atual { color:var(--accent); font-weight:700; }
.tipo-secao-versoes a { color:var(--text); font-weight:700; text-decoration:none; border-bottom:1px solid var(--border2); }
.tipo-secao-versoes a:hover { color:var(--accent); border-color:var(--accent); }
@media (max-width:820px){
  .tipo-secao-grid { grid-template-columns:1fr; }
  .tipo-destaques { grid-template-columns:1fr 1fr; }
}
@media (max-width:520px){ .tipo-destaques { grid-template-columns:1fr; } }

/* product page — size options */
.size-opt { position:relative; display:inline-flex; cursor:pointer; }
.size-opt input { position:absolute; opacity:0; width:0; height:0; }
.size-opt span { min-width:52px; min-height:44px; text-align:center; padding:0 14px; border-radius:10px;
  font-weight:700; font-size:14px; border:1px solid var(--border2); color:var(--text);
  transition:all .15s; display:inline-flex; align-items:center; justify-content:center; }
.size-opt input:checked + span { border-color:var(--accent); color:var(--bg); background:var(--accent); }
.size-opt input:focus-visible + span { outline:2px solid var(--accent); outline-offset:2px; }

/* number input — hide spinners for a cleaner stepper */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance:none; margin:0; }
.qty-input { -moz-appearance:textfield; }

/* ============================================================
   RESPONSIVO / MOBILE  (guia ui-ux-pro-max §1 §2 §5 §9)
   Estratégia mobile-first: base cobre telas pequenas,
   media queries adicionam conforto em telas maiores.
   ============================================================ */

/* base: evita zoom automático do iOS e scroll horizontal acidental */
html { -webkit-text-size-adjust:100%; text-size-adjust:100%; }
body { overflow-x:hidden; }
img, svg, video { max-width:100%; height:auto; }
/* §5 títulos nunca transbordam: quebram em vez de estourar a largura */
h1, h2, h3, .sec-title, .hero h1 { overflow-wrap:break-word; }
/* scrim inferior do hero: só aparece no mobile (banner vertical) */
.hero-scrim-mobile { display:none; }

/* §2 conforto de toque: sem highlight cinza, tap sem atraso de 300ms */
a, button, .pointer, input, select, label { -webkit-tap-highlight-color:transparent; }
a, button, .pointer { touch-action:manipulation; }

/* §1 foco visível em teclado (não remove — só para :focus-visible) */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, .pointer:focus-visible {
  outline:2px solid var(--accent); outline-offset:2px; border-radius:4px;
}

/* safe-area: respeita notch/ilha em paisagem */
.wrap { padding-left:max(24px, env(safe-area-inset-left)); padding-right:max(24px, env(safe-area-inset-right)); }
.drawer { padding-bottom:env(safe-area-inset-bottom); }

/* ---------- hambúrguer (oculto no desktop) ---------- */
.menu-toggle {
  display:none; width:44px; height:44px; flex-shrink:0; padding:11px;
  background:none; border:none; cursor:pointer;
  flex-direction:column; justify-content:center; gap:5px;
}
.menu-toggle span { display:block; height:2px; width:100%; background:#f2f4f8; border-radius:2px; transition:transform .25s, opacity .2s; }
body.menu-open .menu-toggle span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity:0; }
body.menu-open .menu-toggle span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ---------- menu off-canvas ---------- */
.mobile-menu-overlay { position:fixed; inset:0; z-index:90; }
.mobile-menu-scrim { position:absolute; inset:0; background:#0e1220cc; backdrop-filter:blur(3px); }
.mobile-menu {
  position:absolute; top:0; left:0; bottom:0; width:min(330px, 86vw);
  background:var(--panel); border-right:1px solid var(--border);
  display:flex; flex-direction:column; gap:2px; overflow-y:auto;
  padding:14px 14px calc(20px + env(safe-area-inset-bottom));
  padding-left:max(14px, env(safe-area-inset-left));
  box-shadow:24px 0 64px #00000088;
  animation:mm-in .26s cubic-bezier(.2,.8,.2,1);
}
@keyframes mm-in { from { transform:translateX(-32px); opacity:.3; } to { transform:none; opacity:1; } }
.mobile-menu-head { display:flex; justify-content:space-between; align-items:center; padding:4px 6px 10px; }
.mm-close { background:none; border:none; color:var(--muted2); font-size:26px; line-height:1; cursor:pointer; width:44px; height:44px; }
.mobile-search { margin:0 0 10px; }
.mobile-search .search { width:100%; box-sizing:border-box; }
.mm-link { display:flex; align-items:center; min-height:48px; padding:12px; border-radius:10px; font-weight:700; font-size:15px; color:var(--text); text-decoration:none; }
.mm-accent { color:var(--accent); }
.mm-section-title { font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted2); padding:16px 12px 6px; }
.mm-sub { display:flex; align-items:center; justify-content:space-between; gap:8px; min-height:44px; padding:10px 12px; border-radius:9px; font-size:14px; color:var(--muted); text-decoration:none; }
.mm-link:hover, .mm-sub:hover { background:var(--card); }
/* nunca deixa o menu mobile aberto no desktop */
@media (min-width:1025px) { .mobile-menu-overlay { display:none !important; } }

/* ---------- BREAKPOINT ≤1024 (tablet / mobile) ---------- */
@media (max-width:1024px) {
  .menu-toggle { display:flex; }
  nav.main { display:none; }
  .logo-link { margin-right:auto; }           /* empurra carrinho/busca para a direita */
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .produto-grid { grid-template-columns:1fr !important; }
  .produto-grid > div:first-child { position:static !important; }
  .checkout-grid { grid-template-columns:1fr !important; }
  .footer-cols { grid-template-columns:repeat(2,1fr) !important; }
  .hero { height:clamp(420px, 60vh, 520px) !important; }
  .hero h1 { font-size:clamp(34px, 7vw, 52px) !important; }
  .promo-title { font-size:clamp(26px, 5vw, 40px) !important; }
  .promo-band-inner { padding:0 clamp(24px, 5vw, 56px) !important; }
}

/* ---------- BREAKPOINT ≤860 (mobile grande) ---------- */
@media (max-width:860px) {
  .catalog-layout { grid-template-columns:1fr !important; }
  .catalog-filters { position:static !important; }
  .sec-title { font-size:clamp(22px, 6vw, 30px) !important; }
  section.wrap, .wrap > section { padding-top:36px !important; padding-bottom:36px !important; }
}

/* ---------- BREAKPOINT ≤600 (celular) ---------- */
@media (max-width:600px) {
  .grid-3, .grid-4 { grid-template-columns:repeat(2,1fr); gap:12px; }
  .insta-grid { grid-template-columns:repeat(3,1fr) !important; }
  .footer-cols { grid-template-columns:1fr !important; }
  .drawer { width:100vw !important; }
  /* busca vai para o menu mobile; libera espaço no header */
  .header-inner form[data-stop] { display:none; }
  .conta-link .conta-texto { display:none; }   /* só o ícone no mobile */
  .header-inner { gap:14px; }
  .header-inner .logo { height:38px; }        /* logo mais compacto p/ caber com o carrinho */
  .cart-btn { padding:8px 14px; font-size:13px; min-height:44px; }
  .promo-band-inner { padding:0 24px !important; }

  /* ----- HERO MOBILE: banner vertical + texto ancorado no rodapé ----- */
  /* imagem ocupa 100% da largura com altura natural (aspecto 820x1000):
     nunca corta os lados → o título do topo-direito aparece inteiro.
     Excesso/sobra fica no rodapé, coberto pelo scrim e pelo texto. */
  .hero { height:auto !important; background:#0e1220 !important; }
  .hero-slide {
    top:0 !important; left:0 !important; right:auto !important; bottom:auto !important;
    width:100% !important; height:auto !important; object-fit:contain !important;
  }
  .hero-grad-h, .hero-grad-v { display:none; }             /* gradientes de desktop saem */
  .hero-scrim-mobile {                                      /* escurece o rodapé p/ leitura */
    display:block;
    background:linear-gradient(to top, #0e1220 3%, #0e1220ec 22%, #0e1220a6 42%, #0e12203d 60%, transparent 76%);
  }
  /* min-height no próprio flex container p/ o flex-end ter espaço */
  .hero-inner {
    min-height:70vh; min-height:74svh;
    justify-content:flex-end !important;
    padding-bottom:84px !important;
  }
  .hero-inner > div { max-width:100%; }                    /* copy ocupa a largura toda */
  .hero h1 { font-size:clamp(30px, 8.5vw, 46px) !important; margin-top:12px !important; }
  .hero-copy p { font-size:15px !important; margin:14px 0 20px !important; }
  .hero-copy .btn-yellow, .hero-copy .btn-outline { padding:13px 22px !important; font-size:14px !important; }

  /* §2 alvos de toque ≥44px · setas sobem p/ não colidir com o texto do rodapé */
  .hero-prev, .hero-next { width:44px !important; height:44px !important; top:36% !important; }
}

/* ---------- BREAKPOINT ≤380 (celular pequeno) ---------- */
@media (max-width:380px) {
  .grid-3, .grid-4 { grid-template-columns:1fr; }
  .cart-btn { padding:9px 14px; }
}

/* §2 alvos de toque na página de produto (todas as telas de toque) */
@media (hover:none) {
  .swatch { padding:4px; }                     /* expande a área de toque do disco de cor */
  .size-opt span { min-height:44px; }
  .qty-btn { min-width:40px; min-height:40px; }
  .quick-add { min-height:44px; }
}

/* ===== Admin — layout com barra lateral ===== */
.admin-shell { display:flex; min-height:100vh; align-items:stretch; }

.admin-sidebar {
  width:242px; flex-shrink:0; background:var(--panel); border-right:1px solid var(--border);
  display:flex; flex-direction:column; position:sticky; top:0; height:100vh; overflow-y:auto; z-index:50;
}
.sb-brand { display:flex; align-items:center; justify-content:space-between; padding:20px 20px 14px; }
.sb-brand a { font-family:'Archivo',sans-serif; font-weight:900; font-size:19px; text-transform:uppercase;
  color:var(--accent); text-decoration:none; letter-spacing:.02em; }
.sb-close { display:none; background:none; border:none; color:var(--muted2); font-size:26px; line-height:1; cursor:pointer; }

.sb-nav { flex:1; padding:4px 12px 12px; display:flex; flex-direction:column; gap:2px; }
.sb-sector { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted3); padding:16px 12px 6px; }
.sb-link { display:flex; align-items:center; gap:11px; padding:10px 12px; border-radius:10px;
  color:var(--muted); text-decoration:none; font-size:14px; font-weight:600; transition:background .15s, color .15s; }
.sb-link svg { width:19px; height:19px; flex-shrink:0; }
.sb-link:hover { background:var(--card); color:var(--text); }
.sb-link.active { background:var(--card); color:var(--accent); box-shadow:inset 3px 0 0 var(--accent); }

.sb-foot { border-top:1px solid var(--border); padding:14px 16px; display:flex; align-items:center; justify-content:space-between; gap:8px; }
.sb-user { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted2); min-width:0; }
.sb-user svg { width:18px; height:18px; flex-shrink:0; }
.sb-user { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.sb-logout { display:inline-flex; align-items:center; gap:6px; border:1px solid var(--border2); border-radius:999px;
  padding:7px 12px; font-size:12px; font-weight:700; color:var(--text); text-decoration:none; flex-shrink:0; transition:border-color .15s, color .15s; }
.sb-logout svg { width:15px; height:15px; }
.sb-logout:hover { border-color:var(--accent); color:var(--accent); }

.admin-main { flex:1; min-width:0; display:flex; flex-direction:column; }
.admin-topbar { position:sticky; top:0; z-index:40; display:flex; align-items:center; gap:16px;
  padding:14px 24px; background:#151a28ee; backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
.admin-topbar-title { font-weight:700; font-size:15px; }
.admin-topbar .ver-loja { margin-left:auto; color:var(--muted2); text-decoration:none; font-size:13px; font-weight:700; transition:color .15s; }
.admin-topbar .ver-loja:hover { color:var(--accent); }
.sb-toggle { display:none; background:none; border:1px solid var(--border2); border-radius:8px;
  width:40px; height:40px; color:var(--text); cursor:pointer; font-size:18px; align-items:center; justify-content:center; }
.admin-content { padding:28px 32px 64px; max-width:1160px; width:100%; }

.sb-scrim { display:none; }

@media (max-width:900px) {
  .admin-sidebar { position:fixed; top:0; left:0; bottom:0; height:100dvh;
    transform:translateX(-100%); transition:transform .25s ease; }
  body.sb-open .admin-sidebar { transform:none; box-shadow:24px 0 64px #00000088; }
  .sb-close { display:block; }
  .sb-toggle { display:inline-flex; }
  .sb-scrim { position:fixed; inset:0; background:#0e1220cc; backdrop-filter:blur(2px); z-index:45; }
  body.sb-open .sb-scrim { display:block; }
  .admin-content { padding:20px 18px 48px; }
}

/* admin: campos de formulário */
.adm-in { background:var(--bg); border:1px solid var(--border); color:var(--text);
  border-radius:10px; padding:11px 14px; font-size:14px; font-family:inherit; }
.adm-in:focus { outline:none; border-color:var(--accent); }
textarea.adm-in { resize:vertical; }
input[type=file].adm-in { padding:8px; }
input[type=file].adm-in::file-selector-button { background:var(--accent); color:var(--bg);
  border:none; border-radius:8px; padding:7px 14px; font-weight:700; font-family:inherit; cursor:pointer; margin-right:10px; }
input[type=datetime-local].adm-in { color-scheme:dark; }
.adm-card { background:var(--panel); border:1px solid var(--border); border-radius:16px; padding:20px;
  display:flex; flex-direction:column; gap:16px; }
.adm-label { display:flex; flex-direction:column; gap:6px; font-size:13px; color:var(--muted2); }

/* §1 §7 respeita usuários com movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  .announce-track { animation:none !important; }
  .hero-pic { transition:none !important; }
}
