/* ============================================================
   AmoVôlei — Loja CSS
   /assets/css/loja.css
   ============================================================ */

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

:root {
  --orange:   #FF5722;
  --orange-d: #E64A19;
  --orange-bg:#FFF3EF;
  --navy:     #0F172A;
  --navy2:    #1E293B;
  --slate:    #334155;
  --muted:    #64748B;
  --border:   #E2E8F0;
  --bg:       #F8FAFC;
  --white:    #FFFFFF;
  --green:    #10B981;
  --red:      #EF4444;
  --font-d:   'Syne', sans-serif;
  --font-b:   'DM Sans', sans-serif;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(0,0,0,.07);
  --shadow-h: 0 8px 40px rgba(0,0,0,.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--navy);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BARRA TOPO ── */
.barra-topo {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
  padding: 8px 0;
}
.barra-topo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.barra-topo-right { display: flex; gap: 12px; }
.barra-topo a { color: rgba(255,255,255,.7); transition: color .2s; }
.barra-topo a:hover { color: var(--orange); }

/* ── HEADER ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}

/* Logo */
.logo-text {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}
.logo-text span { color: var(--orange); }
.logo-footer .logo-text { color: white; }
.logo-img { height: 42px; width: auto; }

/* Busca */
.busca-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.busca-form:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,87,34,.1);
}
.busca-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--navy);
  background: transparent;
}
.busca-btn {
  background: var(--orange);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  transition: background .2s;
}
.busca-btn:hover { background: var(--orange-d); }

/* Ações header */
.header-acoes { display: flex; align-items: center; gap: 4px; }
.header-acao {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--slate);
  transition: background .15s, color .15s;
}
.header-acao:hover { background: var(--bg); color: var(--orange); }
.header-acao-label { font-size: 10px; }
.carrinho-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

/* Nav */
.nav { border-top: 1px solid var(--border); background: var(--white); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px 0;
}
.nav-link {
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--slate);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--bg); color: var(--navy); }
.nav-link-dest { color: var(--orange); }

/* ── SEÇÃO HERO ── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,.9) 0%, rgba(15,23,42,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 60px 0;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero-titulo {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-titulo span { color: var(--orange); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primario {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: white;
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .1s;
  border: none;
  cursor: pointer;
}
.btn-primario:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-secundario {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.btn-secundario:hover { border-color: white; background: rgba(255,255,255,.08); }

/* Banners slider dots */
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: .2s; border: none; }
.hero-dot.ativo { width: 24px; border-radius: 4px; background: var(--orange); }

/* ── SEÇÃO GENÉRICA ── */
.secao { padding: 64px 0; }
.secao-titulo {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}
.secao-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.secao-ver-todos {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.secao-ver-todos:hover { text-decoration: underline; }

/* ── GRID DE PRODUTOS ── */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Card produto */
.card-produto {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card-produto:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-3px);
}
.card-produto-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg);
  overflow: hidden;
}
.card-produto-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card-produto:hover .card-produto-img { transform: scale(1.05); }
.card-produto-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge-prod {
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-desc   { background: var(--orange); color: white; }
.badge-novo   { background: var(--navy);   color: white; }
.badge-dest   { background: #F59E0B;        color: white; }
.card-produto-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: .2s;
  color: var(--muted);
}
.card-produto-fav:hover { color: var(--orange); transform: scale(1.1); }
.card-produto-fav.ativo { color: var(--orange); }
.card-produto-fav svg { width: 16px; height: 16px; }

.card-produto-corpo { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.card-produto-marca { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.card-produto-nome {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  flex: 1;
}
.card-produto-preco { margin-bottom: 10px; }
.card-produto-preco-de {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}
.card-produto-preco-por {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.card-produto-preco-por.em-promo { color: var(--orange); }
.card-produto-avaliacao {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.stars { color: #F59E0B; letter-spacing: -1px; }
.btn-card {
  width: 100%;
  padding: 10px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-card:hover { background: var(--orange); }

/* ── CATEGORIAS ── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 14px;
}
.cat-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s, transform .2s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cat-card:hover {
  border-color: var(--orange);
  background: var(--orange-bg);
  transform: translateY(-2px);
}
.cat-icon { font-size: 32px; }
.cat-nome { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ── BANNER SECUNDÁRIO ── */
.banner-sec {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
  position: relative;
}
.banner-sec-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-sec-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--orange); text-transform: uppercase; margin-bottom: 8px; }
.banner-sec-titulo { font-family: var(--font-d); font-size: 28px; font-weight: 800; color: white; line-height: 1.1; margin-bottom: 12px; }
.banner-sec-img { object-fit: cover; width: 100%; height: 100%; }

/* ── DEPOIMENTOS ── */
.depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.depoimento-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.depoimento-stars { color: #F59E0B; margin-bottom: 10px; font-size: 14px; }
.depoimento-texto { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.depoimento-autor { font-size: 13px; font-weight: 600; }

/* ── PÁGINA CATEGORIA / BUSCA ── */
.loja-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 40px 0; }
.filtros-sidebar { position: sticky; top: 90px; height: fit-content; }
.filtros-grupo { margin-bottom: 28px; }
.filtros-titulo { font-family: var(--font-d); font-size: 13px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.filtros-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13.5px; cursor: pointer; }
.filtros-item input { accent-color: var(--orange); }
.filtros-preco { display: flex; gap: 8px; }
.filtros-preco input { width: 100%; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; outline: none; }
.filtros-preco input:focus { border-color: var(--orange); }

.loja-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.loja-total { font-size: 14px; color: var(--muted); }
.loja-ordenar { margin-left: auto; padding: 8px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; outline: none; }
.loja-ordenar:focus { border-color: var(--orange); }

/* ── PÁGINA PRODUTO ── */
.produto-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 0; }
.galeria { display: flex; flex-direction: column; gap: 12px; }
.galeria-principal {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}
.galeria-principal img { width: 100%; height: 100%; object-fit: cover; }
.galeria-thumbs { display: flex; gap: 8px; }
.galeria-thumb {
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  background: var(--bg);
}
.galeria-thumb.ativo { border-color: var(--orange); }
.galeria-thumb img { width: 100%; height: 100%; object-fit: cover; }

.produto-info { display: flex; flex-direction: column; gap: 20px; }
.produto-marca { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.produto-nome { font-family: var(--font-d); font-size: clamp(22px,3vw,32px); font-weight: 800; line-height: 1.1; }
.produto-avaliacao { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.produto-preco-de { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.produto-preco-por { font-family: var(--font-d); font-size: 36px; font-weight: 800; color: var(--orange); }
.produto-parcelado { font-size: 13px; color: var(--muted); margin-top: 2px; }
.produto-pix { background: var(--orange-bg); border-radius: 8px; padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--orange-d); }

.variacoes-grupo { display: flex; flex-direction: column; gap: 10px; }
.variacoes-titulo { font-size: 13px; font-weight: 600; }
.variacoes-opcoes { display: flex; gap: 8px; flex-wrap: wrap; }
.var-opcao {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  cursor: pointer;
  transition: .15s;
  background: white;
}
.var-opcao:hover   { border-color: var(--orange); color: var(--orange); }
.var-opcao.ativo   { border-color: var(--orange); background: var(--orange); color: white; font-weight: 600; }
.var-opcao.esgot   { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.var-cor {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .15s;
  outline-offset: 3px;
}
.var-cor.ativo   { outline: 2px solid var(--orange); }

.add-carrinho-wrap { display: flex; gap: 12px; }
.qty-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 48px;
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--slate);
  transition: background .15s;
}
.qty-btn:hover { background: var(--bg); }
.qty-num { width: 44px; text-align: center; font-size: 15px; font-weight: 600; border: none; outline: none; }
.btn-add-carrinho {
  flex: 1;
  padding: 14px 24px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s, transform .1s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-carrinho:hover { background: var(--orange-d); }
.btn-add-carrinho:active { transform: scale(.98); }

.produto-frete-calc { border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.produto-frete-titulo { font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.frete-form { display: flex; gap: 8px; }
.frete-cep { flex: 1; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; outline: none; }
.frete-cep:focus { border-color: var(--orange); }
.frete-btn {
  padding: 9px 16px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
}
.frete-btn:hover { background: var(--orange); }
.frete-resultado { margin-top: 10px; font-size: 13px; }

/* Abas do produto */
.produto-abas { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-top: 48px; }
.produto-aba {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.produto-aba.ativo { color: var(--orange); border-bottom-color: var(--orange); }
.produto-aba-content { padding: 28px 0; display: none; }
.produto-aba-content.ativo { display: block; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.blog-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: box-shadow .2s; }
.blog-card:hover { box-shadow: var(--shadow-h); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-corpo { padding: 20px; }
.blog-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 6px; }
.blog-card-titulo { font-family: var(--font-d); font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.blog-card-data { font-size: 12px; color: var(--muted); }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.newsletter-titulo { font-family: var(--font-d); font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
.newsletter-sub { color: rgba(255,255,255,.6); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; border-radius: 50px; overflow: hidden; }
.newsletter-input {
  flex: 1; padding: 14px 20px;
  border: none; outline: none;
  font-size: 14px; font-family: var(--font-b);
}
.newsletter-btn {
  padding: 14px 24px;
  background: var(--orange); color: white;
  border: none; cursor: pointer;
  font-family: var(--font-d);
  font-weight: 700; font-size: 14px;
  transition: background .2s;
}
.newsletter-btn:hover { background: var(--orange-d); }

/* ── FOOTER ── */
.footer { background: var(--navy2); color: rgba(255,255,255,.65); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col-brand p { line-height: 1.7; font-size: 13.5px; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .15s, color .15s;
}
.social-icon:hover { background: var(--orange); color: white; }
.footer-pagamentos { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.footer-pagamentos span {
  padding: 4px 8px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); margin-left: 4px; }
.footer-bottom a:hover { color: var(--orange); }

/* ── CARRINHO MINI (drawer) ── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-overlay.aberto { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; right: 0; width: 380px; max-width: 95vw; height: 100vh;
  background: white; z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.drawer.aberto { transform: translateX(0); }
.drawer-header {
  padding: 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.drawer-titulo { font-family: var(--font-d); font-size: 16px; font-weight: 700; flex: 1; }
.drawer-fechar { background: none; border: none; cursor: pointer; padding: 4px; color: var(--muted); }
.drawer-itens { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.drawer-item { display: flex; gap: 12px; padding: 12px; border: 1px solid var(--border); border-radius: 10px; }
.drawer-item-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; background: var(--bg); flex-shrink: 0; }
.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-nome { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.drawer-item-var  { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.drawer-item-preco { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--orange); }
.drawer-foot { padding: 16px; border-top: 1px solid var(--border); }
.drawer-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.btn-checkout { width: 100%; padding: 14px; background: var(--orange); color: white; border: none; border-radius: 10px; font-family: var(--font-d); font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-checkout:hover { background: var(--orange-d); }

/* ── PAGINAÇÃO ── */
.paginacao { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pag-item {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  transition: .15s;
}
.pag-item:hover   { border-color: var(--orange); color: var(--orange); }
.pag-item.ativo   { background: var(--orange); border-color: var(--orange); color: white; font-weight: 700; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; padding: 16px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { opacity: .4; }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn .3s ease;
  max-width: 320px;
}
.toast.sucesso { border-left: 3px solid var(--green); }
.toast.erro    { border-left: 3px solid var(--red); }
@keyframes toastIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .loja-layout { grid-template-columns: 200px 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .produto-layout { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .barra-topo-right { display: none; }
  .busca-form { display: none; }
  .hamburger  { display: flex; }
  .nav { display: none; }
  .nav.aberto { display: block; }
  .nav-inner  { flex-direction: column; padding: 12px 0; }
  .nav-link   { padding: 10px 16px; }
  .loja-layout { grid-template-columns: 1fr; }
  .filtros-sidebar { position: static; }
  .produto-layout  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .banner-sec { grid-template-columns: 1fr; }
  .banner-sec-img { display: none; }
  .hero-content { padding: 40px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-titulo { font-size: 32px; }
}
