/* ============================================================
   Poeira na Sala — Catálogo público
   ============================================================ */

/* ---- Splash ---- */
.splash {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-surface);
  background-image: var(--gradient-glow), var(--gradient-surface);
}
.splash-inner { text-align: center; animation: popIn .6s var(--ease-bounce) both; }
.splash-logo {
  width: 84px; height: 84px; border-radius: 24px; margin: 0 auto 1.2rem;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.8rem; color: #fff;
  box-shadow: var(--shadow-glow);
  animation: pulseBadge 1.6s ease-in-out infinite;
}
.splash h1 { font-size: 1.6rem; margin-bottom: .2rem; }
.splash.fade-out { animation: fadeOut .6s var(--ease-smooth) forwards; }

.splash-logo-img { width: 84px; height: 84px; border-radius: 24px; margin: 0 auto 1.2rem; object-fit: cover; box-shadow: var(--shadow-glow); animation: pulseBadge 1.6s ease-in-out infinite; }
.brand-logo-img { width: 38px; height: 38px; border-radius: 12px; object-fit: cover; }

/* ---- Banner rotativo (preenche a largura total, sempre) ---- */
.store-banner-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3.6 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-surface);
}
.banner-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.banner-slide.active { opacity: 1; }
.banner-slide a { display: block; width: 100%; height: 100%; }
.banner-slide-img, .banner-slide picture {
  display: block;
  width: 100%; height: 100%;
}
.banner-slide-img {
  object-fit: cover;
  object-position: center;
}
.banner-texto {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,5,10,.35);
  text-align: center;
  padding: 0 1rem;
}
.banner-texto p { margin: 0; font-weight: 700; color: #fff; font-size: 1.1rem; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.banner-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: .4rem;
}
.banner-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.4); cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.banner-dot.active { background: #fff; transform: scale(1.3); }
@media (max-width: 640px) {
  .store-banner-carousel { aspect-ratio: 4 / 3; }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 50;
  transition: transform .25s var(--ease-bounce);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---- Header ---- */
.store-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--border-soft);
  padding: .9rem 0 0;
}
.header-inner { display: flex; align-items: center; gap: 1rem; padding-bottom: .9rem; }
.store-brand {
  display: flex; align-items: center; gap: .6rem; font-size: 1.05rem; flex-shrink: 0;
  text-decoration: none; color: var(--text-primary);
  transition: opacity .2s;
}
.store-brand:hover { opacity: .85; }
.header-search { flex: 1; max-width: 420px; margin: 0 auto; }
.header-search input {
  width: 100%;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--overlay-2);
  color: var(--text-primary);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.header-search input::placeholder { color: var(--text-faint); }
.header-search input:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(139, 92, 246, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}
.brand-dot {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; box-shadow: var(--shadow-glow);
}

.icon-btn {
  background: var(--overlay-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  width: 42px; height: 42px;
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-primary);
  transition: background .2s;
  flex-shrink: 0;
}
.icon-btn:hover { background: var(--overlay-4); }

/* Desktop: campo de busca inline, categorias na 2ª linha, sem hambúrguer */
.categorias-hamburger, .search-toggle { display: none; }
#themeToggle { display: flex; }
.theme-toggle-btn svg { width: 18px; height: 18px; }
.modo-produtos .categorias-hamburger { display: none !important; }
.hidden-cat-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .8rem; }

.filter-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}
.filter-chip {
  padding: .5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--overlay-2);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.filter-chip:hover { background: var(--overlay-4); color: var(--text-primary); transform: translateY(-1px); }
.filter-chip.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

@media (min-width: 641px) {
  .header-inner { justify-content: space-between; }
}

@media (max-width: 640px) {
  .header-inner { justify-content: space-between; flex-wrap: wrap; }
  .categorias-hamburger { order: 1; display: flex; }
  .store-brand { order: 2; flex: 1; justify-content: center; min-width: 0; }
  .store-brand strong { display: none; }
  .brand-logo-img, .brand-dot { width: 52px; height: 52px; border-radius: 14px; }
  .search-toggle { order: 3; display: flex; }
  #themeToggle { display: none; }
  .cart-btn { order: 4; }
  .header-search {
    display: none;
    order: 10;
    max-width: none; width: 100%;
    flex-basis: 100%;
    margin-top: .7rem;
  }
  .header-search.open { display: block; }
  .categorias-carousel { display: none !important; }
}

.cart-btn {
  position: relative;
  background: var(--overlay-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform .2s var(--ease-bounce), background .2s;
}
.cart-btn:hover { background: var(--overlay-4); }
.cart-btn.bump { animation: cartBump .45s var(--ease-bounce); }
@keyframes cartBump {
  0% { transform: scale(1); }
  35% { transform: scale(1.28) rotate(-8deg); }
  60% { transform: scale(0.94) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--gradient-brand);
  color: #fff; font-size: .7rem; font-weight: 800;
  min-width: 20px; height: 20px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.cart-count.pulse { animation: pulseBadge .4s var(--ease-bounce); }

/* ---- Navegação de categorias (2ª linha do cabeçalho, centralizada) ---- */
.categorias-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.categorias-nav {
  display: flex; gap: .6rem; overflow-x: auto;
  scroll-behavior: smooth;
  /* justify-content:center quebra a rolagem quando estoura a largura (o início
     some pra fora da tela e não dá pra chegar nele arrastando) — só centraliza
     quando cabem todas as pills sem precisar rolar (classe via JS). */
  justify-content: flex-start;
  padding: .7rem .1rem;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.categorias-nav.cabe-tudo { justify-content: center; }
.categorias-nav::-webkit-scrollbar { display: none; }

.cat-carousel-arrow {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--overlay-2);
  color: var(--text-primary);
  font-size: 1.2rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}
.cat-carousel-arrow:hover { background: var(--overlay-4); }
.cat-carousel-arrow[disabled] { opacity: 0; pointer-events: none; }
.cat-pill {
  flex-shrink: 0;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--overlay-2);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s var(--ease-smooth);
  white-space: nowrap;
  display: flex; align-items: center; gap: .35rem;
}
.cat-pill:hover { color: var(--text-primary); border-color: var(--border-strong); }
.cat-pill.active { background: var(--gradient-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }
.cat-pill .lock { font-size: .75rem; opacity: .8; }

/* ---- Seções de categoria + grid de produtos ---- */
.categoria-section { margin-bottom: 2.4rem; scroll-margin-top: 90px; }
.categoria-title { font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card .thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-surface);
  overflow: hidden;
  position: relative;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-smooth); }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .thumb .no-img { display:flex; align-items:center; justify-content:center; height:100%; color: var(--text-faint); font-size: .8rem; }
/* ---- Marca d'água (desenhada por cima da foto via CSS — sempre funciona,
   independe do servidor ter suporte a processamento de imagem) ---- */
.wm-layer {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  display: flex;
  padding: 6%;
  box-sizing: border-box;
}
.wm-pos-centro { align-items: center; justify-content: center; }
.wm-pos-topo-esquerda { align-items: flex-start; justify-content: flex-start; }
.wm-pos-topo-direita { align-items: flex-start; justify-content: flex-end; }
.wm-pos-base-esquerda { align-items: flex-end; justify-content: flex-start; }
.wm-pos-base-direita { align-items: flex-end; justify-content: flex-end; }
.wm-pos-repetida { flex-wrap: wrap; align-content: space-around; justify-content: space-around; }

.wm-item {
  opacity: .55;
  max-width: 90%;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}
img.wm-item { height: auto; object-fit: contain; }
div.wm-item {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  text-align: center;
}
/* Quebra em várias linhas: fica dentro da largura disponível sempre. */
div.wm-item.wm-quebra { white-space: normal; word-break: break-word; }
/* Não quebra: uma linha só — o JS calcula a escala pra nunca estourar a largura. */
div.wm-item.wm-sem-quebra { white-space: nowrap; transform-origin: center; }
.wm-item.wm-tile { opacity: .3; width: 28% !important; margin: 2%; }

.product-card .thumb .badge-indisponivel {
  position: absolute; inset: 0; background: rgba(10,10,15,.72);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem;
}
.product-card .info { padding: .85rem .9rem 1rem; flex: 1; display: flex; flex-direction: column; }
.product-card .info h4 { font-size: .92rem; margin-bottom: .3rem; line-height: 1.3; }
.product-card .info .price { font-weight: 800; color: var(--text-primary); margin-top: auto; font-size: 1.05rem; }
.product-card .info .desc-preview { font-size: .78rem; color: var(--text-faint); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: .5rem; }

.empty-catalog { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }

.hidden-cat-notice {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  flex-wrap: wrap;
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, .06);
  margin-bottom: .7rem;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ---- Vitrines em carrossel ---- */
.vitrine-carrossel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  scrollbar-width: thin;
}
.vitrine-carrossel .product-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
@media (max-width: 480px) {
  .vitrine-carrossel .product-card { flex-basis: 160px; }
}

/* ---- Modal overlay genérico ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(5,5,10,.7);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  z-index: 60; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box { width: 100%; max-width: 560px; padding: 1.6rem; max-height: 90vh; overflow-y: auto; }
.modal-box.closing { animation: popOut .2s ease forwards; }
@keyframes popOut { to { opacity: 0; transform: scale(.94); } }

/* ---- Modal de produto: galeria com navegação ---- */
.product-modal-medidas { font-size: .8rem; color: var(--text-muted); margin: -.4rem 0 .8rem; }
.badge-disponibilidade {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: var(--radius-pill);
  padding: .25rem .7rem;
  margin: .3rem 0 .6rem;
}

/* ---- Réguas de medida por FORA da foto (moldura, não cobre a imagem) ---- */
.dim-frame {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.dim-frame.dim-on { grid-template-columns: 1fr 30px; grid-template-rows: 1fr 30px; gap: 8px; }
.dim-frame .product-modal-gallery { grid-column: 1; grid-row: 1; margin-bottom: 0; }
.dim-frame .zoom-image-wrap { grid-column: 1; grid-row: 1; }
.dim-bar-v, .dim-bar-h { display: none; position: relative; align-items: center; justify-content: center; }
.dim-bar-v { grid-column: 2; grid-row: 1; }
.dim-bar-h { grid-column: 1; grid-row: 2; }
.dim-frame.dim-on .dim-bar-v.dim-active,
.dim-frame.dim-on .dim-bar-h.dim-active { display: flex; }

.dim-line-v {
  position: absolute; top: 4px; bottom: 4px; left: 50%;
  border-left: 1.5px solid #fff;
  filter: drop-shadow(0 0 2px rgba(0,0,0,.7));
}
.dim-line-v::before, .dim-line-v::after {
  content: ''; position: absolute; left: -4px; width: 9px; border-top: 1.5px solid #fff;
}
.dim-line-v::before { top: 0; }
.dim-line-v::after { bottom: 0; }
.dim-label-v {
  writing-mode: vertical-rl;
  font-size: .68rem; font-weight: 700; white-space: nowrap;
  color: #fff; background: rgba(5,5,10,.65);
  border-radius: 3px; padding: .2rem 0;
  position: relative; z-index: 1;
}

.dim-line-h {
  position: absolute; left: 4px; right: 4px; top: 50%;
  border-top: 1.5px solid #fff;
  filter: drop-shadow(0 0 2px rgba(0,0,0,.7));
}
.dim-line-h::before, .dim-line-h::after {
  content: ''; position: absolute; top: -4px; height: 9px; border-left: 1.5px solid #fff;
}
.dim-line-h::before { left: 0; }
.dim-line-h::after { right: 0; }
.dim-label-h {
  font-size: .68rem; font-weight: 700; white-space: nowrap;
  color: #fff; background: rgba(5,5,10,.65);
  border-radius: 3px; padding: 0 .35rem;
  position: relative; z-index: 1;
}

.dim-toggle {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  margin: -.2rem 0 1rem;
}
.dim-toggle input { width: auto; }

.product-modal-gallery { position: relative; margin-bottom: 1rem; border-radius: var(--radius-md); overflow: hidden; }
.product-modal-gallery .gallery-slide { display: none; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); cursor: zoom-in; }
.product-modal-gallery .gallery-slide.active { display: block; }
.product-modal-gallery .gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(10,10,15,.6); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem;
}
.product-modal-gallery .gallery-nav.prev { left: 10px; }
.product-modal-gallery .gallery-nav.next { right: 10px; }
.product-modal-gallery .gallery-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: .35rem;
}
.product-modal-gallery .gallery-dots span {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.4);
}
.product-modal-gallery .gallery-dots span.active { background: #fff; }

/* ---- Lightbox de zoom ---- */
.zoom-overlay {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: rgba(5,5,10,.92);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.zoom-overlay.open { display: flex; }
.zoom-content { display: flex; flex-direction: column; align-items: center; gap: .6rem; max-width: 100%; max-height: 100%; }
.zoom-content .dim-toggle { color: rgba(255,255,255,.75); margin: 0; }
.zoom-image-wrap { position: relative; }
.zoom-overlay img { display: block; max-width: min(85vw, 900px); max-height: 75vh; border-radius: var(--radius-md); }
.zoom-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; border: none;
  font-size: 1.4rem; cursor: pointer;
}
.qty-selector { display: flex; align-items: center; gap: .8rem; }
.qty-selector button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-soft); background: var(--overlay-2); color: var(--text-primary);
  font-size: 1.1rem; cursor: pointer; transition: background .2s, transform .15s;
}
.qty-selector button:hover { background: var(--overlay-4); }
.qty-selector button:active { transform: scale(.9); }
.qty-selector span { min-width: 24px; text-align: center; font-weight: 700; }

.variacao-group { margin-bottom: 1rem; }
.variacao-group .opts { display: flex; flex-wrap: wrap; gap: .5rem; }
.opt-chip {
  padding: .5rem .9rem; border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft); background: var(--overlay-1);
  cursor: pointer; font-size: .82rem; transition: all .2s;
}
.opt-chip.selected { background: var(--gradient-brand); color: #fff; border-color: transparent; }

/* ---- Painel do carrinho ---- */
.cart-panel {
  margin-left: auto; height: 100%; max-height: 100vh;
  width: 100%; max-width: 420px; border-radius: 0;
  padding: 1.4rem;
  display: flex; flex-direction: column;
  overflow-y: auto;
  animation: slideInRight .3s var(--ease-smooth);
}
@keyframes slideInRight { from { transform: translateX(24px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
#cartOverlay, #categoriasDrawerOverlay { justify-content: flex-end; padding: 0; }

.cart-warning-toggle {
  margin-top: .8rem;
  background: none; border: none;
  color: var(--text-faint);
  font-size: .78rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.categorias-drawer-link {
  display: flex; align-items: center; gap: .4rem;
  padding: .7rem .9rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: var(--overlay-1);
  cursor: pointer;
  font-size: .9rem;
  border: 1px solid var(--border-soft);
}
.categorias-drawer-link:hover { background: var(--overlay-3); }

/* ---- Filtros de busca ---- */
.search-filters {
  display: none;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.search-filters.open { display: flex; }
.search-filters select {
  padding: .5rem .9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--overlay-1);
  color: var(--text-primary);
  font-size: .85rem;
}

.cart-item { display: flex; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--border-soft); align-items: center; }
.cart-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: var(--bg-surface); }
.cart-item .meta { flex: 1; min-width: 0; }
.cart-item .meta .name { font-size: .87rem; font-weight: 600; }
.cart-item .meta .variant { font-size: .75rem; color: var(--text-faint); }
.cart-item .qty-inline { display: flex; align-items: center; gap: .4rem; margin-top: .3rem; }
.cart-item .qty-inline button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-soft); background: transparent; color: var(--text-primary); cursor: pointer; font-size: .85rem; }
.cart-item .remove-btn { color: var(--danger); font-size: .75rem; cursor: pointer; background: none; border: none; text-decoration: underline; padding: 0; margin-top: .3rem; }

.cart-total { padding-top: 1rem; border-top: 1px solid var(--border-soft); }
.cart-total ~ .cart-total { border-top: none; padding-top: .5rem; }

.cart-coupon { padding-top: 1rem; border-top: 1px solid var(--border-soft); }
.cart-coupon input {
  flex: 1;
  padding: .6rem .8rem;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: var(--overlay-2);
  color: var(--text-primary);
  font-size: .85rem;
  text-transform: uppercase;
}
.cart-coupon + .cart-total { border-top: none; padding-top: .6rem; }
.cupom-feedback { font-size: .78rem; margin-top: .4rem; display: none; }
.cupom-feedback.ok { color: var(--success); display: block; }
.cupom-feedback.erro { color: var(--danger); display: block; }
#cartDesconto { color: var(--success); font-weight: 600; }

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .82rem; margin-bottom: .6rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-1); text-decoration: underline; }
.breadcrumb-sep { opacity: .6; }
.breadcrumb-current { color: var(--text-primary); font-weight: 600; }

.badge-outra-categoria {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent-1);
  background: color-mix(in srgb, var(--accent-1) 14%, transparent);
  border-radius: 999px;
  padding: .15rem .55rem;
  margin: .1rem 0 .3rem;
}
