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

/* ═══════════════════════════════════════════════════════════════
   STYLE VAULT — Fashion & Apparel Review Site Design System
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --ink:        #0D0D0D;
  --slate:      #1A1A2E;
  --slate-mid:  #252540;
  --gold:       #B8936A;
  --gold-light: #DFC59C;
  --gold-pale:  #F5EBD8;
  --rose:       #C4717A;
  --cream:      #FAF9F6;
  --white:      #FFFFFF;
  --fog:        #F3F1EC;
  --ash:        #E5E1D7;
  --muted:      #7A7570;
  --text:       #1C1C1E;

  /* Semantic */
  --bg:         var(--cream);
  --surface:    var(--white);
  --surface2:   var(--fog);
  --border:     var(--ash);
  --primary:    var(--slate);
  --accent:     var(--gold);

  /* Spacing & Shape */
  --radius:    14px;
  --radius-sm:  8px;
  --radius-lg: 24px;
  --shadow:    0 2px 20px rgba(0,0,0,.06);
  --shadow-md: 0 4px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.15);

  /* Typography */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font:      'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--slate); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .3s, background .3s;
}
header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: .02em;
  flex-shrink: 0;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-text-main { color: var(--slate); }
.logo-text-accent { color: var(--gold); }

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
nav a {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
  text-decoration: none;
}
nav a:hover { color: var(--slate); background: var(--fog); text-decoration: none; }
nav a.active { color: var(--slate); font-weight: 600; }
.nav-divider { width: 1px; height: 20px; background: var(--border); margin: 0 6px; }
.nav-cta {
  background: var(--slate) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .82rem !important;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  header.nav-open nav { display: flex; }
  nav a { width: 100%; padding: 10px 14px; font-size: .95rem; }
  .nav-divider { display: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 76vh;
  display: flex;
  align-items: center;
  background: var(--slate);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: saturate(.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(26,26,46,.72) 55%, rgba(12,12,22,.85) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,147,106,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,106,.07) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 24px 90px;
}

/* Hero logo decoration */
.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-logo-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(184,147,106,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,106,.3);
}
.hero-logo-ring img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-logo-text {
  text-align: left;
}
.hero-logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
}
.hero-logo-text .brand-tagline {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 4px;
  font-family: var(--font-mono);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* Hero CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease;
  font-family: var(--font-mono);
}
.hero-btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.hero-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.hero-btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(184,147,106,.5);
}
.hero-btn-secondary:hover {
  border-color: var(--gold-light);
  background: rgba(184,147,106,.08);
  transform: translateY(-1px);
}

/* Hero category pills */
.hero-cats {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 8px;
}
.hero-cat-pill {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease;
  background: rgba(255,255,255,.04);
}
.hero-cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,147,106,.1);
}

/* ═══════════════════════════════════════════════════════════════
   AFFILIATE BAR
   ═══════════════════════════════════════════════════════════════ */
.aff-bar {
  background: var(--fog);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
}
.aff-bar strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-head .label {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-head .label::before,
.section-head .label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.section-head.light h2 { color: var(--white); }
.section-head p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 500px;
  margin: 0 auto;
}
.section-head.light p { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════════
   EDITOR'S TOP PICKS — Magazine Layout
   ═══════════════════════════════════════════════════════════════ */
.picks-section {
  background: var(--slate);
  padding: 80px 0;
}
.picks-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) {
  .picks-grid { grid-template-columns: 1fr 1fr; }
  .picks-card:first-child { grid-column: span 2; }
}
@media (max-width: 560px) {
  .picks-grid { grid-template-columns: 1fr; }
  .picks-card:first-child { grid-column: span 1; }
}
.picks-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  transition: background .25s;
}
.picks-card:hover { background: rgba(255,255,255,.08); text-decoration: none; color: inherit; }
.picks-img {
  height: 260px;
  overflow: hidden;
  background: var(--slate-mid);
}
.picks-card:first-child .picks-img { height: 340px; }
.picks-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: saturate(.85);
}
.picks-card:hover .picks-img img { transform: scale(1.04); }
.picks-body {
  padding: 22px 24px 26px;
}
.picks-rank {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.picks-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.picks-card:first-child .picks-title { font-size: 1.4rem; }
.picks-stars {
  color: var(--gold-light);
  font-size: .82rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.picks-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-mono);
  transition: gap .2s;
}
.picks-card:hover .picks-cta { gap: 10px; }
.picks-cta::after { content: '→'; }

/* ═══════════════════════════════════════════════════════════════
   TOP 10 PRODUCTS — Ranked List Block
   ═══════════════════════════════════════════════════════════════ */
.top10-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.top10-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 780px) { .top10-grid { grid-template-columns: 1fr; } }

.top10-item {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.top10-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  text-decoration: none;
  color: inherit;
}
.top10-num {
  flex-shrink: 0;
  width: 64px;
  background: var(--slate);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.top10-item:nth-child(1) .top10-num { background: #B8860B; }
.top10-item:nth-child(2) .top10-num { background: #808080; }
.top10-item:nth-child(3) .top10-num { background: #8B4513; }
.top10-num span {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1;
}
.top10-num sub {
  font-size: .55rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-mono);
}
.top10-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--fog);
}
.top10-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top10-body {
  flex: 1;
  padding: 14px 16px;
  min-width: 0;
}
.top10-brand {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.top10-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top10-score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
}
.top10-stars { color: var(--gold); letter-spacing: 1px; }
.top10-num-score { font-weight: 700; color: var(--ink); }
.top10-arrow {
  flex-shrink: 0;
  padding: 0 16px;
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s, transform .2s;
}
.top10-item:hover .top10-arrow { color: var(--gold); transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY FILTER — Pills
   ═══════════════════════════════════════════════════════════════ */
.filter-section {
  background: var(--fog);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 24px;
}
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-label-main {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.filter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-select {
  padding: 7px 12px 7px 10px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .18s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.filter-select:focus { outline: none; border-color: var(--gold); }
.filter-reset {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: .78rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
  font-family: var(--font);
}
.filter-reset:hover { border-color: var(--slate); color: var(--slate); }
.filter-results {
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* Category pills */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
  background: var(--white);
  user-select: none;
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--slate); color: var(--slate); background: var(--white); }
.cat-pill.active {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.cat-pill .pill-icon { font-size: .85rem; }
.cat-pill .pill-count {
  font-size: .68rem;
  background: rgba(0,0,0,.12);
  border-radius: 50px;
  padding: 1px 6px;
  font-family: var(--font-mono);
}
.cat-pill.active .pill-count { background: rgba(255,255,255,.2); }

/* Brand pills row */
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brand-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
  background: var(--white);
  user-select: none;
}
.brand-tag:hover { border-color: var(--gold); color: var(--gold); }
.brand-tag.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════════════════ */
.products-section {
  padding: 64px 0 80px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--ash);
  text-decoration: none;
  color: inherit;
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--fog);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26,26,46,.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: .62rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-mono);
}
.card-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.card-rating-badge .si { color: var(--gold); font-size: .75rem; }
.card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-brand {
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--ink);
}
.stars-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.stars-char { color: var(--gold); font-size: .88rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: .85rem; color: var(--ink); }
.rating-count { font-size: .75rem; color: var(--muted); }
.card-snippet {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.btn-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--slate);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-mono);
}
.btn-review:hover { background: var(--gold); text-decoration: none; color: var(--white); }
.btn-review::after { content: '→'; font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
  color: var(--text);
  padding: 0 14px;
  font-family: var(--font);
}
.page-btn:hover, .page-btn.active {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.page-btn.disabled { opacity: .35; pointer-events: none; }
.page-nav { padding: 0 16px; }

/* ═══════════════════════════════════════════════════════════════
   COMPARE TABLE
   ═══════════════════════════════════════════════════════════════ */
.compare-section {
  background: var(--fog);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--white);
}
.compare-table th {
  background: var(--slate);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
  font-family: var(--font-mono);
}
.compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: .87rem; vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.clickable-row { cursor: pointer; transition: background .15s; }
.compare-table tr.clickable-row:hover td { background: rgba(184,147,106,.05); }
.compare-rank { font-size: 1.4rem; font-weight: 700; text-align: center; width: 48px; }
.compare-img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.compare-name { font-weight: 600; font-family: var(--font-head); font-size: .92rem; color: var(--ink); line-height: 1.35; margin-bottom: 3px; }
.compare-brand-tag { font-size: .65rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .09em; font-family: var(--font-mono); }
.compare-cat-tag { display: inline-block; background: var(--fog); color: var(--muted); font-size: .65rem; padding: 2px 8px; border-radius: 50px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }
.compare-bar { height: 5px; background: var(--ash); border-radius: 3px; margin-top: 5px; overflow: hidden; }
.compare-bar-fill { height: 100%; background: linear-gradient(90deg, var(--slate), var(--gold)); border-radius: 3px; }
.compare-score { font-weight: 700; color: var(--slate); font-size: 1rem; }
.compare-link {
  display: inline-block;
  background: var(--slate);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  transition: background .18s;
  white-space: nowrap;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.compare-link:hover { background: var(--gold); text-decoration: none; color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1040px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}
.sidebar { min-width: 0; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.sidebar-widget-head {
  background: var(--slate);
  padding: 16px 20px;
}
.sidebar-widget-head h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list { display: flex; flex-direction: column; }
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
  color: inherit;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item:hover { background: var(--fog); text-decoration: none; color: inherit; }
.sidebar-rank {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 26px;
  flex-shrink: 0;
}
.sidebar-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--fog);
}
.sidebar-info { flex: 1; min-width: 0; }
.sidebar-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 3px;
}
.sidebar-stars { color: var(--gold); font-size: .72rem; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--slate);
  padding: 24px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  font-family: var(--font-mono);
}
.breadcrumb a { color: rgba(255,255,255,.75); transition: color .15s; }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }
.breadcrumb sep { color: rgba(255,255,255,.3); margin: 0 2px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 56px 0;
}
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; gap: 40px; } }

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 90px; }
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--fog);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all .2s;
  opacity: .65;
  background: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover, .gallery-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,147,106,.25);
}

/* Product info */
.p-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.p-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--ink);
}
.p-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.p-rating .stars-char { font-size: 1.1rem; color: var(--gold); }
.p-rating .score { font-size: 1rem; font-weight: 700; color: var(--ink); }
.p-rating .reviews-ct { font-size: .82rem; color: var(--muted); }

/* Score bar */
.score-bar-wrap {
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 22px;
}
.score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  margin-bottom: 8px;
}
.score-bar-label span:first-child { color: var(--muted); }
.score-bar-label span:last-child { font-weight: 700; color: var(--ink); }
.score-bar-track { height: 6px; background: var(--ash); border-radius: 3px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--slate), var(--gold)); border-radius: 3px; transition: width 1s; }

/* Verdict */
.verdict-box {
  background: linear-gradient(135deg, var(--gold-pale), rgba(184,147,106,.05));
  border: 1px solid rgba(184,147,106,.3);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 26px;
}
.verdict-label {
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.verdict-label::before { content: '✦'; }
.verdict-text { font-size: .92rem; color: var(--text); line-height: 1.7; }

/* CTA */
.cta-group { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.btn-primary {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--slate);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s;
  font-family: var(--font);
}
.btn-primary:hover { background: var(--gold); text-decoration: none; color: var(--white); }

/* Features */
.features-block { margin-bottom: 26px; }
.features-block h3 {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 14px;
}
.features-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
}
.features-list li::before { content: '✦'; color: var(--gold); font-size: .6rem; flex-shrink: 0; margin-top: 4px; }

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 0;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.pros-box { border-top: 3px solid #22c55e; }
.cons-box { border-top: 3px solid #ef4444; }
.box-head {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-box .box-head { color: #16a34a; }
.cons-box .box-head { color: #dc2626; }
.pros-box ul, .cons-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-box li, .cons-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.55;
}
.pros-box li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-box li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Description */
.product-desc { margin: 0 0 52px; }
.product-desc h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-desc h2::before {
  content: '✦';
  color: var(--gold);
  font-size: .9rem;
  font-family: var(--font);
}
.product-desc p { margin-bottom: 18px; color: var(--text); font-size: .95rem; line-height: 1.8; }

/* Reviews */
.reviews-section { margin: 0 0 60px; }
.reviews-section h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.review-date { font-size: .75rem; color: var(--muted); font-family: var(--font-mono); }
.review-stars { color: var(--gold); font-size: .88rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-title { font-weight: 700; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.review-text { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* Related */
.related-section {
  background: var(--fog);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 960px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; color: inherit; }
.related-img { height: 160px; overflow: hidden; background: var(--fog); }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-body { padding: 14px; }
.related-brand {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: var(--font-mono);
}
.related-title { font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 8px; }
.related-stars { color: var(--gold); font-size: .78rem; letter-spacing: 1px; }
.related-link {
  display: block;
  margin-top: 10px;
  text-align: center;
  background: var(--slate);
  color: var(--white);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .18s;
}
.related-link:hover { background: var(--gold); text-decoration: none; color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   STATIC PAGES (About, Terms, Cookie)
   ═══════════════════════════════════════════════════════════════ */
.static-hero {
  background: var(--slate);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.static-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,147,106,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,106,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.static-hero-content { position: relative; z-index: 1; }
.static-hero .hero-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.static-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.01em;
}
.static-hero p { color: rgba(255,255,255,.65); font-size: 1rem; margin-top: 12px; max-width: 520px; }

.static-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 28px 96px;
}
.static-content h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 44px 0 16px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}
.static-content h2:first-child { margin-top: 0; }
.static-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--ink);
}
.static-content p { margin-bottom: 18px; line-height: 1.8; font-size: .95rem; color: var(--text); }
.static-content ul {
  margin: 14px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .94rem;
  list-style: none;
}
.static-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}
.static-content ul li::before { content: '✦'; color: var(--gold); font-size: .55rem; flex-shrink: 0; margin-top: 6px; }
.static-content a { color: var(--gold); text-decoration: underline; }

/* Info cards for about page */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 680px) { .info-cards { grid-template-columns: 1fr; } }
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.info-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.info-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}
@media (max-width: 680px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--slate);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.team-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: .75rem; color: var(--gold); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; }

/* Cookie policy box */
.cookie-info-box {
  background: linear-gradient(135deg, var(--gold-pale), rgba(184,147,106,.06));
  border: 1px solid rgba(184,147,106,.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.cookie-info-box p { margin: 0; color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--slate);
  border-top: 2px solid var(--gold);
  padding: 20px 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: .84rem;
  color: rgba(255,255,255,.82);
  min-width: 240px;
  line-height: 1.6;
}
.cookie-text a { color: var(--gold-light); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .18s;
  font-family: var(--font);
}
.cookie-accept:hover { opacity: .88; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .84rem;
  cursor: pointer;
  transition: all .18s;
  font-family: var(--font);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.55); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--slate);
  color: rgba(255,255,255,.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand .footer-logo:hover { text-decoration: none; }
.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand p {
  font-size: .84rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 290px;
}
.footer-disclaimer {
  margin-top: 16px;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  line-height: 1.65;
}
footer h4 {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 18px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a {
  color: rgba(255,255,255,.58);
  font-size: .84rem;
  transition: color .18s;
  text-decoration: none;
}
footer ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-bottom .sep { margin: 0 8px; opacity: .4; }

/* ═══════════════════════════════════════════════════════════════
   AD PLACEMENT
   ═══════════════════════════════════════════════════════════════ */
.ad-placement { padding: 48px 0; background: var(--fog); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ad-placement-inner { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.ad-unit { min-width: 300px; min-height: 250px; }
