/* Edyt v2 — beauty retail editorial (Cult Beauty / Into The Gloss energy) */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap");

:root {
  --ink: #0a090a;
  --ink-soft: #3a3438;
  --muted: #7a7076;
  --line: #e8e0e3;
  --blush: #f3ebed;
  --porcelain: #f9f6f7;
  --white: #fffcfc;
  --lacquer: #b01030;
  --lacquer-deep: #7a0c22;
  --champagne: #c4a882;
  --amazon: #ff9900;
  --amazon-ink: #131921;
  --max: 1120px;
  --rail: 280px;
  --shell-pad: 1.25rem;
  --display: "Cormorant Garamond", Georgia, serif;
  --ui: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--ui);
  color: var(--ink);
  overflow-x: clip;
  background: var(--porcelain);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--lacquer-deep); text-underline-offset: 0.15em; }
button { font: inherit; cursor: pointer; }

/* ticker */
.ticker {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}
.ticker span { opacity: 0.35; margin: 0 0.85rem; }

/* nav */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 246, 247, 0.9);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
}
.topbar.is-solid { border-bottom-color: var(--line); }
.topbar.on-dark {
  background: rgba(10, 9, 10, 0.55);
  border-bottom-color: transparent;
}
.topbar.on-dark.over-hero {
  position: absolute;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
}
.topbar.on-dark.over-hero.is-open {
  background: rgba(10, 9, 10, 0.96);
  backdrop-filter: blur(16px);
}
.topbar.on-dark .logo,
.topbar.on-dark .nav-left a,
.topbar.on-dark .nav-right a { color: #fff; }
.topbar.on-dark .nav-left a:hover,
.topbar.on-dark .nav-right a:hover { color: #f2c4ce; }
.topbar.on-dark .menu-toggle span { background: #fff; }

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--shell-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav-left, .nav-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 0;
}
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; min-height: 1px; position: relative; }
.nav-left a, .nav-right a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s ease;
}
.nav-left a:hover, .nav-right a:hover { color: var(--lacquer); }
.nav-left a.is-active { color: var(--lacquer); }
.logo {
  justify-self: center;
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  justify-self: start;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.topbar.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.topbar.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.topbar.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.5rem var(--shell-pad) 1.25rem;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover { color: var(--lacquer); }
.topbar.is-open .mobile-nav:not([hidden]) { display: block; }
/* Fixed when open so the panel stays in the viewport (body overflow:hidden
   breaks position:sticky while scrolled mid-page). */
.topbar.is-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  z-index: 200;
  background: rgba(249, 246, 247, 0.98);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
}
.topbar.on-dark.is-open {
  background: rgba(10, 9, 10, 0.96);
  backdrop-filter: blur(16px);
}
.topbar.on-dark .mobile-nav {
  background: #0a090a;
  border-top-color: rgba(255,255,255,0.12);
}
.topbar.on-dark .mobile-nav a {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.1);
}
.topbar.on-dark .mobile-nav a:hover { color: #f2c4ce; }

@media (max-width: 820px) {
  .topbar-inner {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
  }
  .menu-toggle { display: flex; }
  .nav-left { display: none !important; }
  .nav-right {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
  }
  .logo {
    grid-column: 2;
    justify-self: center;
    font-size: 1.85rem;
  }
}
@media (min-width: 821px) {
  .menu-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* Sitewide search */
.site-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 16.5rem;
  margin-left: auto;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.site-search-toggle {
  display: none;
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-search-panel {
  width: 100%;
}
.site-search-field {
  display: block;
  width: 100%;
}
.site-search-input {
  width: 100%;
  box-sizing: border-box;
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}
.site-search-input::placeholder {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.site-search-input:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}
.site-search-results {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  left: auto;
  z-index: 80;
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 28rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.site-search-results[hidden] {
  display: none !important;
}
.site-search-group {
  padding: 0.55rem 0 0.35rem;
  border-bottom: 1px solid var(--line);
}
.site-search-group:last-child { border-bottom: 0; }
.site-search-group-label {
  margin: 0 0.85rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-search-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  color: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.site-search-item--product {
  grid-template-columns: 2.5rem 1fr;
}
.site-search-item:hover,
.site-search-item:focus-visible {
  background: var(--porcelain);
  outline: none;
}
.site-search-thumb {
  width: 2.5rem;
  height: 3.1rem;
  object-fit: contain;
  background: #f3eef0;
  display: block;
}
.site-search-thumb--empty {
  background: linear-gradient(165deg, #f5ecee, #e4d0d4);
}
.site-search-item-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}
.site-search-item-brand {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-search-item-title {
  font-size: 0.9rem;
  line-height: 1.25;
  color: var(--ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.site-search-item-meta {
  font-size: 0.75rem;
  color: var(--muted);
}
.site-search-empty {
  margin: 0;
  padding: 1rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .site-search {
    max-width: none;
    width: auto;
  }
  .site-search-toggle { display: inline-flex; }
  .site-search-panel {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 90;
    padding: 0.75rem var(--shell-pad) 0.85rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }
  .site-search.is-open .site-search-panel {
    display: block;
  }
  .site-search-results {
    position: fixed;
    top: 4.1rem;
    left: var(--shell-pad);
    right: var(--shell-pad);
    width: auto;
    max-height: min(70vh, 24rem);
  }
  body.site-search-open {
    overflow: hidden;
  }
  body.site-search-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(20, 16, 14, 0.35);
  }
}
.topbar.on-dark .site-search-toggle { color: #fff; }
.topbar.on-dark .site-search-input {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.topbar.on-dark .site-search-input::placeholder { color: rgba(255,255,255,0.65); }

/* hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(8,6,8,0.92) 0%, rgba(8,6,8,0.35) 48%, rgba(8,6,8,0.55) 100%),
    radial-gradient(ellipse 70% 80% at 75% 40%, #d45a72 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, #4a1020 0%, transparent 50%),
    linear-gradient(160deg, #12080c 0%, #3a1020 50%, #1a0c12 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: min(52vw, 560px);
  height: min(70vh, 640px);
  border-radius: 50% 50% 42% 42%;
  background:
    linear-gradient(180deg, #e86a7c 0%, #9b1b34 45%, #3a0c18 100%);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    inset 0 -40px 60px rgba(0,0,0,0.25);
  opacity: 0.95;
  animation: float-bullet 8s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 820px) {
  .hero::after {
    right: -28%;
    top: auto;
    bottom: 18%;
    width: 58vw;
    height: 42vh;
    opacity: 0.45;
    filter: blur(0.5px);
  }
  .hero-inner { padding-bottom: 5.5rem; }
  .hero h1 { max-width: 14ch; }
}
@keyframes float-bullet {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(-3deg); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 3rem var(--shell-pad) 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.75rem;
}
.hero-copy { min-width: 0; }
@media (min-width: 960px) {
  .hero-inner:not(.is-full) {
    grid-template-columns: minmax(0, 1fr) var(--rail);
  }
}
.hero-inner.is-full {
  grid-template-columns: minmax(0, 1fr);
}
.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(3.6rem, 9vw, 6.25rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.025em;
  max-width: min(14ch, 52%);
}
@media (min-width: 900px) {
  .hero::after {
    right: 2%;
    top: 12%;
    width: min(38vw, 420px);
  }
  .hero h1 { max-width: 12ch; }
}
.hero h1 em {
  font-style: italic;
  color: #f5c4ce;
}
.hero-lede {
  margin: 0 0 2rem;
  max-width: 26rem;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f5e6ea; color: var(--ink); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-lacquer { background: var(--lacquer); color: #fff; }
.btn-lacquer:hover { background: var(--lacquer-deep); color: #fff; }
.btn-amazon { background: var(--amazon); color: var(--amazon-ink); }
.btn-line {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: #fff; }

/* site shell — left content + reserved right ad rail */
.site-shell {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 2.25rem var(--shell-pad) 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  min-width: 0;
}
.site-content { width: 100%; min-width: 0; }
.site-rail { display: none; }
@media (min-width: 960px) {
  .site-shell {
    grid-template-columns: minmax(0, 1fr) var(--rail);
    gap: 2.75rem;
    align-items: start;
  }
  .site-rail {
    display: block;
    /* Reserved ad column — empty until real units ship */
    min-height: 1px;
    border: 0;
    background: transparent;
  }
}
.site-shell.tight { padding-top: 1.5rem; }
.page-narrow .guide-intro,
.page-narrow .pick p { max-width: 40rem; }

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--lacquer); }
.crumb .sep { opacity: 0.35; }

.mock-chip {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid #e0d4c6;
  background: #faf6f0;
}

h1.page-title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.lede {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.meta-line {
  margin: 0 0 2.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 1.25rem;
}

/* bands (sit inside .site-content or .home-body) */
.band {
  padding: 0 0 3.5rem;
}
.home-body {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 3rem var(--shell-pad) 4rem;
}
.band-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.85rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--ink);
}
.band-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.band-head a {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.band-head a:hover { color: var(--lacquer); }

/* feature magazine grid */
.feature-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 480px;
  }
  .feature-grid .feat:first-child { grid-row: 1 / span 2; }
}
.feat {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  min-height: 200px;
  overflow: hidden;
}
.feat:first-child { min-height: 440px; }
.feat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}
.feat:hover .feat-bg {
  transform: scale(1.04);
  filter: brightness(1.08);
}
.feat:nth-child(1) .feat-bg {
  background:
    linear-gradient(180deg, transparent 15%, rgba(0,0,0,0.82) 100%),
    radial-gradient(circle at 55% 28%, #f090a0, #5c1428 68%);
}
.feat:nth-child(2) .feat-bg {
  background:
    linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.78) 100%),
    linear-gradient(145deg, #1e1a24, #6b4558);
}
.feat:nth-child(3) .feat-bg {
  background:
    linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.78) 100%),
    linear-gradient(145deg, #141c20, #3a5558);
}
.feat:nth-child(4) .feat-bg {
  background:
    linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.8) 100%),
    radial-gradient(circle at 40% 35%, #e0b88a, #5a3828 72%);
}
.feat:nth-child(5) .feat-bg {
  background:
    linear-gradient(180deg, transparent 5%, rgba(0,0,0,0.8) 100%),
    linear-gradient(160deg, #1c141c, #8a2040);
}
/* Real product photo under the gradient (featured home cards) */
.feat.has-photo .feat-bg {
  background-color: #1a1216;
  background-image:
    linear-gradient(180deg, rgba(8,6,8,0.15) 10%, rgba(8,6,8,0.88) 100%),
    var(--feat-img);
  background-size: cover, cover;
  background-position: center 30%, center 35%;
  background-repeat: no-repeat;
}
.feat.has-photo:first-child .feat-bg {
  background-image:
    linear-gradient(180deg, rgba(8,6,8,0.05) 20%, rgba(8,6,8,0.9) 100%),
    var(--feat-img);
  background-position: center 28%, center 32%;
}
.feat-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.65rem;
}
.feat .tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.5rem;
}
.feat h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.08;
}
.feat:first-child h3 { font-size: clamp(2.4rem, 4.2vw, 3.5rem); }
.feat p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  max-width: 28ch;
}

/* category tiles */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .cat-strip { grid-template-columns: repeat(5, 1fr); }
}
.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.4rem;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.cat-tile:hover { transform: translateY(-3px); }
.cat-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
  font-style: italic;
}
.cat-tile small {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.72);
  max-width: 16ch;
}
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.72));
}
.cat-tile.lip,
.cat-tile.makeup { background: radial-gradient(circle at 50% 28%, #e87888, #3a1018); }
.cat-tile.skin { background: radial-gradient(circle at 40% 38%, #edd4c4, #5a3c34); }
.cat-tile.hair { background: radial-gradient(circle at 50% 18%, #d0c4b4, #221c18); }
.cat-tile.tools,
.cat-tile.body { background: radial-gradient(circle at 50% 38%, #c0ccd0, #1c2830); }
.cat-tile.nails { background: radial-gradient(circle at 45% 30%, #f0d4e0, #4a2038); }

/* shade strip */
.shade-strip {
  display: flex;
  gap: 0;
  margin: 0 0 2rem;
  height: 10px;
  overflow: hidden;
}
.shade-strip i {
  flex: 1;
  display: block;
}

/* product mosaic */
.prod-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 0.85rem;
  align-items: stretch;
}
@media (min-width: 720px) {
  .prod-mosaic { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.35rem; }
}
.prod {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}
.prod:has(.prod-copy) {
  grid-template-rows: auto 1fr;
  height: 100%;
  gap: 0.7rem;
}
.prod-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(165deg, #f5ecee, #e4d0d4);
  overflow: hidden;
  transition: background 0.3s ease;
}
.prod:hover .prod-visual {
  background: linear-gradient(165deg, #f0e0e4, #d8b8c0);
}
.prod-visual .shade {
  position: absolute;
  inset: 18% 22% 22%;
  border-radius: 999px 999px 40% 40%;
  box-shadow: 0 22px 44px rgba(0,0,0,0.2);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.prod:hover .prod-visual .shade { transform: translateY(-6px) scale(1.03); }
.prod-visual .cap {
  position: absolute;
  left: 50%;
  top: 11%;
  width: 17%;
  height: 13%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #2e2e2e, #0e0e0e);
}
.prod-copy {
  display: grid;
  grid-template-rows: auto minmax(3.7em, auto) auto auto;
  gap: 0.3rem;
  min-width: 0;
  align-content: start;
}
.prod .brand {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod .name {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.12;
}
.prod-copy .name {
  font-size: clamp(1.2rem, 4.2vw, 1.5rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(1.12em * 3);
}
.prod:hover .name { color: var(--lacquer); }
.prod-price {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.2;
  min-height: 1.2em;
}
.prod-price--empty {
  visibility: hidden;
}
.prod .finish {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.prod-rating {
  margin: 0.15rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.35rem;
  width: 100%;
  min-height: 1.2rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}
.prod-rating--empty { visibility: hidden; }
.prod-rating-label,
.prod-rating-heading {
  flex: 0 0 100%;
}
.prod-rating-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.prod-rating-label {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.prod-score {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.prod-stars,
.top-pick-stars,
.edyt-score__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.06em;
  color: #c4a040;
  font-size: 0.9rem;
  line-height: 1;
}
.top-pick-stars,
.edyt-score__stars {
  color: var(--champagne);
}
.edyt-score__stars {
  font-size: 1.15rem;
}
.top-pick-stars {
  font-size: 0.78rem;
}
.star {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.star--full {
  color: inherit;
}
.star--empty {
  color: #e2d6b8;
}
.star--half {
  color: #e2d6b8;
}
.star--half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #c4a040;
  pointer-events: none;
}
.top-pick-stars .star--half::before,
.edyt-score__stars .star--half::before {
  color: var(--champagne);
}

/* Edyt Score methodology tip (PDP) */
.prod-rating--pdp {
  position: relative;
  gap: 0.35rem 0.45rem;
}
.score-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.score-info__btn {
  list-style: none;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--ui);
  font-size: 0.68rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  user-select: none;
}
.score-info__btn::-webkit-details-marker { display: none; }
.score-info__btn::marker { content: ""; }
.score-info__btn:hover,
.score-info[open] > .score-info__btn {
  background: var(--lacquer);
  border-color: var(--lacquer);
}
.score-info__panel {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  transform: translateX(-50%);
  z-index: 30;
  width: min(18.5rem, calc(100vw - 2.5rem));
  padding: 0.85rem 0.95rem;
  border-radius: 0.45rem;
  background: #1a1819;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.score-info__panel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1819;
  border-bottom: 0;
}
.score-info__panel p {
  margin: 0;
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  letter-spacing: 0;
}
.score-info__panel strong {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 520px) {
  .score-info__panel {
    left: 0;
    transform: none;
    width: min(18.5rem, calc(100vw - 2rem));
  }
  .score-info__panel::after {
    left: 0.55rem;
    transform: none;
  }
}

/* brand product detail */
.brand-pdp {
  display: grid;
  gap: 1.5rem;
  margin: 0.5rem 0 1rem;
}
@media (min-width: 800px) {
  .brand-pdp {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
  }
}
.brand-pdp .pdp-media,
.pdp-media {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.pdp-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-pdp-copy h1 {
  margin: 0.2rem 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(2.15rem, 6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
}
.brand-pdp-copy .pdp-brand {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.brand-pdp-copy .pdp-brand a {
  color: var(--muted);
  text-decoration: none;
}
.brand-pdp-copy .pdp-brand a:hover { color: var(--lacquer); }
.brand-pdp-copy .prod-rating { margin: 0 0 0.65rem; }
.brand-pdp-copy .pdp-price {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.brand-pdp-copy .pdp-copy {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 36rem;
}
.brand-pdp-copy .pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

/* guide hub cards */
.guide-chapters {
  display: grid;
  gap: 2.5rem;
}
.chapter-label {
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lacquer);
  line-height: 1.3;
}
.chapter-label span {
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.guide-cards {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .guide-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .guide-cards { grid-template-columns: repeat(3, 1fr); }
}
.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 1.4rem;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}
.guide-card .bg {
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}
.guide-card:hover .bg { transform: scale(1.05); }
.guide-card:nth-child(3n+1) .bg {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.8)),
    radial-gradient(circle at 40% 30%, #e07080, #3a1018);
}
.guide-card:nth-child(3n+2) .bg {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.8)),
    linear-gradient(145deg, #2a2430, #5a4050);
}
.guide-card:nth-child(3n) .bg {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.8)),
    linear-gradient(145deg, #1c2428, #3a5054);
}
.guide-card .meta {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.guide-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
}
.guide-card p {
  position: relative;
  z-index: 1;
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

/* Guides hub: readable list cards (no photo .bg) */
.guide-chapters .guide-card {
  min-height: 0;
  justify-content: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
/* .guide-card { display:flex } otherwise beats [hidden] and search filters look broken */
.guide-chapters .guide-card[hidden],
.guide-chapters section[hidden] {
  display: none !important;
}
.guide-chapters .guide-card:hover {
  border-color: var(--ink);
  background: var(--porcelain);
}
.guide-chapters .guide-card .meta {
  color: var(--muted);
}
.guide-chapters .guide-card .guide-card-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.guide-chapters .guide-card p:not(.guide-card-title) {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

/* ranked picks */
.guide-intro {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .guide-intro {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
  }
}
.guide-aside {
  background: var(--ink);
  color: #fff;
  padding: 1.65rem;
}
.guide-aside h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
}
.guide-aside ol {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.guide-aside li { margin: 0.4rem 0; }

.score-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.score {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.score b {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  margin-left: 0.4rem;
  text-transform: none;
}

/* PDP */
.pdp {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: start;
  }
}
.pdp-gallery {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 50% 38%, #f4d0d8 0%, transparent 48%),
    linear-gradient(165deg, #faf2f4, #e8d0d6);
  overflow: hidden;
}
.pdp-gallery .bullet {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 44%;
  height: 54%;
  transform: translateX(-50%);
  border-radius: 999px 999px 40% 40%;
  background: linear-gradient(180deg, #d44555, #5c1218);
  box-shadow: 0 36px 70px rgba(80, 16, 28, 0.4);
  animation: float-bullet 7s ease-in-out infinite;
}
.pdp-gallery .lid {
  position: absolute;
  left: 50%;
  top: 12%;
  width: 16%;
  height: 12%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #333, #0e0e0e);
  z-index: 1;
}

/* Swipeable product image gallery */
.img-gallery {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.img-gallery__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.img-gallery__track {
  display: flex;
  width: 100%;
  transition: transform 0.28s ease;
  will-change: transform;
}
.img-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: grid;
  place-items: center;
  background: #fff;
  aspect-ratio: 1 / 1;
  padding: 0.85rem;
}
.img-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.img-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
}
.img-gallery__nav:disabled { opacity: 0.35; }
.img-gallery__nav.prev { left: 0.45rem; }
.img-gallery__nav.next { right: 0.45rem; }
.img-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  z-index: 2;
}
.img-gallery__dot {
  width: 0.4rem;
  height: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #d8ccd0;
}
.img-gallery__dot.is-on {
  background: var(--lacquer);
  width: 0.85rem;
}
.img-gallery.is-single .img-gallery__nav,
.img-gallery.is-single .img-gallery__dots { display: none; }
.img-gallery.is-compact .img-gallery__slide {
  aspect-ratio: 1 / 1;
  padding: 0.55rem;
  min-height: 140px;
}
.img-gallery.is-compact .img-gallery__nav {
  width: 1.65rem;
  height: 1.65rem;
  font-size: 1.05rem;
}
.top-pick-media {
  padding: 0;
  background: #fff;
  min-height: 0;
}
.top-pick-media .img-gallery {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.top-pick-media .img-gallery__slide {
  aspect-ratio: 1 / 1;
  padding: 0.45rem;
  background: #fff;
}
.top-pick-media .img-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.top-pick-media .img-gallery__nav {
  width: 1.7rem;
  height: 1.7rem;
  font-size: 1.05rem;
}
.top-pick-media .img-gallery__dots {
  bottom: 0.35rem;
}
.top-pick-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  padding: 0.45rem;
  box-sizing: border-box;
}
.pick-gallery {
  position: relative;
  aspect-ratio: auto;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pick-gallery .img-gallery {
  border: 0;
  background: #fff;
  display: block;
}
.pick-gallery .img-gallery__viewport {
  background: #fff;
}
.pick-gallery .img-gallery__slide {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0.55rem;
  background: #fff;
}
.pick-gallery .img-gallery__slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.pick-gallery .img-gallery__nav {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  border-color: rgba(10, 9, 10, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(10, 9, 10, 0.12);
  font-size: 1.4rem;
  font-weight: 500;
}
.pick-gallery .img-gallery__nav:disabled {
  opacity: 0.45;
  color: var(--muted);
}
.pick-gallery .img-gallery__nav.prev { left: 0.55rem; }
.pick-gallery .img-gallery__nav.next { right: 0.55rem; }
.pick-gallery .img-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  padding: 0;
  gap: 0.35rem;
}
.pick-gallery .img-gallery__dot {
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid var(--muted);
  background: transparent;
}
.pick-gallery .img-gallery__dot.is-on {
  width: 0.45rem;
  background: var(--ink);
  border-color: var(--ink);
}
.pdp .img-gallery,
.brand-pdp .img-gallery {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 38%, #f4d0d8 0%, transparent 48%),
    linear-gradient(165deg, #faf2f4, #e8d0d6);
  max-height: min(52vh, 26rem);
}
.pdp .img-gallery__slide,
.brand-pdp .img-gallery__slide {
  aspect-ratio: 1 / 1;
  max-height: min(52vh, 26rem);
  background: transparent;
  padding: 1rem;
}
.pdp .img-gallery__slide img,
.brand-pdp .img-gallery__slide img {
  width: 100%;
  height: 100%;
  max-height: min(52vh, 26rem);
  object-fit: contain;
}
@media (min-width: 800px) {
  .pdp .img-gallery,
  .brand-pdp .img-gallery {
    max-height: none;
  }
  .pdp .img-gallery__slide,
  .brand-pdp .img-gallery__slide {
    max-height: none;
  }
  .pdp .img-gallery__slide img,
  .brand-pdp .img-gallery__slide img {
    max-height: none;
  }
}
.img-gallery__slide.is-zoomable { cursor: zoom-in; }
.img-gallery__hint {
  position: absolute;
  left: 0.55rem;
  bottom: 0.45rem;
  z-index: 2;
  margin: 0;
  padding: 0.2rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.88);
  pointer-events: none;
}
.img-gallery.is-compact .img-gallery__hint { display: none; }
.img-gallery:not(.is-single) .img-gallery__hint { left: auto; right: 0.55rem; bottom: 0.45rem; }

/* Lightbox */
body.has-lightbox { overflow: hidden; }
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 9, 10, 0.92);
  display: grid;
  place-items: center;
  padding: 3.5rem 1rem 2rem;
}
.img-lightbox[hidden] { display: none !important; }
.img-lightbox__stage {
  width: min(920px, 100%);
  height: min(80vh, 920px);
  display: grid;
  place-items: center;
}
.img-lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 2px;
}
.img-lightbox__close,
.img-lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
}
.img-lightbox__close {
  top: 0.85rem;
  right: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
}
.img-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  font-size: 1.7rem;
}
.img-lightbox__nav.prev { left: 0.75rem; }
.img-lightbox__nav.next { right: 0.75rem; }
.img-lightbox__count {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.pdp-brand {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pdp-brand a { text-decoration: none; color: var(--ink); }
.pdp-brand a:hover { color: var(--lacquer); }
.pdp h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.02;
}
.pdp-price {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
}
.pill {
  padding: 0.42rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--white);
}
button.pill {
  font: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
  line-height: inherit;
}
.pill.is-active,
.pill[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.hub-filter-pills {
  margin: -0.35rem 0 1.35rem;
}
.pdp-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.pdp-prose { max-width: 40rem; }
.section-lede {
  margin: -0.35rem 0 1.25rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* PDP — Edyt score (wiki-inspired breakdown) */
.edyt-score { max-width: 44rem; }
.edyt-score__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  margin-bottom: 0.65rem;
}
.edyt-score__num {
  margin: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
.edyt-score__num span {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.edyt-score__word {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lacquer-deep);
}
.edyt-score__lede {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 38rem;
}
.score-breakdown {
  display: grid;
  gap: 0.75rem;
}
.score-break {
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.score-break__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.45rem;
}
.score-break__top strong {
  font-size: 0.95rem;
  font-weight: 600;
}
.score-break__top span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--lacquer-deep);
}
.score-break p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* PDP — specs / fit / wear / vs */
.spec-grid {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) {
  .spec-grid { grid-template-columns: 1fr 1fr; }
}
.spec-grid > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 640px) {
  .spec-grid > div:nth-child(odd) { padding-right: 1.5rem; }
  .spec-grid > div:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--line); }
}
.spec-grid dt {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-grid dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.fit-split {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .fit-split { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
.fit-col {
  padding: 1.35rem 1.4rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.fit-col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}
.fit-col ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.fit-col li { margin: 0 0 0.55rem; }
.fit-col li:last-child { margin-bottom: 0; }
.fit-no { background: var(--blush); border-color: transparent; }

.wear-notes {
  max-width: 40rem;
}
.wear-notes p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.wear-notes p:last-child { margin-bottom: 0; }
.wear-notes strong {
  color: var(--ink);
  font-weight: 600;
}

.section-rule {
  margin: 3.25rem 0 1.35rem;
  padding-top: 1.65rem;
  border-top: 1px solid var(--line);
}
.section-rule h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}
.pdp-also-like {
  margin-bottom: 0.35rem;
}

.guide-links { list-style: none; padding: 0; margin: 0; }
.guide-links li { border-bottom: 1px solid var(--line); }
.guide-links a {
  display: block;
  padding: 1.15rem 0;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
}
.guide-links a:hover { color: var(--lacquer); }
.guide-links small {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

/* PDP: Appears on — guide cards, 2-col from mobile */
.pdp-appears-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.pdp-appears-cards .guide-card {
  min-height: 160px;
  padding: 0.95rem;
}
.pdp-appears-cards .guide-card h3 {
  font-size: 1.15rem;
  line-height: 1.15;
}
.pdp-appears-cards .guide-card p {
  font-size: 0.78rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 700px) {
  .pdp-appears-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .pdp-appears-cards .guide-card {
    min-height: 180px;
    padding: 1.15rem;
  }
  .pdp-appears-cards .guide-card h3 { font-size: 1.35rem; }
}
@media (min-width: 960px) {
  .pdp-appears-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* brand — legacy full-bleed mast (kept for older mockups) */
.brand-mast {
  position: relative;
  min-height: min(52vh, 420px);
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.82) 100%),
    radial-gradient(ellipse at 70% 20%, #a0a0a0, #0e0e0e 65%);
}
.brand-mast-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem var(--shell-pad) 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.75rem;
}
.brand-mast-copy { min-width: 0; }
@media (min-width: 960px) {
  .brand-mast-inner {
    grid-template-columns: minmax(0, 1fr) var(--rail);
  }
}
.brand-mast .eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.brand-mast h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 0.95;
}
.brand-mast p {
  margin: 0.75rem 0 0;
  max-width: 30rem;
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
}

/* brand page hero — sits under solid topbar, no overlap */
.brand-hero {
  background: var(--porcelain);
}
.brand-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem var(--shell-pad) 1rem;
}
@media (min-width: 960px) {
  .brand-hero-inner {
    padding-right: calc(var(--shell-pad) + var(--rail) + 1.5rem);
  }
}
.brand-hero-crumb {
  margin: 0 0 0.85rem;
}
.brand-hero .eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lacquer);
}
.brand-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: none;
  color: var(--ink);
}
.brand-hero-lede {
  margin: 0.55rem 0 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.brand-hero .meta-line {
  margin: 0.75rem 0 0;
}
.brand-page-shell.site-shell {
  padding-top: 0.35rem;
  padding-bottom: 1.25rem;
}
.brand-page-shell + .footer {
  margin-top: 0;
}
.brand-products-title {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}
.brand-guide-cards .guide-card { min-height: 180px; }
.brand-guide-cards--extra { margin-top: 0.75rem; }
.brand-guides-more {
  margin: 1rem 0 0;
}
.brand-guides-more-btn {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-guides-more-btn::-webkit-details-marker { display: none; }
.brand-guides-more-btn::marker { content: ""; }
.brand-guides-more-btn:hover {
  background: var(--ink);
  color: #fff;
}
.brand-guides-more[open] .brand-guides-more-btn {
  background: var(--ink);
  color: #fff;
}
.prod-visual--photo {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.prod-visual--photo img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}
.similar-brands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 720px) {
  .similar-brands { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.85rem; }
}
.similar-brands li { min-width: 0; }
.similar-brands a {
  display: block;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.similar-brands a:hover {
  border-color: var(--ink);
  background: var(--porcelain);
}
.similar-brands .sb-name {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}
.similar-brands .sb-meta {
  margin: 0.3rem 0 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.hub-search {
  display: block;
  margin: 0 0 1.5rem;
  max-width: 28rem;
}
.hub-search input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.hub-search input:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.brand-letter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0 0 2rem;
  max-width: 100%;
  font-size: 0.85rem;
  font-weight: 600;
}
.brand-letter-nav a {
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-letter-nav a:hover { color: var(--lacquer); }
.brand-index-group {
  margin: 0 0 2rem;
  max-width: 100%;
  min-width: 0;
}
.brand-index-group h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35rem;
}
.brand-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.85rem;
  row-gap: 0;
  max-width: 100%;
  min-width: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .brand-index-list { column-gap: 1.75rem; }
}
.brand-index-list li {
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.brand-index-list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.75rem 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 720px) {
  .brand-index-list a {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
  }
}
.brand-index-list a:hover .brand-index-name { color: var(--lacquer); }
.brand-index-name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 3.8vw, 1.28rem);
  font-weight: 500;
  line-height: 1.15;
  min-width: 0;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.brand-index-meta {
  flex: 0 0 auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}


/* dark band — full-bleed bg, shell-aligned content */
.band-dark {
  background: var(--ink);
  color: #fff;
}
.band-dark .home-body,
.band-dark .site-shell { padding-top: 4rem; padding-bottom: 4rem; }
.band-dark .band-head { border-color: rgba(255,255,255,0.25); }
.band-dark .band-head h2,
.band-dark .band-head a { color: #fff; }
.band-dark p {
  max-width: 32rem;
  color: rgba(255,255,255,0.68);
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
}
.band-dark .site-rail {
  border: 0;
  background: transparent;
}

.footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding: 2rem var(--shell-pad) 2rem;
  background: var(--ink);
  color: rgba(255, 252, 252, 0.72);
  max-width: 100%;
  overflow-x: clip;
}
.footer-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    column-gap: 2.5rem;
    row-gap: 1.25rem;
    align-items: start;
  }
  .footer-contact,
  .footer-meta { grid-column: 1 / -1; }
}
.footer .wordmark {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  color: #fffcfc;
}
.footer-tag {
  margin: 0;
  max-width: 22rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 252, 252, 0.62);
  letter-spacing: 0;
  text-transform: none;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  align-content: start;
  min-width: 0;
}
@media (min-width: 720px) {
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
  }
}
.footer-nav a {
  color: rgba(255, 252, 252, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
.footer-nav a:hover { color: #fff; }
.footer-contact {
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 252, 252, 0.12);
  font-size: 0.95rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 252, 252, 0.72);
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.footer-contact a:hover { color: #f3ebed; }
.footer-meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 252, 252, 0.45);
}
.footer p { margin: 0; }
.footer a { color: inherit; }

/* mockup index */
.index-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .index-grid { grid-template-columns: repeat(2, 1fr); }
}
.index-card {
  display: block;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.index-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.index-card .url {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 0.5rem;
}
.index-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}
.index-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— TreatShelf-style ranked guide —— */
/* Fill the left content column (do not center a narrow ~720px column). */
.guide-shell .site-content {
  max-width: none;
}
.guide-shell .site-rail {
  border: none;
  background: transparent;
}
@media (min-width: 960px) {
  /* Slightly tighter shell gap so the rail doesn’t read as empty page margin */
  .guide-shell.site-shell {
    gap: 1.75rem;
  }
  /* Sticky rail: scrollable TOC on top, open ad slot underneath */
  .guide-shell .site-rail {
    position: sticky;
    top: 5.5rem;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: calc(100vh - 6rem);
    min-height: 0;
  }
  .guide-shell .rail-box {
    position: static;
    top: auto;
    flex: 0 1 auto;
    max-height: min(42vh, 22rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
  .guide-shell .rail-ad-slot {
    flex: 1 0 auto;
    min-height: 250px;
  }
}

.guide-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.guide-hero .updated {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.guide-hero .lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: none;
}
.guide-hero .lede a { color: var(--lacquer-deep); }

.top-picks {
  margin: 1.5rem 0 0.5rem;
  scroll-margin-top: 5rem;
  min-width: 0;
}
.top-picks-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}
.top-picks-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}
.top-picks-hint {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
.top-picks-rail {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.15rem 0.1rem 0.85rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.top-pick-card {
  flex: 0 0 min(72%, 210px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  min-width: 0;
  align-self: stretch;
}
.top-pick-card.is-match {
  border-color: var(--lacquer);
  box-shadow: 0 0 0 3px rgba(176, 16, 48, 0.12);
}
.top-pick-media {
  position: relative;
  min-height: 0;
  display: block;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.top-pick-rank {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 3;
}
.top-pick-swatch {
  width: 72px;
  height: 96px;
  border-radius: 999px 999px 40% 40%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.top-pick-body {
  padding: 0.7rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: stretch;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.top-pick-badge {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lacquer);
  line-height: 1.25;
  min-height: calc(1.25em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-pick-name {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-height: 0;
}
.top-pick-name .brand {
  display: block;
  color: var(--lacquer-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.top-pick-name .brand:hover { text-decoration: underline; }
.top-pick-name .product {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.top-pick-rating { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.top-pick-rating-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
}
.top-pick-rating-label .brand-case { text-transform: none; letter-spacing: 0; }
.top-pick-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.top-pick-rating .out-of { font-weight: 600; color: var(--muted); font-size: 0.75rem; }
.top-pick-price { font-size: 0.95rem; font-weight: 700; margin-top: 0.1rem; }
.top-pick-actions {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 0.4rem;
  padding-top: 0.35rem;
  margin-top: auto;
  box-sizing: border-box;
}
.top-pick-buy,
.top-pick-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.top-pick-buy { background: var(--amazon); color: var(--amazon-ink); }
.top-pick-buy:hover { background: #e88b00; color: var(--amazon-ink); }
.top-pick-jump {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.top-pick-jump:hover { background: var(--ink); color: #fff; }
@media (min-width: 640px) {
  .top-pick-card { flex-basis: 200px; }
  .top-picks-hint { display: none; }
}

.quiz {
  margin: 1.15rem 0 1rem;
  scroll-margin-top: 5rem;
}
.quiz-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 0.9rem;
}
.quiz-panel > summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "main mark" "lede lede";
  gap: 0.15rem 0.65rem;
  padding: 0.75rem 0;
  font-size: 0.98rem;
  font-weight: 650;
}
.quiz-panel > summary::-webkit-details-marker { display: none; }
.quiz-panel > summary::after {
  content: "+";
  grid-area: mark;
  color: var(--muted);
  font-size: 1.15rem;
}
.quiz-panel[open] > summary::after { content: "–"; }
.quiz-summary-main {
  grid-area: main;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
}
.mm-progress {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.quiz-lede {
  grid-area: lede;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.quiz-body { padding: 0 0 0.85rem; }
.mm-q { margin: 0 0 0.65rem; font-weight: 650; font-size: 0.95rem; }
.mm-options { display: grid; gap: 0.4rem; }
.mm-options button {
  text-align: left;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--porcelain);
  color: var(--ink);
  font-size: 0.9rem;
}
.mm-options button:hover,
.mm-options button.is-on {
  border-color: var(--ink);
  background: #fff;
}
.mm-match {
  border: 1px solid var(--line);
  padding: 0.85rem;
  background: var(--blush);
}
.mm-match h3 { margin: 0 0 0.35rem; font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.mm-match p { margin: 0 0 0.65rem; color: var(--ink-soft); font-size: 0.9rem; }
.mm-match ul { margin: 0 0 0.75rem; padding-left: 1.1rem; color: var(--ink-soft); font-size: 0.88rem; }
.mm-match .cta-row { margin-top: 0.5rem; }

.guide-section {
  margin: 2rem 0 0;
  scroll-margin-top: 5rem;
}
.guide-section > h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

#writeup-list {
  display: grid;
  gap: 1.15rem;
}
.pick-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 252, 252, 0.92);
  overflow: hidden;
  scroll-margin-top: 5rem;
  align-items: start;
  max-width: 100%;
  min-width: 0;
}
.pick-detail.is-match {
  border-color: #e0a0ad;
  box-shadow: 0 0 0 3px rgba(176, 16, 48, 0.1);
  background: #fff;
}
.pick-detail-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 1rem 1.05rem 1.15rem;
}
.pick-detail-body > .pros-cons { margin-top: 0.85rem; }
.pick-detail-body > .cta-row { margin-top: 0.85rem; }
.pick-gallery .swatch {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  background: #fff;
}
.pick-gallery .pick-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  padding: 0.55rem;
  box-sizing: border-box;
}
.pick-gallery .rank {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
}
.pick-detail .label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lacquer);
}
.pick-detail .name {
  margin: 0 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  overflow-wrap: anywhere;
}
.pick-detail .name .brand-link {
  display: block;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lacquer-deep);
  text-decoration: none;
  margin: 0;
}
.pick-detail .name .brand-link:hover { text-decoration: underline; }
.pick-detail .name .product-title {
  display: block;
  font-family: var(--ui);
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.25;
  color: var(--ink);
}
.pick-detail .size-line { margin: 0 0 0.75rem; font-size: 0.88rem; color: var(--muted); }
.pick-detail > .pick-detail-body > p { margin: 0; color: var(--ink-soft); line-height: 1.6; }

.pick-detail .ratings-block,
.pick-detail .fit-block {
  margin: 1rem 0 0;
  padding: 0.9rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}
.pick-detail .ratings-block h4,
.pick-detail .fit-block h4,
.pick-detail .pros-cons h4 {
  margin: 0 0 0.65rem;
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.pick-detail .ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.pick-detail .rating-overall {
  grid-column: 1 / -1;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7e8ec 0%, var(--blush) 100%);
  border: 1px solid #e8c8d0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
}
.pick-detail .rating-cell {
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: var(--blush);
  min-width: 0;
}
.pick-detail .r-label {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.pick-detail .r-score {
  margin-top: 0.15rem;
  font-family: var(--ui);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lacquer-deep);
  font-variant-numeric: tabular-nums;
}
.pick-detail .rating-overall .r-score {
  margin-top: 0;
  font-size: 1.2rem;
  text-align: right;
}
.pick-detail .r-word {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.3rem;
}
.pick-detail .cta-row,
.pick-detail .ratings-block .cta-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}
.pick-detail .cta-row .price,
.pick-detail .ratings-block .cta-row .price {
  flex: 1 0 100%;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}
.pick-detail .cta-row .btn,
.pick-detail .ratings-block .cta-row .btn {
  flex: 1 1 calc(50% - 0.25rem);
  min-width: 0;
  padding: 0.75rem 0.65rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.fit-rows { margin: 0; display: grid; gap: 0.55rem; }
.fit-row {
  display: grid;
  grid-template-columns: minmax(5.25rem, 6.5rem) minmax(0, 1fr);
  gap: 0.55rem;
  padding: 0;
  border: 0;
  font-size: 0.9rem;
  align-items: start;
}
.fit-row dt { margin: 0; color: var(--muted); font-weight: 650; }
.fit-row dd { margin: 0; color: var(--ink-soft); font-weight: 500; overflow-wrap: anywhere; }
.diet-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.diet-tags span {
  padding: 0.22rem 0.5rem;
  border: 0;
  border-radius: 999px;
  background: #f7e8ec;
  color: var(--lacquer-deep);
  font-size: 0.75rem;
  font-weight: 650;
}
.pros-cons {
  display: grid;
  gap: 0.75rem;
  margin: 0.85rem 0 0;
}
@media (min-width: 560px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros-cons ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: 0.9rem; }
.pros-cons li { margin: 0.3rem 0; }

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}
.method-list li {
  position: relative;
  counter-increment: method;
  padding: 0.75rem 0 0.75rem 2.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.method-list li::before {
  content: counter(method);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.method-list strong { color: var(--ink); }

.faq {
  border-top: 1px solid var(--line);
  padding: 0.15rem 0;
}
.faq summary {
  cursor: pointer;
  padding: 0.85rem 0;
  font-weight: 650;
  list-style: none;
}
.faq summary h3 {
  display: inline;
  margin: 0;
  font-family: var(--ui);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 0 0 0.9rem; color: var(--ink-soft); font-size: 0.95rem; }

.disclose {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.rail-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.05rem;
  position: sticky;
  top: 5.5rem;
}
.rail-box h2 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.rail-box ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.rail-box li { margin: 0.4rem 0; }
.rail-box a { text-decoration: none; color: var(--ink-soft); }
.rail-box a:hover { color: var(--lacquer); }
.rail-box .toc-sub {
  margin: 0.35rem 0 0.15rem;
  padding-left: 1rem;
  list-style: none;
  font-size: 0.8rem;
}
.rail-box .toc-sub a { color: var(--muted); }
.rail-box .toc-sub a.is-match { color: var(--lacquer); font-weight: 650; }

/* Mobile return-to-top */
.to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 40;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 252, 0.96);
  color: var(--lacquer-deep);
  box-shadow: 0 6px 18px rgba(10, 9, 10, 0.12);
  display: none;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
@media (max-width: 959px) {
  .to-top { display: grid; }
}

/* Category hubs + leaves */
.cat-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 1.35rem;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-chip:hover { border-color: var(--ink); }
.cat-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cat-note {
  margin: -0.55rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.cat-section {
  margin: 1.75rem 0 0;
  padding-top: 0.35rem;
}
.cat-section .band-head {
  margin-bottom: 0.85rem;
}
.cat-section .band-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 500;
}
/* List cards (no photo .bg) — same readable treatment as guides hub */
.cat-section .guide-card {
  min-height: 0;
  justify-content: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.cat-section .guide-card:hover {
  border-color: var(--ink);
  background: var(--porcelain);
}
.cat-section .guide-card .meta {
  color: var(--muted);
}
.cat-section .guide-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--ink);
}
.cat-section .guide-card p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}
.cat-hub-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .cat-hub-grid { grid-template-columns: 1fr 1fr; }
}
.cat-hub-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.15rem 1.2rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.cat-hub-card:hover { border-color: var(--lacquer); }
.cat-hub-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--lacquer-deep);
}
.cat-hub-card p {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}
.cat-hub-card .meta {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cat-more-wrap {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  margin: 1.25rem 0 0.25rem;
}
.cat-more-btn {
  appearance: none;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1.25rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.cat-more-btn:hover {
  background: var(--ink);
  color: #fff;
}
.cat-more-sentinel {
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.prod.is-deferred[hidden] {
  display: none !important;
}
.prod.is-filtered-out {
  display: none !important;
}

/* Category filters */
.cat-filters {
  position: sticky;
  top: 3.4rem;
  z-index: 40;
  margin: 0 0 1rem;
  padding: 0.65rem 0 0.75rem;
  background: color-mix(in srgb, var(--porcelain, #f7f4f1) 92%, #fff);
  border-bottom: 1px solid var(--line);
}
@supports not (background: color-mix(in srgb, #000 50%, #fff)) {
  .cat-filters { background: #f7f4f1; }
}
.cat-filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}
.cat-filters-open {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.6rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.cat-filters-open.has-filters {
  background: var(--lacquer-deep, #6b2d3c);
  border-color: var(--lacquer-deep, #6b2d3c);
}
.cat-filters-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
}
.cat-filters-badge[hidden] {
  display: none !important;
}
.cat-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  min-height: 2.6rem;
}
.cat-sort-label {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cat-sort-select {
  appearance: none;
  min-height: 2.6rem;
  max-width: 11.5rem;
  padding: 0.45rem 2rem 0.45rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23222222' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.65rem center;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
}
.cat-filters-count {
  margin: 0;
  width: 100%;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (min-width: 480px) {
  .cat-filters-count {
    width: auto;
    margin-left: 0;
  }
}
.cat-filters-active {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}
.cat-filter-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}
.cat-filter-chip span {
  font-size: 1rem;
  line-height: 1;
  color: var(--muted);
}
.cat-filter-chip--clear {
  border-style: dashed;
  color: var(--muted);
}
.cat-filters-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 16, 14, 0.45);
}
.cat-filters-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 640px);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
}
.cat-filters-panel[hidden],
.cat-filters-backdrop[hidden] {
  display: none !important;
}
.cat-filters-panel-head,
.cat-filters-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.85rem 1rem;
  padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  border-bottom: 1px solid var(--line);
}
.cat-filters-panel-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  padding-bottom: max(0.95rem, env(safe-area-inset-bottom));
}
.cat-filters-panel-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}
.cat-filters-close,
.cat-filters-clear,
.cat-filters-apply {
  appearance: none;
  min-height: 2.75rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.cat-filters-apply {
  flex: 1;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.cat-filters-panel-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0 1rem;
  overscroll-behavior: contain;
}
.cat-filter-group {
  border-bottom: 1px solid var(--line);
  padding: 0 1rem 0.35rem;
}
.cat-filter-group summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cat-filter-group summary::-webkit-details-marker { display: none; }
.cat-filter-opts {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.65rem;
}
.cat-filter-opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  cursor: pointer;
  font-size: 0.95rem;
}
.cat-filter-opt input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--ink);
}
.cat-filter-opt-count {
  color: var(--muted);
  font-size: 0.8rem;
}
.cat-filter-empty {
  margin: 1.25rem 0 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.cat-filter-empty-clear {
  appearance: none;
  border: 0;
  background: none;
  color: var(--lacquer, #8b3a4a);
  font: inherit;
  font-weight: 650;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
body.cat-filters-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .cat-filters {
    top: 3.6rem;
    position: sticky;
  }
  .cat-filters-backdrop { display: none !important; }
  .cat-filters-panel {
    position: absolute;
    left: 0;
    right: auto;
    bottom: auto;
    top: calc(100% - 0.35rem);
    width: min(22rem, 100%);
    max-height: min(70vh, 520px);
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }
  .cat-filters.is-open .cat-filters-panel {
    display: flex;
  }
  .cat-filters-panel-foot {
    display: none;
  }
  .cat-filters-close {
    font-size: 0.75rem;
  }
  body.cat-filters-open {
    overflow: auto;
  }
}

/* Brand type pills */
.brand-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  overflow-x: visible;
  padding-bottom: 0.15rem;
}
.brand-type-pill {
  appearance: none;
  flex: 0 0 auto;
  min-height: 2.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.brand-type-pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.brand-type-pill .n {
  color: inherit;
  opacity: 0.7;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 0.25rem;
}

