/* ETHOS — Base, layout e componentes globais */

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

/* color-scheme: dark faz o navegador pintar a tela de preto ANTES do CSS carregar.
   É o que elimina o "flash" branco ao trocar de página. */
html {
  background: #000;
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Transição suave entre páginas (Chrome / Brave / Edge) */
@view-transition { navigation: auto; }

::view-transition-old(root) { animation: sairPagina .18s ease both; }
::view-transition-new(root) { animation: entrarPagina .26s ease both; }
@keyframes sairPagina { to { opacity: 0; } }
@keyframes entrarPagina { from { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ---------- Lenis (rolagem suave) ----------
   CSS obrigatório da biblioteca. Sem ele o scroll-behavior nativo do html
   briga com o Lenis e a rolagem trava / fica aos solavancos. */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto !important; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--brand); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #333; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }

.eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Utilitários ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
.wrap-sm { width: 100%; max-width: var(--wrap-sm); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: var(--sp-8); }
.section-sm { padding-block: var(--sp-6); }
.center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
.section-head .link { font-size: var(--fs-sm); color: var(--text-2); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: var(--t); }
.section-head .link:hover { color: #fff; border-color: #fff; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }

.btn-primary { background: #fff; color: #000; }
.btn-primary:hover:not(:disabled) { background: var(--text-2); }

.btn-grad { background: var(--grad); color: #fff; background-size: 180% 180%; }
.btn-grad:hover:not(:disabled) { background-position: 100% 0; }

.btn-outline { border-color: var(--line); color: #fff; }
.btn-outline:hover:not(:disabled) { border-color: #fff; background: rgba(255,255,255,.05); }

.btn-ghost { color: var(--text-2); padding-inline: .6rem; }
.btn-ghost:hover { color: #fff; }

.btn-wa { background: #25d366; color: #04240f; }
.btn-wa:hover:not(:disabled) { background: #1fb757; }

.btn-block { width: 100%; }
.btn-sm { padding: .55rem 1rem; font-size: var(--fs-xs); }
.btn-lg { padding: 1.05rem 2.2rem; }

/* ---------- Formulários ---------- */
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field .hint { font-size: var(--fs-xs); color: var(--muted); }
.field .err { font-size: var(--fs-xs); color: var(--danger); }

.input, select.input, textarea.input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem .95rem;
  font-size: var(--fs-base);
  transition: var(--t);
}
.input::placeholder { color: #555; }
.input:focus { border-color: #fff; background: var(--surface-3); outline: none; }
textarea.input { resize: vertical; min-height: 110px; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; background-size: 16px; padding-right: 2.4rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 var(--sp-4); }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ---------- Barra de avisos ---------- */
.topbar {
  height: var(--bar-h);
  display: flex; align-items: center; justify-content: center;
  background: var(--grad);
  background-size: 200% 200%;
  animation: slide 9s linear infinite;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  padding-inline: var(--sp-4);
}
@keyframes slide { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: var(--sp-5); }

/* ---------- Marca "ethos" ---------- */
.logo { display: flex; align-items: center; flex-shrink: 0; margin-left: .75rem; }
@media (max-width: 1000px) { .logo { margin-left: .25rem; } }

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -.045em;
  line-height: 1;
  display: inline-block;
}
/* O "s" carrega o ponto vermelho no topo */
.logo-s { position: relative; display: inline-block; }
.logo-ponto {
  position: absolute;
  top: -.14em;
  right: -.12em;
  width: .26em;
  height: .26em;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(224, 30, 43, .55);
}
@media (max-width: 768px) { .logo-text { font-size: 1.55rem; } }

.nav { display: flex; align-items: center; gap: var(--sp-5); margin-left: auto; }
.nav a {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding-block: .4rem;
  transition: var(--t);
}
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--grad); transition: var(--t); }
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--sp-2); margin-left: var(--sp-4); }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  color: var(--text-2);
  position: relative;
  transition: var(--t);
}
.icon-btn:hover { color: #fff; background: var(--surface-2); }

/* ---------- Menu da conta (abre sobre a pagina, sem navegar) ---------- */
.acc-wrap { position: relative; }
.acc-pop {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 120;
  width: 250px; padding: var(--sp-4);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface-2); box-shadow: 0 18px 44px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.acc-pop.open { opacity: 1; visibility: visible; transform: none; }
.acc-pop .btn { margin-bottom: .45rem; }
.acc-pop-tit { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-md); margin-bottom: .15rem; }
.acc-pop-mail { font-size: var(--fs-xs); color: var(--muted); word-break: break-all; }
.acc-pop-sep { height: 1px; background: var(--line); margin-block: var(--sp-3); }
.acc-pop-item {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  padding: .55rem .6rem; border: 0; border-radius: var(--radius);
  background: none; text-align: left; cursor: pointer;
  font-size: var(--fs-sm); color: var(--text-2); transition: var(--t);
}
.acc-pop-item:hover { background: var(--surface-3); color: #fff; }
.acc-pop-item svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.7; flex-shrink: 0; }
.acc-pop-item.destaque { color: var(--brand-claro); font-weight: 600; }
.acc-pop-item.destaque:hover { background: rgba(224,30,43,.16); color: #fff; }
.acc-pop-item.sair { color: var(--muted); }
.acc-pop-item.sair:hover { color: var(--danger); background: rgba(224,30,43,.1); }

@media (max-width: 480px) { .acc-pop { width: min(250px, calc(100vw - 24px)); } }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.cart-count {
  position: absolute; top: 4px; right: 3px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--grad);
  border-radius: 99px;
  font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
  color: #fff;
}
.cart-count:empty, .cart-count[data-n="0"] { display: none; }

.burger { display: none; }

@media (max-width: 1000px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header-actions { margin-left: auto; }
}

/* ---------- Menu mobile ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--line-soft); }
.mobile-menu nav { padding: var(--sp-5); display: flex; flex-direction: column; }
.mobile-menu nav a {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu .mm-foot { padding: var(--sp-5); margin-top: auto; display: grid; gap: var(--sp-3); }

/* ---------- Drawer do carrinho ---------- */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(3px); z-index: 95; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(420px, 100%);
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: var(--fs-md); letter-spacing: .1em; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: var(--sp-4) var(--sp-5); }
.drawer-foot { padding: var(--sp-5); border-top: 1px solid var(--line); display: grid; gap: var(--sp-3); }

.mini-item { display: grid; grid-template-columns: 74px 1fr auto; gap: var(--sp-3); padding-block: var(--sp-4); border-bottom: 1px solid var(--line-soft); }
.mini-item img { width: 74px; height: 96px; object-fit: cover; border-radius: var(--radius); background: var(--surface-2); }
.mini-item h4 { font-size: var(--fs-sm); font-weight: 600; font-family: var(--font-body); }
.mini-item .meta { font-size: var(--fs-xs); color: var(--muted); margin-top: 2px; }
.mini-item .price { font-size: var(--fs-sm); font-weight: 600; margin-top: .4rem; }

/* ---------- Controle de quantidade ---------- */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; color: var(--text-2); font-size: 15px; transition: var(--t); }
.qty button:hover { color: #fff; background: var(--surface-2); }
.qty span { min-width: 30px; text-align: center; font-size: var(--fs-sm); font-weight: 600; }

/* ---------- Card de produto ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5) var(--sp-4); }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4) var(--sp-3); } }

/* position:relative é obrigatório — sem ele o botão "Escolher tamanho" e o
   coração de favorito se posicionam contra a página inteira e vazam pela tela. */
.card { position: relative; display: flex; flex-direction: column; }
/* Envolve só a imagem — é a âncora do coração e do botão "Escolher tamanho",
   para que eles fiquem dentro da foto e não em cima do nome do produto. */
.card-media-wrap { position: relative; }

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: var(--radius);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }

.card-tags { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .5rem; border-radius: 3px; background: #fff; color: #000;
}
.tag-grad { background: var(--grad); color: #fff; }
.tag-out { background: var(--surface-3); color: var(--muted); }

.card-fav { position: absolute; top: 8px; right: 8px; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); color: #fff; opacity: 0; transition: var(--t); }
.card:hover .card-fav, .card-fav.on { opacity: 1; }
.card-fav svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.card-fav.on svg { fill: var(--brand); stroke: var(--brand); }

/* Fica dentro da foto, acima do texto do produto */
.card-quick {
  position: absolute; left: 10px; right: 10px; bottom: 12px; z-index: 3;
  opacity: 0; transform: translateY(8px);
  transition: var(--t);
}
.card:hover .card-quick { opacity: 1; transform: translateY(0); }
@media (hover: none) { .card-quick { opacity: 1; transform: none; } }

.card-body { padding-top: var(--sp-3); display: flex; flex-direction: column; gap: 3px; }
.card-brand { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.card-name { font-size: var(--fs-sm); font-weight: 500; line-height: 1.35; }
.card-price { display: flex; align-items: baseline; gap: .5rem; margin-top: .25rem; }
.card-price strong { font-size: var(--fs-base); font-weight: 700; font-family: var(--font-display); }
.card-price del { font-size: var(--fs-xs); color: var(--muted); }
.card-installment { font-size: var(--fs-xs); color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); background: var(--surface); margin-top: var(--sp-8); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: var(--sp-6); padding-block: var(--sp-7); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer h4 { font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; margin-bottom: var(--sp-4); color: #fff; }
.footer ul { display: grid; gap: .65rem; }
.footer a { font-size: var(--fs-sm); color: var(--muted); transition: var(--t); }
.footer a:hover { color: #fff; }
.footer p { font-size: var(--fs-sm); color: var(--muted); }

.socials { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: var(--t); }
.socials a:hover { border-color: transparent; background: var(--grad); color: #fff; }
.socials svg { width: 17px; height: 17px; }

.footer-bottom { border-top: 1px solid var(--line-soft); padding-block: var(--sp-4); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); flex-wrap: wrap; font-size: var(--fs-xs); color: var(--muted); }

.payments { display: flex; gap: .4rem; flex-wrap: wrap; }
.payments span { border: 1px solid var(--line); border-radius: 3px; padding: .25rem .5rem; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; fill: currentColor; }

/* ---------- Toast ---------- */
.toast-zone { position: fixed; top: calc(var(--header-h) + 16px); right: 16px; z-index: 200; display: grid; gap: .6rem; }
.toast {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow);
  animation: toastIn .3s var(--ease);
  max-width: 320px;
}
.toast.ok { border-left-color: var(--success); }
.toast.err { border-left-color: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateX(24px); } }

/* ---------- Estados ---------- */
.empty { text-align: center; padding: var(--sp-8) var(--sp-4); }
.empty svg { width: 46px; height: 46px; stroke: var(--muted); fill: none; stroke-width: 1.3; margin-inline: auto; margin-bottom: var(--sp-4); }
.empty h3 { font-size: var(--fs-lg); margin-bottom: .5rem; }
.empty p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }

.skeleton { background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius); }
@keyframes shimmer { to { background-position: -200% 0; } }
.sk-card { aspect-ratio: 3/4; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Carrossel ---------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .65s var(--ease);
  will-change: transform;
}
.carousel-slide { flex: 0 0 100%; min-width: 0; }

.carousel-dots {
  display: flex; justify-content: center; align-items: center;
  gap: .6rem; margin-top: var(--sp-5);
}
.carousel-dots .dot {
  width: 9px; height: 9px; padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: var(--t);
}
.carousel-dots .dot:hover { border-color: rgba(255, 255, 255, .8); }
.carousel-dots .dot.on { background: #fff; border-color: #fff; transform: scale(1.15); }

@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}

/* ---------- Logo em imagem (opcional) ---------- */
.logo-img { height: 34px; width: auto; object-fit: contain; }
.logo-footer { margin-bottom: 1rem; }
@media (max-width: 768px) { .logo-img { height: 30px; } }

/* ---------- Auxiliares de layout ---------- */
.defs-ocultas { position: absolute; width: 0; height: 0; overflow: hidden; }
.drawer-n { color: var(--muted); font-weight: 400; }
.qty-mt { margin-top: .5rem; }
.btn-rm { align-self: flex-start; }
.frete-ok { color: var(--success); font-size: var(--fs-sm); font-weight: 600; }
.summary-row.sem-borda { border: 0; margin: 0; padding: 0; }
.chevron { opacity: .35; }
.footer-sobre { max-width: 280px; }
.footer-horario { color: var(--muted); font-size: var(--fs-sm); }
.sk-linha { height: 14px; margin-top: 8px; width: 80%; }
.sk-linha.curta { width: 40%; margin-top: 12px; }
.toast.saindo { opacity: 0; transform: translateX(20px); }

/* Resultados da busca */
.busca-res { margin-top: 1rem; display: grid; gap: .5rem; }
.busca-dica { color: var(--muted); font-size: var(--fs-sm); }
.busca-dica a { color: #fff; text-decoration: underline; }
.busca-item {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: .8rem; align-items: center;
  padding: .5rem; border-radius: var(--radius);
  transition: var(--t);
}
.busca-item:hover { background: var(--surface-2); }
.busca-item img { width: 44px; height: 56px; object-fit: cover; border-radius: 3px; }
.busca-item strong { font-size: var(--fs-sm); }
.busca-marca { font-size: var(--fs-xs); color: var(--muted); display: block; }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; gap: .5rem; align-items: center; font-size: var(--fs-xs); color: var(--muted); padding-block: var(--sp-4); flex-wrap: wrap; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }
