/* ============================================================
   ART SUPPLY COVE — Professional Redesign
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Tokens --- */
:root {
  --ink: #0d2230;
  --ink-2: #20384a;
  --muted: #6c7c8a;
  --line: #e3e8ed;
  --line-2: #eef2f5;
  --bg: #f7f6f1;
  --bg-2: #ffffff;
  --card: #ffffff;
  --primary: #0d3b4f;
  --primary-2: #0a5874;
  --primary-3: #11718e;
  --accent: #d8633f;
  --accent-2: #b94a26;
  --gold: #d4a574;
  --cream: #f1ead4;
  --green: #4a7c59;
  --red: #c14f4f;
  --shadow-sm: 0 1px 2px rgba(13, 34, 48, .05), 0 1px 1px rgba(13, 34, 48, .03);
  --shadow: 0 4px 12px rgba(13, 34, 48, .06), 0 2px 4px rgba(13, 34, 48, .04);
  --shadow-lg: 0 16px 40px -12px rgba(13, 34, 48, .18), 0 4px 12px rgba(13, 34, 48, .06);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--accent); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.section-head h2 { margin-bottom: 12px; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo:hover { color: var(--primary); }
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--cream);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}
.logo-mark { display: flex; flex-direction: column; line-height: 1.05; }
.logo-mark .logo-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.logo-mark .logo-tag {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
nav a:hover { background: var(--line-2); color: var(--primary); }
nav a.active { color: var(--primary); }
nav a.nav-cta {
  margin-left: 6px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 999px;
}
nav a.nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 1px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  nav a { padding: 12px 14px; }
  nav a.nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d3b4f 0%, #11718e 100%);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,59,79,.92) 0%, rgba(17,113,142,.78) 60%, rgba(216,99,63,.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 56px;
  padding: 96px 24px 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216,99,63,.25);
}
.hero h1 {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero h1 em {
  font-style: italic;
  color: #ffd9c2;
  font-weight: 500;
}
.hero p.lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 0 30px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(216,99,63,.4);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--accent-2); color: #fff; box-shadow: 0 10px 28px rgba(216,99,63,.5); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.hero-feat { display: inline-flex; align-items: center; gap: 8px; }
.hero-feat svg { width: 18px; height: 18px; flex-shrink: 0; color: #ffd9c2; }

/* Hero visual / logo orb */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%);
}
.logo-orb::after {
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.28);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-disc {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.35), inset 0 0 0 12px rgba(216,99,63,.12);
  z-index: 2;
}
.logo-disc img { width: 70%; height: 70%; object-fit: contain; border-radius: 50%; }
.logo-orb .orb-chip {
  position: absolute;
  background: #fff;
  color: var(--primary);
  font-family: var(--serif);
  font-weight: 700;
  font-size: .85rem;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  white-space: nowrap;
}
.orb-chip-1 { top: 8%; left: -8%; }
.orb-chip-2 { bottom: 14%; right: -10%; background: var(--accent); color: #fff; }
.orb-chip-3 { bottom: -2%; left: 22%; background: var(--ink); color: #fff; }

.hero-highlight {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.hi-cell {
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hi-cell:last-child { border-right: 0; }
.hi-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hi-icon svg { width: 22px; height: 22px; color: #ffd9c2; }
.hi-text-lead {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.15;
}
.hi-text-sub {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 72px; }
  .hero-visual { order: -1; }
  .logo-orb { width: 240px; height: 240px; }
  .logo-disc { width: 170px; height: 170px; }
  .hero-highlight { grid-template-columns: 1fr; }
  .hi-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hi-cell:last-child { border-bottom: 0; }
}

/* DISCLOSURE BAR */
.aff-bar {
  background: var(--cream);
  color: var(--ink-2);
  font-size: .88rem;
  border-bottom: 1px solid #e6dfc6;
}
.aff-bar .container {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
}
.aff-bar strong { color: var(--primary); }

/* GENERIC SECTION */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .kicker {
  display: inline-block;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head .divider {
  width: 56px; height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin: 18px auto 0;
}

/* EDITOR'S TOP PICKS - Editor's Vault */
.picks-section { background: var(--ink); color: #fff; padding: 80px 0; position: relative; }
.picks-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(17,113,142,.4), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(216,99,63,.25), transparent 70%);
  pointer-events: none;
}
.picks-section .container { position: relative; z-index: 1; }
.picks-section .section-head h2 { color: #fff; }
.picks-section .section-head p { color: rgba(255,255,255,.7); }
.picks-section .section-head .kicker { color: var(--gold); }

.picks-board {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.pick {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #143041;
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pick:hover { transform: translateY(-4px); border-color: rgba(216,99,63,.5); box-shadow: 0 24px 48px rgba(0,0,0,.35); color: #fff; }
.pick-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4ecd9;
}
.pick-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pick:hover .pick-image img { transform: scale(1.04); }
.pick-rank {
  position: absolute;
  top: 16px; left: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(216,99,63,.5);
  z-index: 2;
}
.pick-medal {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.92);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}
.pick-body { padding: 22px 24px 24px; }
.pick-cat {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.pick-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
}
.pick-rating {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem;
  margin-bottom: 14px;
}
.pick-stars { color: #f5b97a; letter-spacing: 1px; }
.pick-score { font-weight: 700; color: #fff; }
.pick-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: #ffd9c2;
  letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,217,194,.4);
  padding-bottom: 2px;
}
.pick:hover .pick-cta { color: #fff; border-color: #fff; }
.pick-1 { grid-row: span 2; }
.pick-1 .pick-image { aspect-ratio: 4/4.6; }
.pick-1 .pick-title { font-size: 1.65rem; }
.pick-1 .pick-rank { width: 56px; height: 56px; font-size: 1.4rem; }

@media (max-width: 880px) {
  .picks-board { grid-template-columns: 1fr; }
  .pick-1 { grid-row: span 1; }
  .pick-1 .pick-image { aspect-ratio: 4/3; }
  .pick-1 .pick-title { font-size: 1.4rem; }
}

/* CONTENT WITH SIDEBAR */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: flex-start;
}
@media (max-width: 1100px) { .content-with-sidebar { grid-template-columns: 1fr; } }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.filter-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .04em;
}
.filter-select {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--ink);
  cursor: pointer;
}
.filter-reset {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.filter-reset:hover { background: var(--accent); color: #fff; }
.filter-results { color: var(--muted); font-size: .85rem; margin-left: auto; }

/* PRODUCT GRID & CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  color: inherit;
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(13,34,48,.92);
  color: #fff;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.card-rating-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: #fff;
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}
.card-rating-badge .si { color: var(--accent); }

.price-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(216,99,63,.35);
}
.price-badge.bg-green { background: var(--green); box-shadow: 0 4px 10px rgba(74,124,89,.35); }
.price-badge.bg-gold { background: var(--gold); color: var(--ink); box-shadow: 0 4px 10px rgba(212,165,116,.4); }
.price-badge.bg-blue { background: var(--primary-3); box-shadow: 0 4px 10px rgba(17,113,142,.35); }
.price-badge.bg-ink { background: var(--ink); }

.card-body {
  padding: 18px 20px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-brand {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--ink);
}
.stars-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .85rem;
}
.stars-char { color: var(--accent); letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--muted); font-size: .82rem; }

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 8px;
}
.price-est-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}
.price-est-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
}
.price-est-note {
  font-size: .72rem;
  color: var(--muted);
  margin-left: auto;
}

.card-snippet {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.card-footer {
  border-top: 1px solid var(--line);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-review {
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent);
  letter-spacing: .04em;
}
.product-card:hover .btn-review { color: var(--accent-2); }

/* SIDEBAR */
.sidebar { position: sticky; top: 96px; }
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-item {
  display: grid;
  grid-template-columns: auto 56px 1fr;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  align-items: center;
  color: inherit;
  transition: background .15s ease;
}
.sidebar-item:hover { background: var(--bg); color: inherit; }
.sidebar-rank {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  min-width: 28px;
  text-align: center;
}
.sidebar-img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }
.sidebar-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.sidebar-stars { font-size: .76rem; color: var(--muted); }
.sidebar-stars .num { color: var(--accent); font-weight: 700; }
.sidebar-link { display: none; }

/* BRAND CLOUD */
.brand-cloud-section { padding: 56px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-cloud-label {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}
.brand-tag {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
}
.brand-tag:hover { border-color: var(--accent); color: var(--accent); }
.brand-tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* COMPARE TABLE */
.compare-section { background: var(--bg-2); }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: .92rem;
}
.compare-table thead { background: var(--ink); color: #fff; }
.compare-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.compare-table td { padding: 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-row { cursor: pointer; transition: background .15s ease; }
.compare-row:hover { background: var(--bg); }
.compare-rank { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.compare-img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.compare-name { font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.compare-brand-tag { font-size: .7rem; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.compare-score { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--accent); }
.compare-bar { width: 100px; height: 6px; background: var(--line); border-radius: 999px; margin-top: 6px; overflow: hidden; }
.compare-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.compare-link { color: var(--primary); font-weight: 600; }

/* PAGE HERO (sub-pages) */
.page-hero {
  background: linear-gradient(135deg, #0d3b4f 0%, #11718e 100%);
  color: #fff;
  padding: 28px 0;
}
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb sep { opacity: .5; }
.breadcrumb span { color: #fff; font-weight: 600; }

/* Static page hero */
.static-hero {
  background: linear-gradient(135deg, #0d3b4f 0%, #11718e 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.static-hero h1 { color: #fff; margin-bottom: 8px; font-family: var(--serif); }
.static-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0; }

.static-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.static-content h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.static-content h2:first-child { margin-top: 0; }
.static-content h3 { font-family: var(--serif); font-size: 1.2rem; margin-top: 22px; }
.static-content ul { padding-left: 22px; }
.static-content li { margin-bottom: 8px; }

/* PRODUCT PAGE */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  padding: 40px 0 24px;
  align-items: start;
}
@media (max-width: 880px) { .product-layout { grid-template-columns: 1fr; gap: 32px; } }

.gallery-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumb {
  width: 80px; height: 80px;
  border: 2px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color .15s ease;
}
.gallery-thumb:hover { border-color: var(--primary-3); }
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .p-brand {
  display: inline-block;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.p-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
}
.p-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: .95rem;
}
.p-rating .stars-char { color: var(--accent); letter-spacing: 1px; font-size: 1.1rem; }
.p-rating .score { font-family: var(--serif); font-weight: 700; }
.p-rating .reviews-ct { color: var(--muted); font-size: .85rem; }

.score-bar-wrap { margin-bottom: 22px; }
.score-bar-label {
  display: flex; justify-content: space-between;
  font-size: .82rem; color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.score-bar-track { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 999px; }

.price-card {
  background: linear-gradient(135deg, #f4ecd9 0%, #fff 100%);
  border: 1px solid #e6dfc6;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.price-card .pc-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-card .pc-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--primary);
  line-height: 1.1;
}
.price-card .pc-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
}
.price-card .pc-badge {
  background: var(--accent);
  color: #fff;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.verdict-box {
  background: #fff7f0;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.verdict-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.verdict-text { color: var(--ink-2); margin: 0; font-size: .95rem; line-height: 1.6; }

.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 18px rgba(216,99,63,.4);
  transition: transform .15s ease, background .15s ease;
}
.btn-buy:hover { background: var(--accent-2); transform: translateY(-2px); color: #fff; }
.btn-read-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid var(--line);
}
.btn-read-reviews:hover { background: var(--cream); color: var(--ink); }
.cta-disclosure {
  font-size: .78rem;
  color: var(--muted);
  margin: 12px 0 22px;
  line-height: 1.5;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.features-list li {
  position: relative;
  padding-left: 22px;
  font-size: .9rem;
  color: var(--ink-2);
}
.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 600px) { .features-list { grid-template-columns: 1fr; } }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 32px;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.pros-box { border-top: 4px solid var(--green); }
.cons-box { border-top: 4px solid var(--red); }
.box-head {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.pros-box .box-head { color: var(--green); }
.cons-box .box-head { color: var(--red); }
.pros-box ul, .cons-box ul { padding-left: 20px; margin: 0; }
.pros-box li, .cons-box li { margin-bottom: 8px; font-size: .92rem; }

.product-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 880px) { .product-charts { grid-template-columns: 1fr; } }
.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.chart-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 6px;
}
.chart-sub { font-size: .82rem; color: var(--muted); margin: 0 0 18px; }

.metric-list { display: flex; flex-direction: column; gap: 14px; }
.metric-row { font-size: .9rem; }
.metric-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.metric-name { color: var(--ink-2); font-weight: 600; }
.metric-score { color: var(--accent); font-weight: 700; }
.metric-bar { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.metric-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary-3), var(--accent)); border-radius: 999px; }

.product-desc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
}
.product-desc h2 { font-family: var(--serif); font-size: 1.5rem; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.product-desc p { color: var(--ink-2); line-height: 1.75; }

.reviews-section { margin: 36px 0; }
.reviews-section h2 { font-family: var(--serif); font-size: 1.5rem; margin: 0 0 18px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.review-top { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .85rem; }
.reviewer-name { font-weight: 700; color: var(--ink); }
.review-date { color: var(--muted); }
.review-stars { color: var(--accent); margin-bottom: 6px; letter-spacing: 1px; }
.review-title { font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.review-text { color: var(--ink-2); font-size: .92rem; line-height: 1.55; }

.related-section { background: var(--bg); padding: 64px 0; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 880px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.related-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 14px 16px; }
.related-brand { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.related-title { font-family: var(--serif); font-size: .95rem; font-weight: 600; line-height: 1.3; margin-bottom: 6px; }
.related-stars { font-size: .8rem; color: var(--muted); margin-bottom: 6px; }
.related-link { font-size: .8rem; color: var(--accent); font-weight: 600; }

/* FOOTER */
footer {
  background: #0a1d28;
  color: #c5d3dc;
  padding: 64px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
.footer-brand { max-width: 380px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo-img { width: 42px; height: 42px; border-radius: 10px; background: #fff; padding: 4px; }
.footer-brand p { color: #a4b3bd; font-size: .92rem; line-height: 1.6; margin-bottom: 12px; }
.footer-disclaimer { font-size: .82rem !important; color: #8395a0 !important; padding: 12px 14px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.04); border-radius: 0 8px 8px 0; }

footer h4 {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
  margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: #a4b3bd; font-size: .9rem; transition: color .15s ease; }
footer ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: #7a8a94;
}
.footer-bottom a { color: #a4b3bd; }
.footer-bottom a:hover { color: var(--accent); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  display: none;
}
#cookie-banner.show { display: block; }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}
.cookie-text { margin: 0; font-size: .9rem; flex: 1; min-width: 240px; color: #d2dde4; }
.cookie-text a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  border: none;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-2); }
.cookie-decline { background: transparent; color: #d2dde4; border: 1px solid rgba(255,255,255,.2); }
.cookie-decline:hover { background: rgba(255,255,255,.06); }

/* Ad placement */
.ad-placement { padding: 24px 0; text-align: center; }
.ad-placement-inner { display: inline-flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.ad-unit { min-width: 0; }

.pg-item.hidden { display: none; }
