/* ============================================
   SEBO DO VINIL — Design System
   Estética: retrô analógico, calor de sebo
   ============================================ */

/* Google Fonts enfileiradas via PHP (wp_enqueue_style) — sai do CSS pra
   evitar render-blocking. Veja inc/theme-setup.php → sebo_enqueue_assets. */

/* ---------- Design tokens ---------- */
:root {
  /* Paleta da marca */
  --navy: #2E2F7A;
  --navy-deep: #1F2057;
  --navy-soft: #43459A;
  --orange: #E85D2C;
  --orange-deep: #C9461B;
  --yellow: #F4B82E;
  --yellow-soft: #F8D061;
  --cream: #F4E0CC;
  --cream-soft: #FAEFE0;
  --paper: #F7EFE2;
  --ink: #1A1A1A;
  --ink-soft: #3B3B3B;
  --muted: #6B6B6B;
  --line: #E5D9C5;
  --white: #FFFFFF;

  /* Tipografia */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-hand: 'Permanent Marker', cursive;
  --font-marker: 'Caveat Brush', cursive;

  /* Espaçamento */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(31, 32, 87, 0.08);
  --shadow-md: 0 8px 24px rgba(31, 32, 87, 0.12);
  --shadow-lg: 0 16px 40px rgba(31, 32, 87, 0.18);

  --container: 1240px;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: 'ss01';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* iOS Safari faz auto-zoom em qualquer input/textarea/select com font-size < 16px
   no foco — muda o viewport e quebra a experiência. Fixar em 16px previne o
   zoom sem precisar de `maximum-scale=1` (que prejudica acessibilidade).
   Os estilos visuais específicos por componente são livres pra trocar padding,
   border, cor, etc — só o font-size precisa ficar >= 16px no mobile. */
@media (max-width: 768px) {
  input, textarea, select,
  input[type="text"], input[type="email"], input[type="password"],
  input[type="number"], input[type="tel"], input[type="search"], input[type="url"] {
    font-size: 16px !important;
  }
}
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.1; letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--space-5); padding-right: var(--space-5); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
}
.eyebrow.on-dark { color: var(--yellow); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.lead { font-size: 1.125rem; color: var(--ink-soft); max-width: 56ch; }

.muted { color: var(--muted); }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--navy);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 10px 0;
  letter-spacing: 0.04em;
  text-align: center;
}
.utility-bar .container {
  display: flex; justify-content: center; align-items: center;
}
.utility-bar .notice {
  display: inline-flex; align-items: center; gap: 8px;
}
.utility-bar .notice strong { color: var(--yellow); font-weight: 600; letter-spacing: 0.06em; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(247, 239, 226, 0.96);
}

/* Compensar a admin bar do WP quando logado — caso contrário, a barra
   fixa do WP cobre metade do nosso header sticky. */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex; align-items: center; gap: var(--space-3);
}
.brand img { height: 44px; width: auto; }
.site-header .brand img { height: 38px; }
.brand-stamp {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  padding: 4px 8px;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.primary-nav {
  display: flex; gap: var(--space-6);
  font-weight: 500;
  font-size: 0.95rem;
  justify-content: center;
}
.primary-nav a {
  position: relative;
  padding: 6px 2px;
  color: var(--ink);
  transition: color 0.2s;
}
.primary-nav a:hover { color: var(--orange); }
.primary-nav a.active {
  color: var(--navy);
  font-weight: 600;
}
.primary-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 3px; background: var(--orange); border-radius: var(--radius-pill);
}

.header-actions {
  display: flex; align-items: center; gap: var(--space-3);
}
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  color: var(--navy);
  transition: all 0.2s;
  position: relative;
  background: var(--white);
}
.icon-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--cream); }
.icon-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
}

.search-trigger {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.9rem;
  min-width: 240px;
  transition: all 0.2s;
}
.search-trigger:hover { border-color: var(--navy); color: var(--navy); }
.search-trigger svg { width: 16px; height: 16px; }

/* Icon-only search button — replaces .search-trigger when space is tight */
.search-icon-btn { display: none; }
@media (max-width: 1180px) and (min-width: 961px) {
  .search-trigger { display: none; }
  .search-icon-btn { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-deep); box-shadow: var(--shadow-md); }

.btn--dark { background: var(--navy); color: var(--cream); }
.btn--dark:hover { background: var(--navy-deep); }

.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--cream); }

.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: rgba(46, 47, 122, 0.08); }

.btn--yellow { background: var(--yellow); color: var(--navy); }
.btn--yellow:hover { background: var(--yellow-soft); }

.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Badges / stamps ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--orange { background: var(--orange); color: var(--white); }
.badge--yellow { background: var(--yellow); color: var(--navy); }
.badge--navy { background: var(--navy); color: var(--cream); }
.badge--outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.badge--cream { background: var(--cream); color: var(--navy); }

/* "Stamp" — etiqueta de carimbo (used in product detail) */
.stamp {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid currentColor;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

/* ---------- Vinyl motif (decorative) ---------- */
.vinyl-rings {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid currentColor;
  opacity: 0.35;
}

.spinning-vinyl {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.spinning-vinyl::before,
.spinning-vinyl::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    #000 0%, #000 22%,
    var(--cream) 22%, var(--cream) 30%,
    #000 30%, #0a0a0a 100%);
}
.spinning-vinyl::after {
  background:
    repeating-radial-gradient(circle at center,
      transparent 30%,
      rgba(255,255,255,0.04) 30%,
      transparent 31%,
      transparent 32%);
}

/* ---------- Cards ---------- */
.product-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--navy); box-shadow: var(--shadow-md); }
.product-card__cover {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream-soft);
  overflow: hidden;
}
.product-card__cover svg { width: 100%; height: 100%; display: block; }
/* Garantia: qualquer <img> dentro do cover preenche o quadrado e corta o
   excedente. Cobre o featured image do WC, o placeholder de capa do tema,
   e qualquer img injetada por plugin. */
.product-card__cover img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
}
.product-card__wish {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: all 0.2s;
}
.product-card__wish:hover { background: var(--orange); color: var(--white); }
.product-card__wish svg { width: 16px; height: 16px; }

.product-card__body { padding: var(--space-4); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__meta { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.product-card__artist { font-size: 0.9rem; color: var(--ink-soft); margin-top: 2px; }
.product-card__condition {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--muted); margin-top: 4px;
}
.product-card__dot { width: 8px; height: 8px; border-radius: 50%; background: #5fc26b; }
.product-card__footer {
  display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: var(--space-3);
}
.price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--orange); }
.price--old { color: var(--muted); text-decoration: line-through; font-size: 0.85rem; font-weight: 500; margin-right: 6px; }

/* No mobile, empilha preço-velho em cima do preço-novo dentro do card pra
   não roubar largura do botão (+) AJAX. A coluna do preço vira flex column;
   o footer continua flex row com o botão na direita. */
@media (max-width: 600px) {
  .product-card__footer > div { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
  .product-card__footer .price--old { margin-right: 0; margin-bottom: 2px; font-size: 0.78rem; }
  .product-card__footer .price { font-size: 1.1rem; }
}
.add-to-cart-mini {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.add-to-cart-mini:hover { background: var(--orange); transform: rotate(90deg); }
.add-to-cart-mini svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-8) 0 var(--space-5);
  margin-top: var(--space-9);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      transparent 0,
      transparent 6px,
      rgba(244, 224, 204, 0.08) 6px,
      rgba(244, 224, 204, 0.08) 7px);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--yellow);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { opacity: 0.85; font-size: 0.92rem; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--yellow); }

.footer-brand-block .brand img { height: 96px; width: auto; }
.footer-tagline { font-family: var(--font-display); font-size: 1.1rem; margin-top: var(--space-4); max-width: 28ch; line-height: 1.3; }
.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.78;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px dashed rgba(244, 224, 204, 0.25);
  max-width: 26ch;
}
.social-row { display: flex; gap: var(--space-2); margin-top: var(--space-4); }
.social-row a {
  width: 38px; height: 38px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.85;
}
.social-row a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); opacity: 1; }
.social-row svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(244, 224, 204, 0.18);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; opacity: 0.7;
  flex-wrap: wrap; gap: var(--space-3);
}

/* ---------- Section helpers ---------- */
.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-7) 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: var(--space-6);
  gap: var(--space-5);
  flex-wrap: wrap;
}
.section-head .text { max-width: 56ch; }
.section-head .eyebrow + .section-title { margin-top: var(--space-2); }

/* ---------- Album cover SVG placeholders ---------- */
.cover-svg { width: 100%; height: 100%; }

/* ---------- Form fields ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(46, 47, 122, 0.12);
}

/* ---------- Animation ---------- */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin { animation: spin 24s linear infinite; }

/* ---------- Hamburger / Mobile menu ---------- */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 0;
  background: transparent;
  color: var(--navy);
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.hamburger:hover { background: rgba(46, 47, 122, 0.08); }
.hamburger svg { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  color: var(--cream);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: var(--space-5);
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px dashed rgba(244, 224, 204, 0.18);
}
.mobile-menu__head img { height: 42px; width: auto; }
.mobile-menu__close {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(244, 224, 204, 0.12);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.mobile-menu__close:hover { background: var(--orange); transform: rotate(90deg); }
.mobile-menu__close svg { width: 18px; height: 18px; }
.mobile-menu__search {
  margin-bottom: var(--space-5);
  display: flex; gap: 8px;
  padding: 12px 16px;
  background: rgba(244, 224, 204, 0.1);
  border: 1px solid rgba(244, 224, 204, 0.2);
  border-radius: var(--radius-pill);
  align-items: center;
}
.mobile-menu__search svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; }
.mobile-menu__search input {
  flex: 1; border: 0; background: transparent;
  color: var(--cream); font-family: inherit; font-size: 0.95rem;
}
.mobile-menu__search input::placeholder { color: rgba(244, 224, 204, 0.6); }
.mobile-menu__search input:focus { outline: none; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: var(--space-3) 0;
  border-bottom: 1px dashed rgba(244, 224, 204, 0.18);
  color: var(--cream);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s;
}
.mobile-menu__nav a::after {
  content: "→"; opacity: 0.5; transition: all 0.2s;
}
.mobile-menu__nav a:hover { color: var(--yellow); }
.mobile-menu__nav a:hover::after { transform: translateX(4px); opacity: 1; }
.mobile-menu__nav a.active { color: var(--yellow); }
.mobile-menu__footer {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px dashed rgba(244, 224, 204, 0.18);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.mobile-menu__footer a {
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.85;
}
.mobile-menu__footer .address {
  font-size: 0.8rem; opacity: 0.6;
  margin-top: var(--space-3);
  line-height: 1.5;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
body.menu-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .search-trigger { display: none; }
  /* Switch header to flexbox so hamburger sits on left of brand */
  .site-header__inner {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    grid-template-columns: none;
  }
  .hamburger { display: inline-flex; order: 0; }
  .brand { order: 1; margin-right: auto; }
  .header-actions { order: 2; gap: var(--space-2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  /* Hide the utility bar entirely on mobile — it's noisy */
  .utility-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .section { padding: var(--space-7) 0; }
  .container { padding-left: var(--space-5); padding-right: var(--space-5); }

  /* Header: comfortable vertical breathing room */
  .site-header__inner { padding-top: 20px; padding-bottom: 20px; gap: var(--space-3); }
  .brand img, .site-header .brand img { height: 30px; }
  .hamburger { width: 40px; height: 40px; }
  .hamburger svg { width: 22px; height: 22px; }

  /* Secondary action: account — outline pill */
  .icon-btn { width: 38px; height: 38px; border-color: rgba(46, 47, 122, 0.18); }
  .icon-btn svg { width: 16px; height: 16px; }

  /* Primary action: cart — filled navy */
  .header-actions > a[href*="carrinho"] {
    background: var(--navy); color: var(--cream); border-color: var(--navy);
  }
  .header-actions > a[href*="carrinho"]:hover {
    background: var(--orange); border-color: var(--orange); color: var(--white);
  }
  /* Refine badge: smaller, navy border that matches the cart bg */
  .cart-count {
    min-width: 17px; height: 17px;
    font-size: 0.66rem;
    top: -3px; right: -3px;
    border-width: 2px; border-color: var(--paper);
  }
  .header-actions > a[href*="carrinho"] .cart-count {
    border-color: var(--navy);
  }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .btn--lg { padding: 14px 24px; font-size: 0.92rem; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
}

/* Subtle elevation when scrolled (sticky header) */
@media (max-width: 960px) {
  .site-header {
    border-bottom-color: transparent;
    box-shadow: 0 1px 0 var(--line);
    transition: box-shadow 0.2s;
  }
  .site-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(46, 47, 122, 0.08);
  }
}
@media (max-width: 480px) {
  .container { padding-left: var(--space-3); padding-right: var(--space-3); }
}

/* Prevent any rogue horizontal overflow on small screens. Em mobile usamos
   `hidden` (mais agressivo que `clip` — força o navegador a calcular o
   layout dentro da viewport, evitando o "zoom-out de page-fitting" que
   acontece quando algum filho-com-overflow-clipped ainda conta como
   conteúdo na "min content width detection" do browser). No desktop
   mantém `clip` pra não quebrar position: sticky. */
html, body { overflow-x: clip; }
@media (max-width: 900px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
  }
  /* Cinto-e-suspensórios: força filhos comuns a respeitarem viewport */
  body > * { max-width: 100vw; }
}

/* ============================================
   Newsletter popup (delayed after 5s)
   ============================================ */
.newsletter-popup {
  position: fixed; inset: 0;
  z-index: 500;
  background: rgba(10, 10, 10, 0.65);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.newsletter-popup.open { opacity: 1; pointer-events: auto; }
.newsletter-popup__panel {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1.1);
  max-height: 92vh;
}
.newsletter-popup.open .newsletter-popup__panel {
  transform: translateY(0) scale(1);
}
.newsletter-popup__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: all 0.2s;
}
.newsletter-popup__close:hover { background: var(--orange); color: var(--white); transform: rotate(90deg); }
.newsletter-popup__close svg { width: 18px; height: 18px; }

/* Visual / left side */
.newsletter-popup__visual {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-6) var(--space-5);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; gap: var(--space-4);
}
.newsletter-popup__visual::before {
  content: ""; position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    transparent 0, transparent 8px,
    rgba(244, 184, 46, 0.18) 8px, rgba(244, 184, 46, 0.18) 9px);
  z-index: 0;
}
.newsletter-popup__stamp {
  display: inline-flex; align-self: flex-start;
  background: var(--yellow); color: var(--navy);
  font-family: var(--font-hand);
  font-size: 1.05rem; line-height: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--orange);
  position: relative; z-index: 1;
}
.newsletter-popup__big-price {
  font-family: var(--font-hand);
  color: var(--yellow);
  line-height: 0.9;
  position: relative; z-index: 1;
  margin-top: var(--space-3);
}
.newsletter-popup__big-price .reais { display: block; font-size: 1.2rem; color: var(--orange); margin-bottom: 6px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
.newsletter-popup__big-price .num { font-size: 6rem; }
.newsletter-popup__big-price .off { display: block; font-size: 1rem; color: var(--cream); margin-top: 8px; opacity: 0.9; letter-spacing: 0.05em; }
.newsletter-popup__visual p {
  font-family: var(--font-display);
  font-size: 1rem; line-height: 1.4;
  position: relative; z-index: 1;
  font-style: italic;
  opacity: 0.95;
}

/* Form / right side */
.newsletter-popup__form {
  padding: var(--space-6) var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  overflow-y: auto;
}
.newsletter-popup__eyebrow {
  color: var(--orange);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.newsletter-popup__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.newsletter-popup__title em { color: var(--orange); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.newsletter-popup__intro {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
}
.newsletter-popup__fields { display: flex; flex-direction: column; gap: var(--space-3); }
.newsletter-popup__fields .field input { padding: 13px 16px; font-size: 0.95rem; }
.newsletter-popup__cta {
  margin-top: var(--space-2);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  background: var(--orange); color: var(--white);
  font-family: inherit; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.newsletter-popup__cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
.newsletter-popup__cta svg { width: 16px; height: 16px; }
.newsletter-popup__small {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}
.newsletter-popup__small a { color: var(--navy); text-decoration: underline; }
.newsletter-popup__decline {
  background: 0; border: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: underline;
  margin-top: var(--space-2);
  align-self: flex-start;
}
.newsletter-popup__decline:hover { color: var(--ink); }

/* Success state */
.newsletter-popup__success { display: none; text-align: center; padding: var(--space-5) var(--space-4); }
.newsletter-popup__success.show { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.newsletter-popup__success .ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}
.newsletter-popup__success .ico svg { width: 28px; height: 28px; }
.newsletter-popup__success h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.5rem; }
.newsletter-popup__success p { color: var(--ink-soft); }
.newsletter-popup__success .code {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--cream-soft);
  border: 2px dashed var(--orange);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--navy); font-weight: 700;
  letter-spacing: 0.18em;
}

body.popup-open { overflow: hidden; }

@media (max-width: 700px) {
  .newsletter-popup { padding: 0; }
  .newsletter-popup__panel {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 0;
    height: 100vh;
    max-height: 100vh;
  }
  .newsletter-popup__visual {
    padding: var(--space-5) var(--space-4);
    flex-direction: row; align-items: center; gap: var(--space-4);
  }
  .newsletter-popup__visual::before { width: 220px; height: 220px; right: -90px; top: -90px; }
  .newsletter-popup__big-price .num { font-size: 4rem; }
  .newsletter-popup__big-price .reais { font-size: 1rem; }
  .newsletter-popup__big-price .off { display: none; }
  .newsletter-popup__visual p { display: none; }
  .newsletter-popup__form { padding: var(--space-5) var(--space-4); }
}

/* ============================================
   Sebo do Vinil — estilos específicos de página
   (extraídos dos <style> inline do HTML original)
   ============================================ */

/* ---- Homepage ---- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: var(--space-9) 0 var(--space-8);
}
.hero__bg-rings {
  position: absolute;
  right: -200px; top: 50%; transform: translateY(-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      transparent 0, transparent 14px,
      rgba(244, 184, 46, 0.18) 14px, rgba(244, 184, 46, 0.18) 15px);
  z-index: 0;
}
.hero__inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: center;
}
.hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: var(--space-5);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.hero__copy h1 em {
  font-style: italic;
  color: var(--yellow);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero__copy p { font-size: 1.15rem; opacity: 0.88; max-width: 48ch; margin-bottom: var(--space-6); }
.hero__ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: var(--space-7);
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(244, 224, 204, 0.18);
}
.hero__stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--yellow); display: block; line-height: 1; }
.hero__stat .lbl { font-size: 0.82rem; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; }
.hero__visual { position: relative; min-height: 460px; }

@media (max-width: 900px) {
  .hero { padding: var(--space-6) 0; }
  .hero__bg-rings { width: 500px; height: 500px; right: -300px; opacity: 0.45; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .hero__copy h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero__copy p { font-size: 1rem; }
  .hero__visual { display: none; }
  .hero__stats { display: none; }
  .hero__ctas .btn { flex: 1; min-width: 0; }
}

.tag-strip {
  background: var(--orange);
  color: var(--white);
  padding: var(--space-3) 0;
  overflow: hidden;
  border-top: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
}
.tag-strip__inner {
  display: flex; gap: var(--space-7);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  white-space: nowrap;
  animation: scrollLeft 30s linear infinite;
}
.tag-strip__inner span { display: inline-flex; align-items: center; gap: var(--space-3); }
.tag-strip__inner span::before { content: "★"; color: var(--yellow); font-size: 1rem; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lado-a-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-5);
  margin-bottom: var(--space-6); flex-wrap: wrap;
}
.lado-a-head .label-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--orange); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  transform: rotate(-2deg);
  margin-bottom: var(--space-3);
  box-shadow: 4px 4px 0 var(--navy);
}
.product-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-5);
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); } }

.genre-section { background: var(--cream-soft); }
.genre-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4);
}
.genre-tile {
  position: relative;
  padding: var(--space-5) var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  transition: all 0.2s;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}
.genre-tile::before {
  content: ""; position: absolute; right: -30px; bottom: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--cream); opacity: 0.6;
  transition: all 0.3s;
}
.genre-tile:hover { transform: translateY(-3px); border-color: var(--navy); }
.genre-tile:hover::before { background: var(--yellow); opacity: 0.5; }
.genre-tile .ico {
  position: relative; z-index: 1;
  width: 48px; height: 48px;
  margin: 0 auto var(--space-3);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
}
.genre-tile h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  position: relative; z-index: 1;
}
.genre-tile .count { font-size: 0.75rem; color: var(--muted); margin-top: 2px; position: relative; z-index: 1; }
@media (max-width: 900px) { .genre-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .genre-grid { grid-template-columns: repeat(2, 1fr); } }

.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 8px 8px 0 var(--navy);
}
.promo-banner__copy { padding: var(--space-8) var(--space-7); position: relative; }
.promo-banner__copy .pinpoint {
  font-family: var(--font-hand);
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
  display: inline-block;
  transform: rotate(-3deg);
}
.promo-banner__copy h2 {
  font-family: var(--font-hand);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--navy);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.promo-banner__copy h2 .pink { color: #DA1A6A; }
.promo-banner__copy p {
  font-size: 1.05rem; color: var(--navy); margin-bottom: var(--space-5);
  max-width: 40ch;
}
.promo-banner__visual {
  background: var(--navy);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  overflow: hidden;
}
.promo-banner__visual .price-stamp {
  font-family: var(--font-hand);
  color: var(--yellow);
  line-height: 0.9;
  text-align: center;
  z-index: 2;
  transform: rotate(-5deg);
}
.promo-banner__visual .price-stamp .reais { font-size: 2rem; color: var(--orange); display: block; margin-bottom: 8px; }
.promo-banner__visual .price-stamp .num { font-size: 8rem; }
.promo-banner__visual .price-stamp .from { font-size: 1.1rem; color: var(--cream); display: block; margin-top: 8px; letter-spacing: 0.15em; text-transform: uppercase; }
.promo-banner__visual .ring-bg {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      transparent 0, transparent 10px,
      rgba(244, 184, 46, 0.15) 10px, rgba(244, 184, 46, 0.15) 11px);
}
@media (max-width: 800px) { .promo-banner { grid-template-columns: 1fr; } }

.scroll-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}
@media (max-width: 1000px) { .scroll-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .scroll-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); } }

.about-teaser {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-9) 0;
  position: relative; overflow: hidden;
}
.about-teaser::before {
  content: "";
  position: absolute; left: -120px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.95;
}
.about-teaser::after {
  content: "";
  position: absolute; left: 80px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--cream);
}
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
  position: relative; z-index: 2;
}
.about-teaser__inner > div:first-child {
  position: relative;
  height: 400px;
}
.about-teaser__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.about-teaser__copy h2 em { color: var(--yellow); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.about-teaser__copy p { font-size: 1.05rem; opacity: 0.85; margin-bottom: var(--space-4); }
@media (max-width: 800px) {
  .about-teaser__inner { grid-template-columns: 1fr; }
  .about-teaser__inner > div:first-child { display: none; }
  .about-teaser { padding: var(--space-7) 0; }
  .about-teaser::before, .about-teaser::after { display: none; }
}

.newsletter {
  background: var(--cream-soft);
  padding: var(--space-8) 0;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.newsletter p { color: var(--ink-soft); margin-bottom: 0; }
.newsletter__form {
  display: flex; gap: var(--space-2);
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
}
.newsletter__form input {
  flex: 1; border: 0; padding: 12px 18px;
  font-size: 0.95rem;
  background: transparent; color: var(--ink);
}
.newsletter__form input:focus { outline: none; }
.newsletter__form button { padding: 12px 24px; border-radius: var(--radius-pill); background: var(--navy); color: var(--cream); font-weight: 600; font-size: 0.9rem; }
.newsletter__form button:hover { background: var(--navy-deep); }
.newsletter__legal { font-size: 0.75rem; color: var(--muted); margin-top: var(--space-3); }
@media (max-width: 800px) { .newsletter__inner { grid-template-columns: 1fr; } }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item { display: flex; gap: var(--space-3); align-items: center; }
.trust-item .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item h5 { font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); margin: 0 0 2px; }
.trust-item p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.3; }
@media (max-width: 800px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-strip { grid-template-columns: 1fr; } }

/* ---- Goldmine grade chips (estado de conservação) ---- */
.grade--m       { background: #1a6f29; }
.grade--nm      { background: #1a6f29; }
.grade--vgplus  { background: #2e8a3b; }
.grade--vg      { background: #4fa85b; }
.grade--gplus   { background: #c98c2a; }
.grade--g       { background: #c46e1c; }
.grade--p       { background: #9a2a2a; }

/* ---- Catalog (archive-product) ---- */
.catalog-hero {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}
.catalog-hero::after {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      transparent 0, transparent 8px,
      rgba(244, 184, 46, 0.15) 8px, rgba(244, 184, 46, 0.15) 9px);
}
.breadcrumb {
  display: flex; gap: var(--space-2); align-items: center;
  font-size: 0.85rem; opacity: 0.75; margin-bottom: var(--space-4);
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.catalog-hero .breadcrumb { color: var(--cream); }
.catalog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 70, "opsz" 144;
  margin-bottom: var(--space-3);
}
.catalog-hero h1 em { color: var(--yellow); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.catalog-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 52ch; }
.catalog-hero__chips {
  display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-5);
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(244, 224, 204, 0.1);
  color: var(--cream);
  font-size: 0.85rem;
  border: 1px solid rgba(244, 224, 204, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.chip.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
  margin-bottom: var(--space-9);
}
@media (max-width: 960px) {
  .catalog-layout { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
}

.filter-trigger {
  display: none;
  align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: var(--navy); color: var(--cream);
  font-family: inherit; font-size: 0.92rem; font-weight: 600;
  margin-bottom: var(--space-4);
  width: 100%;
}
.filter-trigger:hover { background: var(--navy-deep); }
.filter-trigger svg { width: 16px; height: 16px; }
.filters__mobile-close { display: none; }

.filters {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  height: fit-content;
  position: sticky;
  top: 96px;
}
@media (max-width: 960px) {
  .filter-trigger { display: inline-flex; }
  .filters {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: none;
    border-radius: 0;
    border: 0;
    overflow-y: auto;
    top: 0;
    padding: var(--space-5) var(--space-4) var(--space-7);
    height: 100vh;
  }
  .filters.drawer-open { display: block; }
  .filters__mobile-close {
    display: inline-flex;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cream); color: var(--navy);
    align-items: center; justify-content: center;
  }
}
.filters__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1.5px solid var(--line);
}
.filters__head h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }
.filters__head a { font-size: 0.8rem; color: var(--orange); }
.filter-group { margin-bottom: var(--space-5); }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px dashed var(--line);
}
.filter-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.filter-option label { display: flex; align-items: center; gap: 8px; cursor: pointer; flex: 1; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; border-radius: 3px; accent-color: var(--navy); }
.filter-option .count { color: var(--muted); font-size: 0.75rem; }

.results__toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-5);
  flex-wrap: wrap; gap: var(--space-3);
}
.results__count { font-size: 0.95rem; color: var(--ink-soft); }
.results__count strong { color: var(--navy); font-family: var(--font-display); }
.toolbar-controls { display: flex; gap: var(--space-3); align-items: center; }
.sort-select {
  padding: 10px 36px 10px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--navy);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232E2F7A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
@media (max-width: 1100px) { .results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); } }

.pagination {
  display: flex; justify-content: center; align-items: center; gap: var(--space-2);
  margin-top: var(--space-7);
  flex-wrap: wrap;
}
/* Quando o JS de infinite scroll engata, escondemos a paginação numérica.
   Mantemos no DOM (crawlers + fallback no-JS). */
.pagination--js-hidden { display: none !important; }

/* Sentinela do infinite scroll. */
.infinite-sentinel {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  margin-top: var(--space-5);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.infinite-sentinel__spinner {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2.5px solid var(--line);
  border-top-color: var(--orange);
  animation: sebo-infinite-spin 0.7s linear infinite;
}
.infinite-sentinel--done .infinite-sentinel__spinner,
.infinite-sentinel--error .infinite-sentinel__spinner { display: none; }
.infinite-sentinel--done { color: var(--orange); }
.infinite-sentinel--error { color: var(--orange); cursor: pointer; text-decoration: underline; }
.infinite-sentinel--loading { opacity: 1; }
@keyframes sebo-infinite-spin {
  to { transform: rotate(360deg); }
}
/* Digits + dots + current: bolinha 42×42. */
.pagination .page-numbers {
  min-width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--white);
  transition: all 0.2s;
}
.pagination a.page-numbers:hover { border-color: var(--navy); color: var(--navy); }
.pagination .current { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.pagination .dots { border: none; background: transparent; }

/* Prev / Next: pílulas retangulares com setas claras e texto que respira. */
.pagination .prev,
.pagination .next {
  width: auto;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  gap: 6px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.pagination .prev:hover,
.pagination .next:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* Esconde digits/dots no mobile pra evitar quebra feia — prev/next ficam. */
@media (max-width: 560px) {
  .pagination .page-numbers:not(.prev):not(.next):not(.current) { display: none; }
  .pagination .prev, .pagination .next { padding: 0 14px; font-size: 0.85rem; }
}

/* ---- Single product ---- */
.product-page { padding: var(--space-6) 0 var(--space-5); }
/* Flexbox em vez de grid: galeria + story empilham à esquerda (cada um com a
   altura natural — nada de stretching forçado por linha do grid), info como
   coluna sticky à direita. Resolve o espaço em branco abaixo da foto quando
   o produto tem só 1 imagem e o sidebar de info é mais alto que a galeria. */
.product-grid-layout {
  display: flex;
  gap: var(--space-7);
  align-items: flex-start;
}
.product-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.product-info {
  flex: 0 0 clamp(320px, 38%, 460px);
  position: sticky; top: 96px;
  min-width: 0;
}
.gallery { /* ocupa naturalmente a largura do main */ }
.gallery--single .flex-control-nav,
.gallery--single .flex-control-thumbs { display: none !important; }
.gallery--single .woocommerce-product-gallery { margin-bottom: 0; }

/* Imagem principal da galeria — sempre quadrada, preenche todo o espaço.
   Mesmo padrão dos cards: aspect-ratio 1 + object-fit cover, então imagens
   pequenas escalam pra cima e proporções diferentes têm o excedente cortado. */
.woocommerce-product-gallery__image {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream-soft);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.woocommerce-product-gallery__image > a {
  display: block;
  width: 100%; height: 100%;
}
.woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Trigger de zoom do Woo — segue o desenho do mockup: pílula branca 44px no
   canto sup direito com ícone de lupa+plus; vira navy/cream no hover. */
.woocommerce-product-gallery { position: relative; }
.woocommerce-product-gallery__trigger {
  position: absolute !important;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  font-size: 0; text-indent: 0; padding: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%232E2F7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3M11 8v6M8 11h6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  transition: background-color 0.2s, transform 0.2s;
}
.woocommerce-product-gallery__trigger::before,
.woocommerce-product-gallery__trigger::after { display: none !important; }
.woocommerce-product-gallery__trigger:hover {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23F4E0CC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3M11 8v6M8 11h6'/></svg>");
  transform: scale(1.05);
}

/* Tira de thumbnails do FlexSlider — força layout horizontal em grid de 4
   colunas, sobrescrevendo o `float: left` + `width: 25%` da woocommerce.css
   (que em produção às vezes não pega por especificidade ou ordem de cascata).
   Também zera o list-style default do <ol> que o FlexSlider cria. */
.woocommerce-product-gallery .flex-control-nav,
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 calc((100% - 30px) / 4); /* 4 col com gap de 10px */
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  list-style: none !important;
}
.woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--radius-md);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
  transform: scale(1.02);
}

/* Disclaimer "imagens ilustrativas" abaixo da galeria. */
.gallery-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--line);
  margin-top: var(--space-3);
}
.gallery-disclaimer a { color: var(--orange); text-decoration: underline; }
.gallery-disclaimer a:hover { color: var(--navy); }

.product-story { padding-top: var(--space-2); }
@media (max-width: 900px) {
  .product-grid-layout { flex-direction: column; }
  .product-info { position: static; flex: 1 1 auto; width: 100%; }
}

.product-tags { display: flex; gap: var(--space-2); margin-bottom: var(--space-3); flex-wrap: wrap; }
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: var(--space-2);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.product-info h1 em { color: var(--orange); font-style: italic; }
.product-info .artist {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500; color: var(--ink-soft); font-style: italic;
  margin-bottom: var(--space-4);
}
.product-meta-row {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-5);
  font-size: 0.88rem;
}
.product-meta-row .meta { display: flex; flex-direction: column; }
.product-meta-row .label { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.product-meta-row .value { font-family: var(--font-display); color: var(--navy); font-weight: 600; }

.condition-block {
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
}
.condition-block .head {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed var(--line);
}
.condition-block h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); margin: 0; }
.condition-grid { display: flex; flex-direction: column; gap: var(--space-3); }
.condition-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: var(--space-3); padding: var(--space-2) 0;
}
.condition-item__label {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.condition-item__label .ico {
  display: block;
  width: 18px; height: 18px;
  margin-bottom: 6px;
  color: var(--orange);
}
.condition-item__body { display: flex; flex-direction: column; gap: 6px; }
.condition-item__body .grade {
  display: inline-flex; align-self: flex-start;
  color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: var(--radius-sm); text-transform: uppercase;
}
.condition-item__body p { font-size: 0.82rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

.price-block { display: flex; align-items: baseline; gap: var(--space-2); margin-bottom: var(--space-5); flex-wrap: wrap; }
.price-block .now {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700; color: var(--orange);
  letter-spacing: -0.02em;
}
.price-block .old { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.price-block .save {
  background: var(--yellow); color: var(--navy);
  font-size: 0.78rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-sm);
  letter-spacing: 0.06em; text-transform: uppercase;
  align-self: center;
}
.installments { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: var(--space-5); }
.installments strong { color: var(--navy); font-weight: 700; }

/* Bloco "Esgotado" — substitui price-block + buy-block quando o disco saiu. */
.out-of-stock-block {
  background: var(--cream-soft);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
  text-align: center;
}
.out-of-stock-block__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}
.out-of-stock-block__badge svg { color: var(--ink-soft); }
.out-of-stock-block p { color: var(--ink-soft); margin-bottom: var(--space-3); font-size: 0.95rem; }

/* Versão compacta no card de produto (busca, related). */
.price--oos {
  font-family: var(--font-display);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.buy-block { margin-bottom: var(--space-4); }
.buy-block form.cart,
.buy-block .sebo-cart-form {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0;
}

/* Pill com − / qty / + ----------------------------------- */
.sebo-qty {
  display: inline-flex;
  align-items: center;
  height: 50px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-pill);
  background: var(--white);
  overflow: hidden;
  flex-shrink: 0;
}
.sebo-qty__step {
  width: 44px;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: background 0.15s;
}
.sebo-qty__step:hover:not(:disabled) { background: var(--cream); }
.sebo-qty__step:disabled { opacity: 0.35; cursor: not-allowed; }

.sebo-qty input[type="number"].qty,
.sebo-qty input.qty {
  width: 48px;
  height: 46px;            /* 50 - 2*1.5 border = 47 → 46 fica perfeito visualmente */
  line-height: 46px;       /* centraliza vertical sem depender do user-agent */
  border: 0;
  background: transparent;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 0;
  margin: 0;
  vertical-align: middle;
  box-sizing: border-box;
  -moz-appearance: textfield;
  appearance: textfield;
}
.sebo-qty input.qty::-webkit-outer-spin-button,
.sebo-qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sebo-qty input.qty:focus { outline: none; box-shadow: none; }

/* Botão "Adicionar ao garimpo" --------------------------- */
/* Seletores extra-específicos pra vencer o WC core
   (.woocommerce button.button.alt) sem usar !important. */
.sebo-do-vinil .buy-block form.cart button.single_add_to_cart_button,
.sebo-do-vinil .buy-block .sebo-cart-form button.single_add_to_cart_button,
body.woocommerce .buy-block .single_add_to_cart_button,
.buy-block button.single_add_to_cart_button {
  flex: 1;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background: var(--orange);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  white-space: nowrap;
}
.sebo-do-vinil .buy-block button.single_add_to_cart_button:hover:not(:disabled),
.buy-block button.single_add_to_cart_button:hover:not(:disabled) {
  background: var(--orange-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.buy-block button.single_add_to_cart_button:active { transform: translateY(0); }
.buy-block button.single_add_to_cart_button:disabled,
.buy-block button.single_add_to_cart_button.disabled {
  opacity: 0.7; cursor: not-allowed;
}
.buy-block button.single_add_to_cart_button svg { flex-shrink: 0; width: 18px; height: 18px; }

@media (max-width: 600px) {
  .buy-block form.cart,
  .buy-block .sebo-cart-form { flex-direction: column; }
  .buy-block .single_add_to_cart_button { width: 100%; }
  .sebo-qty { align-self: flex-start; }
}

.secondary-actions { display: flex; gap: var(--space-3); margin-bottom: var(--space-5); }
.secondary-actions a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-size: 0.85rem; color: var(--ink-soft);
  background: var(--white);
}
.secondary-actions a:hover { border-color: var(--navy); color: var(--navy); }
.secondary-actions svg { width: 16px; height: 16px; }

.shipping-mini { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
.shipping-row {
  display: flex; gap: var(--space-3); align-items: center;
  padding: var(--space-3);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}
.shipping-row .ico { color: var(--navy); }
.shipping-row svg { width: 22px; height: 22px; }
.shipping-row p { margin: 0; font-size: 0.85rem; }
.shipping-row strong { font-family: var(--font-display); color: var(--navy); }

.product-story h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: var(--space-3) 0 var(--space-4);
  font-variation-settings: "SOFT" 60, "opsz" 144;
  max-width: 26ch;
}
.product-story p { font-size: 0.96rem; line-height: 1.65; color: var(--ink-soft); margin: 0 0 var(--space-3); }
.product-story .copy-note {
  display: block;
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: var(--cream-soft);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.55;
}
.product-story .copy-note strong { color: var(--navy); font-family: var(--font-display); }

.product-tracklist { margin-top: var(--space-7); margin-bottom: var(--space-5); }
.tracklist-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.lado {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--line);
}
.lado__head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.lado__stamp {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.4rem;
  flex-shrink: 0;
}
.lado__stamp.b { background: var(--navy); color: var(--cream); }
.lado__head h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 2px; }
.lado__head .meta { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }
.lado ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.lado ol li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.lado ol li:hover { background: var(--white); }
.lado ol li .num { font-family: var(--font-display); font-weight: 600; color: var(--orange); font-size: 0.88rem; }
.lado ol li .name { color: var(--ink); font-weight: 500; }
.lado ol li .time { color: var(--muted); font-size: 0.85rem; font-variant-numeric: tabular-nums; }
@media (max-width: 700px) { .tracklist-layout { grid-template-columns: 1fr; } }

.curator-note {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  position: relative;
  overflow: hidden;
}
.curator-note::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.95;
}
.curator-note h5 {
  font-family: var(--font-body);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--yellow); margin-bottom: var(--space-3); font-weight: 600;
}
.curator-note p {
  font-family: var(--font-display);
  font-size: 1.05rem; line-height: 1.5;
  margin-bottom: var(--space-3);
  font-style: italic;
  position: relative; z-index: 1;
  color: var(--cream);
}
.curator-note .author { display: flex; align-items: center; gap: var(--space-3); position: relative; z-index: 1; }
.curator-note .author .avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 0.9rem;
}
.curator-note .author .name { font-size: 0.85rem; font-weight: 600; color: var(--cream); }

.related-section { background: var(--cream-soft); padding: var(--space-7) 0 var(--space-8); margin-top: 0; }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-5); }
@media (max-width: 1000px) { .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); } }
.product-card__title, .product-card__artist { overflow-wrap: anywhere; word-break: break-word; }

/* ---- Pequenas correções pra integrar WC ao tema ---- */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
  background: var(--cream-soft);
  border-left: 4px solid var(--orange);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--ink);
  margin-bottom: var(--space-4);
  list-style: none;
}
.woocommerce-error { border-left-color: #c0392b; }
.woocommerce-message a, .woocommerce-info a { color: var(--navy); font-weight: 600; }
.woocommerce-breadcrumb { display: none; }
.woocommerce-result-count, .woocommerce-pagination { /* substituídos pelo nosso layout */ }

/* WC default product list reset (we render via sebo_product_card) */
ul.products { list-style: none; padding: 0; margin: 0; }

/* ---- Calculador de frete (produto único) ---- */
.shipping-calc {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
}
.shipping-calc__head {
  display: flex; gap: var(--space-3); align-items: center;
  margin-bottom: var(--space-3);
}
.shipping-calc__head .ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.shipping-calc__head svg { width: 20px; height: 20px; }
.shipping-calc__head h4 { font-family: var(--font-display); font-size: 0.98rem; color: var(--navy); margin: 0 0 2px; }
.shipping-calc__head p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.shipping-calc__form { display: flex; gap: var(--space-2); margin-bottom: var(--space-3); }
.shipping-calc__form input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  font-family: inherit;
  /* Desktop: 0.92rem fica visualmente melhor. Mobile força 16px pra iOS
     Safari não fazer auto-zoom no focus (gatilho do auto-zoom é font<16px). */
  font-size: 1rem;
  background: var(--cream-soft);
  color: var(--navy);
}
@media (min-width: 769px) {
  .shipping-calc__form input { font-size: 0.92rem; }
}
.shipping-calc__form input:focus { outline: none; border-color: var(--navy); background: var(--white); }
.shipping-calc__form input.shake { animation: shake 0.35s ease; border-color: var(--orange); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}
.shipping-calc__form button {
  padding: 12px 22px; border-radius: var(--radius-pill);
  background: var(--navy); color: var(--cream);
  font-family: inherit; font-size: 0.88rem; font-weight: 600;
  white-space: nowrap;
  border: 0; cursor: pointer;
}
.shipping-calc__form button:hover:not(:disabled) { background: var(--navy-deep); }
.shipping-calc__form button:disabled { opacity: 0.7; cursor: progress; }
.shipping-calc__cep-help { font-size: 0.78rem; color: var(--orange); font-weight: 600; display: inline-block; }
.shipping-calc__results {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  display: none;
  flex-direction: column; gap: 6px;
  overflow: hidden;
  animation: expandDown 0.35s cubic-bezier(.2,.8,.3,1.05);
}
.shipping-calc.is-open .shipping-calc__results {
  display: flex;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px dashed var(--line);
}
.shipping-calc.is-open .shipping-calc__form button { background: var(--cream); color: var(--navy); }
.shipping-calc.is-open .shipping-calc__form button::before { content: "↻ "; font-weight: 700; }
@keyframes expandDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shipping-calc__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.shipping-calc__row:hover { background: var(--cream-soft); }
.shipping-calc__row .opt strong { font-family: var(--font-display); color: var(--navy); display: block; font-weight: 600; }
.shipping-calc__row .opt small { font-size: 0.75rem; color: var(--muted); }
.shipping-calc__row .cost { font-family: var(--font-display); font-weight: 700; color: var(--orange); }
.shipping-calc__row .cost.free { color: #2e8a3b; }

/* ---- Newsletter popup — erro inline + loading ---- */
.newsletter-popup__error {
  background: #fde7e1;
  color: #9a2a2a;
  border: 1px solid #f3b8a8;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.newsletter-popup__cta:disabled {
  opacity: 0.7;
  cursor: progress;
}

/* ---- Catalog filter form (sidebar) ---------------------- */
.filters__form { display: flex; flex-direction: column; }
.filters__clear { font-size: 0.8rem; color: var(--orange); }

/* filter-option agora é o próprio label clicável */
label.filter-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}
label.filter-option:hover { color: var(--navy); }
.filter-option__check {
  display: inline-flex; align-items: center; gap: 8px;
  flex: 1;
}
.filter-option__check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 3px;
  accent-color: var(--navy);
  margin: 0;
}

/* Slider de preço */
.price-range { padding: var(--space-2) 0; }
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
  cursor: pointer;
}
.price-range__values {
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}
.price-range__values strong { color: var(--navy); font-family: var(--font-display); }

/* Botão submit do form */
.filters__submit {
  margin-top: var(--space-5);
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--cream);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.filters__submit:hover { background: var(--navy-deep); }

/* ---- Caixa de promoção (banner inline no catálogo) ---- */
a.promo-card {
  grid-column: span 1;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--navy);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--navy);
}
a.promo-card::before {
  content: "";
  position: absolute; right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 60%, transparent 61%);
  pointer-events: none;
}
.promo-card .pin {
  font-family: var(--font-hand);
  color: var(--orange);
  font-size: 1.1rem;
  display: inline-block;
  transform: rotate(-3deg);
}
.promo-card h3 {
  font-family: var(--font-hand);
  font-size: 2.4rem;
  line-height: 0.95;
  color: var(--navy);
  text-transform: uppercase;
  margin: var(--space-3) 0 0;
}
.promo-card__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: var(--space-3);
  position: relative; z-index: 1;
}
.promo-card__price .reais {
  font-family: var(--font-hand);
  color: var(--orange);
  font-size: 1.4rem;
}
.promo-card__price .num {
  font-family: var(--font-hand);
  font-size: 4rem;
  color: #DA1A6A;
  line-height: 0.9;
}
.promo-card .btn {
  align-self: flex-start;
  position: relative; z-index: 1;
}

/* ---- Utility bar: tracker de frete grátis ---- */
.utility-bar { transition: background 0.35s ease; }
.utility-bar:has(.sebo-tracker--earned) { background: linear-gradient(90deg, var(--orange) 0%, var(--orange-deep) 100%); }
.sebo-tracker { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sebo-tracker--earned strong { color: var(--cream); }
.sebo-tracker__bar {
  display: inline-block;
  width: 140px; height: 4px;
  border-radius: 2px;
  background: rgba(244, 224, 204, 0.2);
  overflow: hidden;
  vertical-align: middle;
}
.sebo-tracker__fill {
  display: block; height: 100%;
  background: var(--yellow);
  transition: width 0.4s cubic-bezier(.2,.8,.3,1.05);
}

/* ---- Search trigger: agora é um <form> real, não um botão ---- */
.search-trigger {
  /* sobrescrevendo o estilo antigo de botão */
  display: flex; align-items: center; gap: var(--space-2);
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  min-width: 240px;
  transition: border-color 0.2s, background 0.2s;
  margin: 0;
}
.search-trigger:focus-within { border-color: var(--navy); }
.search-trigger svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--muted);
}
.search-trigger input[type="search"] {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0;
  min-width: 0;
}
.search-trigger input[type="search"]::placeholder { color: var(--muted); }
.search-trigger input[type="search"]:focus { outline: none; }
.search-trigger input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

/* Esconde o form no breakpoint que mostra o icon-btn */
@media (max-width: 1180px) {
  .search-trigger { display: none; }
  .search-icon-btn { display: inline-flex; }
}

/* ---- Add-to-cart mini: feedback visual de loading/added ---- */
.add-to-cart-mini.loading { opacity: 0.7; pointer-events: none; }
.add-to-cart-mini.added {
  background: var(--yellow);
  color: var(--navy);
  transform: scale(1.08);
}
.add-to-cart-mini.added svg { display: none; }
.add-to-cart-mini.added::after {
  content: "✓";
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
}

/* ============================================
   Páginas "Décadas" e "Gêneros" — visuais ricos
   ============================================ */

.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute;
  right: -120px; bottom: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    transparent 0, transparent 9px,
    rgba(244, 184, 46, 0.14) 9px, rgba(244, 184, 46, 0.14) 10px);
  z-index: 0; pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  margin: var(--space-3) 0;
}
.page-hero h1 em { color: var(--yellow); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.page-hero p { font-size: 1.05rem; opacity: 0.88; max-width: 56ch; }

/* ---- Páginas de conteúdo (sobre, etc) ---- */
.content-wrap { padding: var(--space-8) 0 var(--space-8); }
.content-wrap > .container { max-width: 760px; }
.content-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: var(--space-7) 0 var(--space-4);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.content-wrap h2:first-of-type { margin-top: 0; }
.content-wrap h2 em { color: var(--orange); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.content-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: var(--space-5) 0 var(--space-3);
}
.content-wrap p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.content-wrap p em { color: var(--navy); font-style: italic; }
.content-wrap p strong { color: var(--navy); }
.content-wrap a { color: var(--orange); text-decoration: underline; text-decoration-color: rgba(232, 93, 44, 0.4); }
.content-wrap a:hover { text-decoration-color: var(--orange); }
.content-wrap ul, .content-wrap ol { padding-left: 1.2em; margin-bottom: var(--space-4); }
.content-wrap ul li, .content-wrap ol li {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
  line-height: 1.55;
}
.content-wrap ul li::marker { color: var(--orange); }

/* Pull quote dentro de página de conteúdo */
.pull-quote {
  border-left: 4px solid var(--orange);
  background: var(--cream-soft);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-2);
}
.pull-quote cite {
  font-size: 0.85rem; color: var(--muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
  padding: var(--space-5);
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
}
.about-stats__item { text-align: center; }
.about-stats__item .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--yellow);
  display: block; line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.about-stats__item .lbl {
  font-size: 0.78rem;
  opacity: 0.85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .about-stats { grid-template-columns: 1fr; gap: var(--space-3); }
  .about-stats__item { display: flex; align-items: baseline; gap: var(--space-3); justify-content: flex-start; text-align: left; }
  .about-stats__item .num { font-size: 2rem; }
}

/* Tabela de grades Goldmine — grade (pílula colorida) à esquerda, descrição
   à direita. No mobile vira coluna. Reusa as classes `.grade--*` que já
   estilam as pílulas no card de produto. */
.goldmine-grid {
  display: flex; flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-4) 0 var(--space-6);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.goldmine-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.goldmine-row:last-child { border-bottom: 0; }
.goldmine-row .grade {
  justify-self: start;
  white-space: nowrap;
  font-size: 0.85rem;
}
.goldmine-row p { margin: 0; font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 600px) {
  .goldmine-row { grid-template-columns: 1fr; gap: var(--space-2); padding: var(--space-3); }
  .goldmine-row p { font-size: 0.9rem; }
}

/* CTA card no fim das páginas de conteúdo */
.content-cta {
  margin: var(--space-7) 0 0;
  padding: var(--space-6);
  background: var(--yellow);
  border-radius: var(--radius-lg);
  display: flex; gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 6px 6px 0 var(--navy);
}
.content-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0;
}
.content-cta p { color: var(--navy); margin: 4px 0 0; font-size: 0.95rem; max-width: 36ch; }
.content-cta .btn { flex-shrink: 0; }
@media (max-width: 600px) { .content-cta { padding: var(--space-4); } }

/* ---- Décadas ---- */
.decades-body { padding: var(--space-7) 0 var(--space-8); }
.timeline-intro {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-6);
  flex-wrap: wrap; gap: var(--space-3);
}
.timeline-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.timeline-intro h2 em { color: var(--orange); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.timeline-intro .eyebrow { display: block; color: var(--orange); margin-bottom: 4px; }
.timeline-intro .total { font-family: var(--font-display); color: var(--muted); font-size: 0.95rem; }

.decades-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
@media (max-width: 960px) { .decades-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .decades-grid { grid-template-columns: minmax(0, 1fr); } }

.decade-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
}
.decade-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.decade-card__visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.decade-card__visual svg { width: 100%; height: 100%; }
.decade-card__body {
  flex: 1;
  background: var(--white);
  padding: var(--space-4) var(--space-5);
  display: flex; flex-direction: column; gap: 6px;
  border: 1.5px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.decade-card__era {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.decade-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  font-variation-settings: "SOFT" 70, "opsz" 144;
}
.decade-card__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 2px 0 var(--space-3);
  line-height: 1.5;
}
.decade-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-3);
  margin-top: auto;
  border-top: 1px dashed var(--line);
}
.decade-card__count {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.05rem;
}
.decade-card__count small { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-left: 4px; }
.decade-card__arrow { color: var(--navy); transition: transform 0.2s; }
.decade-card:hover .decade-card__arrow { transform: translateX(4px); }
.decade-card__arrow svg { width: 18px; height: 18px; }

.insight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding: var(--space-5);
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
}
@media (max-width: 700px) { .insight-row { grid-template-columns: 1fr; } }
.insight { display: flex; gap: var(--space-3); align-items: flex-start; }
.insight .ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.insight .ico svg { width: 18px; height: 18px; }
.insight h4 { font-family: var(--font-display); color: var(--navy); font-size: 0.98rem; margin: 0 0 4px; }
.insight p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ---- Gêneros ---- */
.genres-body { padding: var(--space-7) 0 var(--space-8); }
.genre-group { margin-bottom: var(--space-8); }
.genre-group:last-of-type { margin-bottom: 0; }
.genre-group__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: var(--space-5);
  flex-wrap: wrap; gap: var(--space-3);
}
.genre-group__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.genre-group__head h2 em { color: var(--orange); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.genre-group__head .eyebrow { display: block; color: var(--orange); margin-bottom: 4px; }
.genre-group__head .count { font-family: var(--font-display); color: var(--muted); font-size: 0.95rem; }

.genres-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}
@media (max-width: 1000px) { .genres-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .genres-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 380px)  { .genres-grid { grid-template-columns: minmax(0, 1fr); } }

.genre-card {
  position: relative;
  display: flex; flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  min-height: 170px;
  text-decoration: none;
  color: inherit;
}
.genre-card::before {
  content: ""; position: absolute;
  right: -50px; bottom: -50px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.5;
  transition: all 0.3s;
}
.genre-card:hover { transform: translateY(-4px); border-color: var(--navy); box-shadow: var(--shadow-md); }
.genre-card:hover::before { background: var(--orange); opacity: 0.4; }
.genre-card:hover .ico-ring { background: var(--orange); color: var(--white); }
.genre-card .ico-ring {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  position: relative; z-index: 1;
}
.genre-card .ico-ring svg { width: 22px; height: 22px; }
.genre-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
  position: relative; z-index: 1;
}
.genre-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  position: relative; z-index: 1;
  line-height: 1.4;
}
.genre-card .count-pill {
  display: inline-flex; align-self: flex-start;
  margin-top: auto;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--cream-soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  position: relative; z-index: 1;
}
.genre-card.featured { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.genre-card.featured h3 { color: var(--yellow); }
.genre-card.featured p { color: var(--cream); opacity: 0.8; }
.genre-card.featured .ico-ring { background: var(--orange); color: var(--white); }
.genre-card.featured .count-pill { background: rgba(244, 224, 204, 0.15); color: var(--cream); }
.genre-card.featured::before { background: var(--orange); opacity: 0.5; }

.discover-cta {
  margin-top: var(--space-7);
  padding: var(--space-6);
  background: var(--yellow);
  border-radius: var(--radius-lg);
  display: flex; gap: var(--space-5);
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 6px 6px 0 var(--navy);
}
.discover-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--navy); margin: 0;
}
.discover-cta p { color: var(--navy); margin: 4px 0 0; font-size: 0.95rem; max-width: 36ch; }
@media (max-width: 600px) { .discover-cta { padding: var(--space-4); } }

/* ============================================
   Página do carrinho — layout 2 colunas
   ============================================ */

.cart-hero {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}
.cart-hero::after {
  content: ""; position: absolute;
  right: -120px; bottom: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    transparent 0, transparent 9px,
    rgba(244, 184, 46, 0.14) 9px, rgba(244, 184, 46, 0.14) 10px);
  z-index: 0; pointer-events: none;
}
.cart-hero__inner { position: relative; z-index: 1; }
.cart-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  margin: var(--space-3) 0;
}
.cart-hero h1 em { color: var(--yellow); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.cart-hero p { font-size: 1rem; opacity: 0.88; max-width: 60ch; margin: 0; }

/* Callout de frete grátis dentro do totals-panel (estilo selo/carimbo,
   alinhado ao resto da identidade — sem emoji, sem celebração de IA).
   `.shipping-callout--earned`  → fundo amarelo, selo carimbado preto+navy
   `.shipping-callout--progress` → fundo cream-soft, selo discreto */
.shipping-callout {
  display: flex; align-items: center; gap: var(--space-3);
  margin: 0 0 var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
}
.shipping-callout p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.shipping-callout p strong {
  color: var(--navy);
  font-family: var(--font-display);
}
.shipping-callout__stamp {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  border: 1.5px solid currentColor;
}

.shipping-callout--earned {
  background: var(--yellow);
  border: 1.5px dashed var(--navy);
}
.shipping-callout--earned .shipping-callout__stamp {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.shipping-callout--earned p { color: var(--navy); }
.shipping-callout--earned p strong { color: var(--navy); }

.shipping-callout--progress {
  background: var(--cream-soft);
  border: 1px solid var(--line);
}
.shipping-callout--progress .shipping-callout__stamp {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
  padding: 4px 8px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-6);
  margin: var(--space-6) auto var(--space-9);
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; gap: var(--space-5); margin-bottom: var(--space-7); }
}

.cart-panel {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
@media (max-width: 600px) { .cart-panel { padding: var(--space-4); } }
.cart-panel__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1.5px dashed var(--line);
}
.cart-panel__head h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin: 0; }
.cart-panel__head .meta { font-size: 0.85rem; color: var(--muted); }

.cart-items { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 100px 110px 32px;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item__cover {
  width: 80px; height: 80px;
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--cream-soft);
  flex-shrink: 0;
}
.cart-item__cover a,
.cart-item__cover img,
.cart-item__cover svg {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.cart-item__info h4 {
  font-family: var(--font-display);
  font-size: 1.02rem; color: var(--navy);
  margin: 0 0 4px; line-height: 1.2;
}
.cart-item__info h4 a { color: inherit; }
.cart-item__info h4 a:hover { color: var(--orange); }
.cart-item__info .artist { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.cart-item__info .stock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--muted);
  margin-top: 6px;
}
.cart-item__info .stock::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #ffa726; flex-shrink: 0;
}
.cart-item__unit-price {
  font-family: var(--font-display);
  font-size: 0.92rem; color: var(--ink-soft);
  text-align: right;
}
.cart-item__subtotal {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--orange);
  font-weight: 700;
  text-align: right;
}
.cart-item__subtotal .woocommerce-Price-amount { color: inherit; }
.cart-item__remove {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  justify-self: end;
}
.cart-item__remove:hover { background: var(--orange); color: var(--white); }
.cart-item__remove svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .cart-item {
    grid-template-columns: 70px minmax(0, 1fr) 32px;
    grid-template-areas:
      "img info     remove"
      "img subtotal subtotal";
    gap: var(--space-2) var(--space-3);
    row-gap: var(--space-2);
    padding: var(--space-3) 0;
  }
  .cart-item__cover { grid-area: img; width: 70px; height: 70px; }
  .cart-item__info { grid-area: info; }
  .cart-item__remove { grid-area: remove; }
  .cart-item__unit-price { display: none; }
  .cart-item__subtotal { grid-area: subtotal; text-align: right; font-size: 1rem; }
}

.cart-note {
  display: flex; align-items: center; gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange);
}
.cart-note svg {
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}
.cart-note p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cart-note p strong { color: var(--navy); font-family: var(--font-display); }

.totals-panel {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: sticky;
  top: 110px;
  overflow: hidden;
}
@media (max-width: 900px) { .totals-panel { position: static; } }
.totals-panel::before {
  content: "";
  position: absolute; right: -50px; top: -50px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--cream-soft);
  z-index: 0;
}
.totals-panel > * { position: relative; z-index: 1; }
.totals-panel h2 {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--navy);
  margin: 0 0 var(--space-4);
  display: flex; align-items: center; gap: 8px;
}
.totals-panel h2 svg { width: 18px; height: 18px; color: var(--orange); }

.totals-list {
  list-style: none; padding: 0; margin: 0 0 var(--space-3);
  display: flex; flex-direction: column;
  border-bottom: 1.5px dashed var(--line);
  padding-bottom: var(--space-3);
  gap: 8px;
}
.totals-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.92rem;
}
.totals-list .label { color: var(--ink-soft); }
.totals-list .value { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.totals-list .value.free { color: #2e8a3b; font-weight: 700; letter-spacing: 0.04em; }
.totals-list .value .woocommerce-Price-amount { color: inherit; font-family: inherit; font-weight: inherit; }

.totals-grand {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: var(--space-3) 0 var(--space-4);
}
.totals-grand .label { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.totals-grand .value,
.totals-grand .value .woocommerce-Price-amount {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.totals-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  background: var(--orange); color: var(--white);
  font-family: inherit; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  transition: all 0.2s;
  text-decoration: none;
}
.totals-cta:hover { background: var(--orange-deep); transform: translateY(-1px); color: var(--white); }
.totals-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* CTA secundário (só aparece após add-to-cart vindo da página de produto). */
.totals-cta-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: var(--space-2);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: inherit; font-size: 0.92rem; font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: all 0.2s;
}
.totals-cta-secondary:hover {
  background: var(--navy); color: var(--cream);
}
.totals-cta-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

.totals-trust {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1.5px dashed var(--line);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.totals-trust .row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--ink-soft);
}
.totals-trust .row svg { width: 16px; height: 16px; color: #2e8a3b; flex-shrink: 0; }

.keep-shopping {
  text-align: center;
  margin-top: var(--space-3);
}
.keep-shopping a { color: var(--navy); font-size: 0.88rem; text-decoration: underline; text-decoration-color: rgba(46, 47, 122, 0.3); }
.keep-shopping a:hover { text-decoration-color: var(--navy); }

/* Esconde mensagens default do WC que ficam fora do nosso layout (notices ficam acima) */
.woocommerce-cart-form .shop_table { display: none; }
.woocommerce-cart-form .cart-collaterals { display: none; }

/* ============================================
   Página Minha Conta — sidebar + content
   ============================================ */

.account-page {
  display: block;
  margin: var(--space-6) auto var(--space-9);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .account-layout { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* Sidebar nav */
.account-nav-panel {
  position: sticky;
  top: 110px;
}
@media (max-width: 900px) { .account-nav-panel { position: static; } }
.account-nav {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  display: flex; flex-direction: column;
  gap: 2px;
}
.account-nav__item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.account-nav__item:hover { background: var(--cream-soft); color: var(--navy); }
.account-nav__item.is-active {
  background: var(--navy); color: var(--cream); font-weight: 600;
}
.account-nav__ico {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.account-nav__item.is-active .account-nav__ico { background: var(--orange); color: var(--white); }
.account-nav__ico svg { width: 16px; height: 16px; }
.account-nav__label { flex: 1; }
.account-nav__chevron { color: var(--yellow); }
.account-nav__chevron svg { width: 14px; height: 14px; }

/* Content */
.account-content {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  min-height: 360px;
}
@media (max-width: 600px) { .account-content { padding: var(--space-4); } }

/* Dashboard — boas-vindas + grid de tiles */
.account-dashboard__head {
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1.5px dashed var(--line);
}
.account-dashboard__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--navy);
  margin: 0 0 var(--space-2);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.account-dashboard__head p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.account-dashboard__head a { color: var(--orange); font-weight: 600; }

.account-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}
@media (max-width: 700px) { .account-dashboard__grid { grid-template-columns: 1fr; } }

.account-tile {
  display: block;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: var(--cream-soft);
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.account-tile:hover { transform: translateY(-2px); border-color: var(--navy); box-shadow: var(--shadow-sm); }
.account-tile h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 4px;
}
.account-tile p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; line-height: 1.4; }
.account-tile__arrow {
  position: absolute; right: var(--space-4); top: 50%; transform: translateY(-50%);
  color: var(--orange);
  opacity: 0.6;
  transition: opacity 0.15s, transform 0.15s;
}
.account-tile:hover .account-tile__arrow { opacity: 1; transform: translateY(-50%) translateX(4px); }
.account-tile__arrow svg { width: 18px; height: 18px; }

.account-dashboard__signout {
  margin-top: var(--space-6);
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.account-dashboard__signout a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* Login / register split */
.account-auth { padding: 0; }
.account-auth--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  background: var(--white);
}
@media (max-width: 800px) {
  .account-auth--split { grid-template-columns: 1fr; }
}
.account-auth:not(.account-auth--split) {
  max-width: 480px; margin: 0 auto;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.account-auth__panel {
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.account-auth__panel header { margin-bottom: var(--space-2); }
.account-auth__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--navy); margin: var(--space-2) 0 0;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.account-auth__panel header p { font-size: 0.92rem; color: var(--ink-soft); margin: var(--space-2) 0 0; line-height: 1.5; }
.account-auth__panel--register {
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.account-auth__panel--register::after {
  content: ""; position: absolute;
  right: -100px; bottom: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    transparent 0, transparent 8px,
    rgba(244, 184, 46, 0.14) 8px, rgba(244, 184, 46, 0.14) 9px);
  pointer-events: none;
}
.account-auth__panel--register > * { position: relative; z-index: 1; }
.account-auth__panel--register h2 { color: var(--cream); }
.account-auth__panel--register .eyebrow { color: var(--yellow); }
.account-auth__panel--register .field label { color: var(--cream); }
.account-auth__panel--register .field input {
  background: rgba(244, 224, 204, 0.08);
  border-color: rgba(244, 224, 204, 0.3);
  color: var(--cream);
}
.account-auth__panel--register .field input:focus {
  background: rgba(244, 224, 204, 0.15);
  border-color: var(--yellow);
}
.account-auth__note { font-size: 0.8rem; color: var(--ink-soft); margin: 0; opacity: 0.7; }
.account-auth__panel--register .account-auth__note { color: var(--cream); opacity: 0.7; }

.account-auth__remember {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--ink-soft);
  cursor: pointer;
}
.account-auth__remember input { width: 16px; height: 16px; accent-color: var(--navy); }

.account-auth__cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background: var(--orange); color: var(--white);
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  border: 0; cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.account-auth__cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
.account-auth__cta svg { width: 16px; height: 16px; }
.account-auth__cta--accent { background: var(--yellow); color: var(--navy); }
.account-auth__cta--accent:hover { background: var(--yellow-soft); color: var(--navy); }

.account-auth__lost {
  font-size: 0.85rem; color: var(--orange); font-weight: 600;
  text-decoration: none; align-self: flex-start;
  margin-top: var(--space-2);
}
.account-auth__panel--register .account-auth__lost { color: var(--yellow); }

/* Inputs gerais dentro do account (cobre orders, edit-account, edit-address) */
.account-content .field,
.account-content .woocommerce-form-row,
.account-content p.form-row {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: var(--space-3);
}
.account-content label,
.account-content .woocommerce-form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.account-content input[type="text"],
.account-content input[type="email"],
.account-content input[type="password"],
.account-content input[type="tel"],
.account-content input[type="number"],
.account-content textarea,
.account-content select,
.account-auth input[type="text"],
.account-auth input[type="email"],
.account-auth input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.account-content input:focus,
.account-content textarea:focus,
.account-content select:focus,
.account-auth input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(46, 47, 122, 0.12);
}

/* Botões dentro de forms do my-account (Save, Update, etc.) */
.account-content button[type="submit"],
.account-content .woocommerce-Button,
.account-content .button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--navy); color: var(--cream);
  font-family: inherit; font-size: 0.92rem; font-weight: 600;
  border: 0; cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.account-content button[type="submit"]:hover,
.account-content .woocommerce-Button:hover,
.account-content .button:hover { background: var(--navy-deep); color: var(--cream); }

/* Tabela de pedidos */
.account-content table.shop_table,
.account-content table.woocommerce-orders-table,
.account-content table.woocommerce-MyAccount-orders {
  width: 100%; border-collapse: collapse;
  font-size: 0.92rem;
}
.account-content table.shop_table thead th,
.account-content table.woocommerce-orders-table thead th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px;
  border-bottom: 1.5px solid var(--line);
}
.account-content table.shop_table tbody td,
.account-content table.woocommerce-orders-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.account-content table.shop_table tbody tr:last-child td { border-bottom: 0; }
.account-content .woocommerce-orders-table__cell-order-actions { text-align: right; }
.account-content .woocommerce-orders-table__cell-order-actions a {
  display: inline-flex; align-items: center; padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--cream-soft); color: var(--navy);
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line);
}
.account-content .woocommerce-orders-table__cell-order-actions a:hover {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}
.account-content .woocommerce-orders-table__cell-order-status {
  font-family: var(--font-display); color: var(--orange); font-weight: 600;
}

/* Endereço */
.account-content .woocommerce-Address {
  background: var(--cream-soft);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
}
.account-content .woocommerce-Address-title h3 {
  font-family: var(--font-display); color: var(--navy);
  margin: 0 0 var(--space-2);
}
.account-content .woocommerce-Address-title a {
  font-size: 0.82rem; color: var(--orange);
  font-weight: 600;
}
.account-content address {
  font-style: normal;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Hide WC-injected myaccount headings that duplicam o nosso hero */
.account-content > h2,
.account-content > h3:first-child { display: none; }

/* Pagination dentro do account */
.account-content .woocommerce-pagination ul,
.account-content .woocommerce-Pagination ul {
  list-style: none; padding: 0; margin: var(--space-5) 0 0;
  display: flex; gap: var(--space-2); justify-content: center;
}
.account-content .woocommerce-pagination a,
.account-content .woocommerce-Pagination a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  text-decoration: none;
}
.account-content .woocommerce-pagination a:hover { border-color: var(--navy); color: var(--navy); }
.account-content .woocommerce-pagination .current { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ============================================
   Carrinho vazio — empty state branded
   ============================================ */

.cart-empty-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--space-7);
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  margin: var(--space-6) auto;
  max-width: 880px;
  box-shadow: 8px 8px 0 var(--navy);
}
@media (max-width: 700px) {
  .cart-empty-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-5);
    box-shadow: 4px 4px 0 var(--navy);
  }
}

.cart-empty-card__visual {
  width: 220px; height: 220px;
  justify-self: center;
  position: relative;
  animation: cartEmptySpin 18s linear infinite;
}
.cart-empty-card__visual svg { width: 100%; height: 100%; display: block; }
@keyframes cartEmptySpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@media (max-width: 700px) {
  .cart-empty-card__visual { width: 160px; height: 160px; }
}

.cart-empty-card__copy { display: flex; flex-direction: column; gap: var(--space-3); }
.cart-empty-card__pin {
  font-family: var(--font-hand);
  color: var(--orange);
  font-size: 1.05rem;
  transform: rotate(-2deg);
  display: inline-block;
  align-self: flex-start;
}
@media (max-width: 700px) {
  .cart-empty-card__pin { align-self: center; }
}
.cart-empty-card__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: "SOFT" 70, "opsz" 144;
}
.cart-empty-card__copy p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 44ch;
}
.cart-empty-card__copy p strong { color: var(--navy); font-family: var(--font-display); }

.cart-empty-card__ctas {
  display: flex; gap: var(--space-4); align-items: center;
  margin-top: var(--space-2);
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .cart-empty-card__ctas { justify-content: center; }
}
.cart-empty-card__cta {
  width: auto;
  padding: 14px 28px;
  font-size: 0.95rem;
}
.cart-empty-card__link {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(46, 47, 122, 0.3);
}
.cart-empty-card__link:hover { text-decoration-color: var(--navy); }

/* Rail de sugestões logo abaixo */
.cart-empty-rail {
  margin: var(--space-7) 0 var(--space-9);
}
.cart-empty-rail .results__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1000px) { .cart-empty-rail .results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .cart-empty-rail .results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); } }

/* ---- Empty state das abas do my-account (orders, downloads) ---- */
.account-empty {
  text-align: center;
  padding: var(--space-7) var(--space-5);
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-3);
  background: var(--cream-soft);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
}
.account-empty__visual {
  width: 140px; height: 140px;
  margin-bottom: var(--space-2);
}
.account-empty__visual svg { width: 100%; height: 100%; display: block; }
.account-empty__pin {
  font-family: var(--font-hand);
  color: var(--orange);
  font-size: 1.05rem;
  transform: rotate(-2deg);
  display: inline-block;
}
.account-empty h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--navy);
  margin: 0;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.account-empty p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 44ch;
  line-height: 1.55;
}
.account-empty__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: var(--space-3);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--orange); color: var(--white);
  font-family: inherit; font-size: 0.92rem; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.account-empty__cta:hover {
  background: var(--orange-deep); color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.account-empty__cta svg { width: 16px; height: 16px; }

/* Suprime a Notice "Nenhum pedido foi feito" / "Não há downloads" do WC */
.account-content .woocommerce-MyAccount-orders-no-orders,
.account-content .woocommerce-Message--info,
.account-content .woocommerce-info.woocommerce-MyAccount-content-wrapper {
  display: none;
}

/* ---- Botão Compartilhar (single product) ---- */
.secondary-actions .sebo-share {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s;
}
.secondary-actions .sebo-share:hover { border-color: var(--navy); color: var(--navy); }
.secondary-actions .sebo-share svg { width: 16px; height: 16px; }

/* ---- Toast (feedback do compartilhar, copiado, etc.) ---- */
.sebo-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--navy);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  animation: seboToast 2.5s cubic-bezier(.2,.8,.3,1.05) forwards;
}
@keyframes seboToast {
  0%   { opacity: 0; transform: translate(-50%, 20px); }
  10%  { opacity: 1; transform: translate(-50%, 0); }
  80%  { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -10px); }
}

/* ============================================
   Blog do Lado B — listagem (home.php)
   ============================================ */

.blog-body { padding: var(--space-6) 0 var(--space-8); }

.blog-tabs {
  display: flex; gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1.5px dashed var(--line);
}
.blog-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}
.blog-tab:hover { border-color: var(--navy); }
.blog-tab.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.blog-tab .count { opacity: 0.6; font-weight: 400; }
.blog-tab.active .count { color: var(--yellow); opacity: 1; }

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-7);
  position: relative;
  text-decoration: none;
  color: var(--cream);
}
@media (max-width: 800px) { .featured-post { grid-template-columns: 1fr; } }
.featured-post__visual {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.featured-post__visual svg,
.featured-post__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.featured-post__body {
  padding: var(--space-6) var(--space-5);
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-3);
}
.featured-post__label {
  display: inline-flex; align-self: flex-start;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transform: rotate(-1deg);
}
.featured-post__category {
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
}
.featured-post__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
  font-variation-settings: "SOFT" 70, "opsz" 144;
}
.featured-post__title em { color: var(--yellow); font-style: italic; }
.featured-post__excerpt {
  font-size: 0.98rem;
  opacity: 0.88;
  line-height: 1.55;
  max-width: 50ch;
  margin: 0;
}
.featured-post__meta {
  display: flex; align-items: center; gap: var(--space-3);
  margin-top: var(--space-3);
  font-size: 0.82rem;
  opacity: 0.85;
  flex-wrap: wrap;
}
.featured-post__meta .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.78rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.featured-post__meta .dot { opacity: 0.4; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
@media (max-width: 1000px) { .posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .posts-grid { grid-template-columns: minmax(0, 1fr); } }

.post-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--navy); box-shadow: var(--shadow-md); }
.post-card__visual { height: 180px; overflow: hidden; background: var(--cream-soft); }
.post-card__visual svg,
.post-card__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.post-card__body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex; flex-direction: column; flex: 1; gap: var(--space-2);
}
.post-card__category {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.post-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.post-card__excerpt {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.post-card__meta {
  display: flex; align-items: center; gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.post-card__meta .dot { opacity: 0.4; }

.newsletter-strip {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-top: var(--space-7);
  display: flex; gap: var(--space-5);
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 6px 6px 0 var(--navy);
}
.newsletter-strip h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--navy);
  margin: 0;
  font-variation-settings: "SOFT" 70, "opsz" 144;
}
.newsletter-strip h3 em { color: #DA1A6A; font-style: italic; }
.newsletter-strip p { color: var(--navy); margin: 4px 0 0; font-size: 0.95rem; max-width: 42ch; }

/* ============================================
   Post individual (single.php)
   ============================================ */

.post-hero {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-6) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.post-hero::after {
  content: ""; position: absolute;
  right: -120px; bottom: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    transparent 0, transparent 9px,
    rgba(244, 184, 46, 0.14) 9px, rgba(244, 184, 46, 0.14) 10px);
  z-index: 0; pointer-events: none;
}
.post-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.post-hero .breadcrumb {
  display: flex; gap: var(--space-2); align-items: center;
  font-size: 0.85rem; opacity: 0.75;
  margin-bottom: var(--space-4);
  color: var(--cream);
}
.post-hero .breadcrumb a { color: inherit; }
.post-hero .breadcrumb a:hover { color: var(--yellow); opacity: 1; }
.post-hero .breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.post-hero .category {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
}
.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  margin: var(--space-3) 0 var(--space-4);
}
.post-hero h1 em { color: var(--yellow); font-style: italic; }
.post-hero .lede {
  font-size: 1.1rem; opacity: 0.92; max-width: 60ch;
  line-height: 1.5; margin-bottom: var(--space-5);
}
.post-hero__meta {
  display: flex; align-items: center; gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-4);
  border-top: 1px dashed rgba(244, 224, 204, 0.25);
  font-size: 0.88rem;
  opacity: 0.92;
}
.post-hero__meta .author { display: flex; align-items: center; gap: 10px; }
.post-hero__meta .author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.post-hero__meta .author .name { font-family: var(--font-display); color: var(--cream); }
.post-hero__meta .author .role { font-size: 0.75rem; opacity: 0.65; }
.post-hero__meta .dot { opacity: 0.4; }

.post-featured {
  margin: calc(var(--space-7) * -1) 0 0;
  position: relative; z-index: 2;
}
.post-featured > .container { max-width: 880px; }
.post-featured__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.post-featured__img svg,
.post-featured__img img { width: 100%; height: 100%; display: block; object-fit: cover; }
.post-featured__caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: var(--space-3);
  font-style: italic;
}

.post-body { padding: var(--space-7) 0 var(--space-7); }
.post-body > .container { max-width: 720px; }
.post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: var(--space-7) 0 var(--space-4);
  font-variation-settings: "SOFT" 60, "opsz" 144;
  line-height: 1.15;
}
.post-body h2:first-of-type { margin-top: 0; }
.post-body h2 em { color: var(--orange); font-style: italic; }
.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: var(--space-6) 0 var(--space-3);
}
.post-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.post-body p em { color: var(--navy); font-style: italic; }
.post-body p strong { color: var(--navy); }
.post-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.85;
  float: left;
  color: var(--orange);
  margin: 4px 12px 0 0;
  padding: 0;
  font-weight: 700;
}
.post-body a {
  color: var(--orange); text-decoration: underline;
  text-decoration-color: rgba(232, 93, 44, 0.4);
}
.post-body a:hover { text-decoration-color: var(--orange); }
.post-body ul, .post-body ol {
  padding-left: 1.4em;
  margin: var(--space-4) 0;
}
.post-body ul li, .post-body ol li {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  line-height: 1.6;
}
.post-body ul li::marker { color: var(--orange); }
.post-body ol li::marker { color: var(--orange); font-family: var(--font-display); font-weight: 700; }
.post-body blockquote {
  border-left: 4px solid var(--orange);
  padding: var(--space-3) var(--space-5);
  margin: var(--space-6) 0;
}
.post-body blockquote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-body blockquote cite {
  font-size: 0.85rem; color: var(--muted); font-style: normal;
  letter-spacing: 0.05em;
}

.post-tags {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1.5px dashed var(--line);
  display: flex; align-items: center; gap: var(--space-3);
  flex-wrap: wrap;
}
.post-tags__label {
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.post-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  color: var(--navy);
  font-size: 0.82rem;
  transition: all 0.15s;
  text-decoration: none;
}
.post-tag:hover { border-color: var(--orange); background: var(--cream); }

.post-share {
  margin-top: var(--space-5);
  display: flex; gap: var(--space-3); align-items: center;
  flex-wrap: wrap;
}
.post-share .label { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.author-bio {
  margin-top: var(--space-7);
  padding: var(--space-5);
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
}
.author-bio__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.8rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.author-bio__info h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.author-bio__info .role {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.author-bio__info p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 600px) {
  .author-bio { grid-template-columns: 1fr; text-align: center; }
  .author-bio__avatar { margin: 0 auto; }
}

/* Related (blog) — usa selectors específicos pra não colidir com produtos */
.blog-related-section { padding: var(--space-8) 0; }
.blog-related-section .container { max-width: 1200px; }
.related-section__head { margin-bottom: var(--space-5); }
.related-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.related-section__head h2 em { color: var(--orange); font-style: italic; }
.related-section__head .eyebrow { display: block; color: var(--orange); margin-bottom: 4px; }

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
@media (max-width: 1000px) { .blog-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .blog-related-grid { grid-template-columns: minmax(0, 1fr); } }

.blog-related-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-related-card:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow-md); }
.blog-related-card .related-card__visual { height: 160px; overflow: hidden; }
.blog-related-card .related-card__visual svg,
.blog-related-card .related-card__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.blog-related-card .related-card__body { padding: var(--space-4); display: flex; flex-direction: column; gap: 6px; }
.blog-related-card .related-card__cat {
  font-size: 0.7rem; color: var(--orange);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.blog-related-card .related-card__title {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--navy); margin: 0; line-height: 1.2;
}
.blog-related-card .related-card__meta { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* ============================================
   FAQ (page-faq.php)
   ============================================ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: var(--space-6);
  padding: var(--space-7) 0 var(--space-8);
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: var(--space-5); } }

.faq-section { margin-bottom: var(--space-7); scroll-margin-top: 160px; }
.faq-section:last-child { margin-bottom: 0; }
.faq-section__head {
  display: flex; gap: var(--space-3); align-items: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1.5px dashed var(--line);
}
.faq-section__head .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-section__head .ico svg { width: 20px; height: 20px; }
.faq-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.faq-section__head .count {
  font-family: var(--font-display);
  color: var(--muted);
  font-size: 0.85rem;
  margin-left: auto;
}

.faq-list {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-list details { border-bottom: 1px dashed var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list details[open] { background: var(--cream-soft); }
.faq-list summary {
  cursor: pointer;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3);
  list-style: none;
  transition: background 0.15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { background: var(--cream-soft); }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 1.6rem; line-height: 1;
  font-weight: 400;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-list details > div p { margin: 0 0 var(--space-3); }
.faq-list details > div p:last-child { margin-bottom: 0; }
.faq-list details > div ul, .faq-list details > div ol { padding-left: 1.2em; margin: var(--space-2) 0; }
.faq-list details > div ul li, .faq-list details > div ol li { margin-bottom: 6px; }
.faq-list details > div ul li::marker { color: var(--orange); }
.faq-list details > div a {
  color: var(--orange); text-decoration: underline;
  text-decoration-color: rgba(232, 93, 44, 0.4);
}
.faq-list details > div a:hover { text-decoration-color: var(--orange); }
.faq-list details > div strong { color: var(--navy); }

.faq-sidebar { position: sticky; top: 110px; height: fit-content; }
@media (max-width: 900px) { .faq-sidebar { position: static; } }

.help-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-4);
}
.help-card::before {
  content: "";
  position: absolute; right: -60px; bottom: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--orange);
  opacity: 0.95;
}
.help-card > * { position: relative; z-index: 1; }
.help-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--yellow);
  margin: 0 0 var(--space-3);
}
.help-card p { font-size: 0.92rem; opacity: 0.9; margin: 0 0 var(--space-4); line-height: 1.5; }
.help-card a.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--cream); color: var(--navy);
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.15s;
}
.help-card a.cta:hover { background: var(--yellow); }
.help-card a.cta svg { width: 14px; height: 14px; }

.search-card {
  background: var(--cream-soft);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex; gap: var(--space-3); align-items: center;
}
.search-card .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.search-card svg { width: 18px; height: 18px; }
.search-card h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); margin: 0 0 2px; }
.search-card p { font-size: 0.82rem; color: var(--ink-soft); margin: 0; line-height: 1.4; }
.search-card a { color: var(--orange); font-weight: 600; text-decoration: none; }

/* Linha contextual (variação por produto) na descrição Goldmine — discreta,
   evita duplicate content e dá contexto único pro SEO. */
.condition-item__copy-context {
  font-size: 0.78rem !important;
  color: var(--orange) !important;
  font-style: italic;
  margin-top: 4px !important;
}
