@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS — Home & Living: Home Decor
   ============================================================ */
:root {
  --terracotta: #C4704B;
  --terracotta-dark: #A85A38;
  --terracotta-light: #E8A883;
  --sage: #8B9E7E;
  --sage-dark: #6B7E5E;
  --sage-light: #B8C9AB;
  --cream: #F7F3EE;
  --warm-white: #FDFBF8;
  --linen: #F0EBE3;
  --taupe: #B8AFA6;
  --charcoal: #2D2926;
  --warm-gray: #6B6560;
  --brass: #C9A961;
  --brass-light: #E2D1A8;
  --dusty-rose: #D4A09A;

  --bg: var(--warm-white);
  --surface: #FFFFFF;
  --surface2: var(--linen);
  --text: var(--charcoal);
  --muted: var(--warm-gray);
  --border: #E5DFD8;
  --border-light: #F0EBE3;
  --accent: var(--terracotta);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(45,41,38,.06);
  --shadow: 0 4px 20px rgba(45,41,38,.08);
  --shadow-lg: 0 12px 48px rgba(45,41,38,.12);

  --font-head: 'Playfair Display', Georgia, serif;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Legacy compat aliases */
  --green-900: var(--charcoal);
  --green-800: var(--terracotta);
  --green-700: var(--terracotta-dark);
  --green-600: var(--sage);
  --gold: var(--brass);
  --gold-light: var(--brass-light);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
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;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--terracotta); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terracotta-dark); }
img { max-width: 100%; display: block; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* Section headings */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.section-head .divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--brass));
  border-radius: 2px; margin: 16px auto 0;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,251,248,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: none;
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(45,41,38,.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  color: var(--charcoal); letter-spacing: -.02em;
}
.logo:hover { text-decoration: none; color: var(--charcoal); }
.logo-img {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
}

nav { display: flex; align-items: center; gap: 2px; }
nav a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  padding: 8px 16px; border-radius: var(--radius-xs);
  transition: all .2s; white-space: nowrap;
}
nav a:hover { color: var(--charcoal); background: var(--linen); text-decoration: none; }
.nav-cta {
  background: var(--terracotta) !important; color: #fff !important;
  font-weight: 600 !important; padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--terracotta-dark) !important; color: #fff !important; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 6px 4px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--charcoal);
  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; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 90px;
  background: linear-gradient(145deg, var(--charcoal) 0%, #3D3530 50%, #4A3F38 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(45,41,38,.78), rgba(74,63,56,.55));
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,112,75,.12), transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,97,.15); border: 1px solid rgba(201,169,97,.3);
  color: var(--brass-light); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 24px; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--brass-light); }
.hero p {
  color: rgba(255,255,255,.7); font-size: 1.15rem;
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hero-stat-num { font-size: 1.8rem; font-weight: 700; color: #fff; font-family: var(--font-head); }
.hero-stat-label { font-size: .76rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* Logo animation in hero */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(1deg); }
  75% { transform: translateY(3px) rotate(-1deg); }
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(201,169,97,.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(201,169,97,.6)); }
}
.hero-logo-animated {
  display: inline-block;
  animation: logoFloat 6s ease-in-out infinite, logoPulse 4s ease-in-out infinite;
  margin-bottom: 24px;
}
.hero-logo-animated img {
  width: 80px; height: 80px; border-radius: var(--radius);
  object-fit: cover; border: 2px solid rgba(201,169,97,.4);
}
.hero-logo-animated.hero-logo-lg img {
  width: 110px; height: 110px; border-radius: 22px;
  border: 3px solid rgba(201,169,97,.45);
  box-shadow: 0 12px 48px rgba(0,0,0,.35), 0 0 80px rgba(201,169,97,.15);
}

/* Trust bar — replaces stats */
.hero-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 60px; padding: 14px 36px;
  margin-top: 8px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 500;
  padding: 0 20px; white-space: nowrap;
}
.trust-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--brass-light); stroke: var(--brass-light);
}
.trust-divider {
  width: 1px; height: 20px; background: rgba(255,255,255,.15); flex-shrink: 0;
}
@media(max-width: 768px) {
  .hero-trust-bar { flex-direction: column; border-radius: var(--radius); padding: 18px 24px; gap: 10px; }
  .trust-divider { width: 60px; height: 1px; }
  .trust-item { padding: 4px 0; font-size: .82rem; }
  .hero-logo-animated.hero-logo-lg img { width: 90px; height: 90px; }
}

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

/* ============================================================
   EDITOR'S TOP PICKS — Magazine editorial layout
   ============================================================ */
.featured-strip {
  background: var(--charcoal); padding: 80px 0;
  position: relative; overflow: hidden;
}
.featured-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(196,112,75,.08), transparent 60%);
}
.featured-strip .section-head h2 { color: #fff; }
.featured-strip .section-head p { color: rgba(255,255,255,.55); }
.featured-strip .divider { background: linear-gradient(90deg, var(--terracotta), var(--brass)); }
.featured-strip .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.featured-strip .section-head, .featured-strip .featured-grid { width: 100%; }

.featured-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px;
}
.featured-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s;
  color: inherit; text-decoration: none;
}
.featured-card:first-child { grid-row: span 2; }
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  text-decoration: none; color: inherit;
  border-color: rgba(196,112,75,.4);
}
.featured-img { position: relative; overflow: hidden; flex-shrink: 0; }
.featured-card:first-child .featured-img { height: 100%; min-height: 280px; }
.featured-card:not(:first-child) .featured-img { height: 180px; }
.featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.23,1,.32,1);
}
.featured-card:hover .featured-img img { transform: scale(1.06); }
.featured-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%; background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
.featured-body {
  padding: 24px; position: relative;
  background: linear-gradient(to bottom, rgba(45,41,38,.4), rgba(45,41,38,.8));
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
}
.featured-card:first-child .featured-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(45,41,38,.9), transparent);
}
.featured-rank {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brass-light);
  background: rgba(201,169,97,.15); padding: 4px 12px;
  border-radius: 20px; margin-bottom: 10px; width: fit-content;
}
.featured-title {
  font-family: var(--font-head); font-size: 1.05rem;
  font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: 10px;
}
.featured-card:first-child .featured-title { font-size: 1.3rem; }
.featured-stars { color: var(--brass-light); font-size: .88rem; margin-bottom: 14px; }
.featured-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brass-light); font-size: .84rem; font-weight: 600;
}
.featured-link:hover { color: #fff; text-decoration: none; }
.featured-link::after { content: '\2192'; }
.featured-img.no-img {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); font-size: 2rem; opacity: .4;
}

/* ============================================================
   CATEGORY FILTER
   ============================================================ */
.category-filter-section {
  background: var(--surface); padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.category-filter-wrap {
  display: flex; align-items: center; gap: 10px; overflow-x: auto;
  padding: 4px 0; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-filter-wrap::-webkit-scrollbar { display: none; }
.category-filter-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border: 1.5px solid var(--border);
  border-radius: 24px; font-size: .82rem; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: all .2s;
  background: var(--surface); user-select: none; white-space: nowrap; flex-shrink: 0;
}
.cat-pill:hover { border-color: var(--terracotta); color: var(--terracotta); background: rgba(196,112,75,.04); }
.cat-pill.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); font-weight: 600; }
.cat-pill .cat-count {
  font-size: .7rem; font-weight: 700;
  background: rgba(0,0,0,.08); padding: 1px 6px; border-radius: 10px;
}
.cat-pill.active .cat-count { background: rgba(255,255,255,.2); }

/* Brand cloud (kept for compat) */
.brand-cloud-section { background: var(--surface2); padding: 24px 0; border-bottom: 1px solid var(--border); }
.brand-cloud-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); text-align: center; margin-bottom: 12px;
}
.brand-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.brand-tag {
  display: inline-block; padding: 5px 14px; border: 1.5px solid var(--border);
  border-radius: 20px; font-size: .78rem; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: all .18s;
  background: var(--surface); user-select: none; line-height: 1.5;
}
.brand-tag:hover { border-color: var(--terracotta); color: var(--terracotta); background: rgba(196,112,75,.04); }
.brand-tag.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

/* ============================================================
   TOP 10 PRODUCTS — Showcase cards
   ============================================================ */
.compare-section { background: var(--surface2); border-top: 1px solid var(--border); }
.top10-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.top10-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  transition: all .3s cubic-bezier(.23,1,.32,1);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.top10-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--terracotta), var(--brass));
  border-radius: 4px 0 0 4px;
}
.top10-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
  border-color: var(--terracotta-light); text-decoration: none; color: inherit;
}
.top10-rank {
  flex-shrink: 0; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--terracotta), var(--brass));
  color: #fff; font-family: var(--font-head);
  font-size: 1rem; font-weight: 700; border-radius: 50%;
}
.top10-card:nth-child(1) .top10-rank { background: linear-gradient(135deg, #C9A961, #E2D1A8); color: var(--charcoal); font-size: 1.2rem; }
.top10-card:nth-child(2) .top10-rank { background: linear-gradient(135deg, #B8AFA6, #D4CFC8); color: var(--charcoal); }
.top10-card:nth-child(3) .top10-rank { background: linear-gradient(135deg, #C4704B, #E8A883); }
.top10-img {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0; border: 1px solid var(--border);
}
.top10-info { flex: 1; min-width: 0; }
.top10-name { font-family: var(--font-head); font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.top10-brand { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--terracotta); margin-bottom: 5px; }
.top10-rating { display: flex; align-items: center; gap: 6px; }
.top10-stars { color: var(--brass); font-size: .82rem; }
.top10-score { font-weight: 700; font-size: .85rem; color: var(--terracotta); }
.top10-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 5px; overflow: hidden; }
.top10-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--terracotta), var(--brass)); }

/* Hide legacy compare table */
.compare-table-wrap { display: none; }
.compare-table { display: none; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .3s cubic-bezier(.23,1,.32,1);
  display: flex; flex-direction: column; color: inherit; text-decoration: none;
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: var(--terracotta-light); text-decoration: none; color: inherit;
}
.card-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--linen); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.23,1,.32,1); }
.product-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-wrap.no-img { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--charcoal), #4A3F38); }
.card-img-placeholder { font-size: 3.5rem; opacity: .25; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--surface); color: var(--text);
  font-size: .7rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; box-shadow: var(--shadow-sm);
}
.card-rating-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(45,41,38,.85); backdrop-filter: blur(8px);
  color: #fff; font-size: .82rem; font-weight: 700;
  padding: 5px 10px; border-radius: var(--radius-xs);
  display: flex; align-items: center; gap: 3px;
}
.card-rating-badge .si { color: var(--brass-light); font-size: .85rem; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-brand { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--terracotta); margin-bottom: 6px; }
.card-title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.card-snippet {
  font-size: .86rem; color: var(--muted); line-height: 1.65;
  flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.stars-char { color: var(--brass); font-size: .95rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: .9rem; }
.rating-count { font-size: .8rem; color: var(--muted); }
.card-footer { padding: 16px 20px; border-top: 1px solid var(--border-light); }
.btn-review {
  display: block; text-align: center;
  background: var(--terracotta); color: #fff;
  padding: 11px 16px; border-radius: var(--radius-sm);
  font-size: .86rem; font-weight: 600; transition: all .2s;
}
.btn-review:hover { background: var(--terracotta-dark); text-decoration: none; color: #fff; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.page-btn {
  width: 42px; height: 42px; border: 1px solid var(--border);
  background: var(--surface); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 500; cursor: pointer; transition: all .2s; color: var(--text);
}
.page-btn:hover, .page-btn.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.page-btn.disabled { opacity: .4; pointer-events: none; }
.page-nav { padding: 0 16px; width: auto; font-size: .85rem; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.page-hero { background: linear-gradient(145deg, var(--charcoal), #3D3530); padding: 24px 0; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .84rem; color: rgba(255,255,255,.55); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb sep { color: rgba(255,255,255,.35); margin: 0 2px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 56px 0; }

/* 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-lg); aspect-ratio: 4/3; background: var(--linen); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main.no-img { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--charcoal), #4A3F38); font-size: 5rem; opacity: .3; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  flex: 0 0 auto; width: 72px; height: 72px; border-radius: var(--radius-sm);
  cursor: pointer; border: 2px solid var(--border); transition: all .2s; opacity: .65;
  background: var(--surface2); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gallery-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--terracotta); box-shadow: 0 0 0 2px rgba(196,112,75,.2); }

/* Product info */
.p-brand {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(196,112,75,.08); color: var(--terracotta);
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.p-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.25; margin-bottom: 16px; }
.p-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.p-rating .stars-char { font-size: 1.1rem; color: var(--brass); }
.p-rating .score { font-size: 1.1rem; font-weight: 700; }
.p-rating .reviews-ct { font-size: .85rem; color: var(--muted); }
.score-bar-wrap { background: var(--linen); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 22px; }
.score-bar-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-bottom: 6px; }
.score-bar-track { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--terracotta), var(--brass)); }

/* Verdict */
.verdict-box {
  background: linear-gradient(135deg, rgba(196,112,75,.06), rgba(201,169,97,.04));
  border: 1px solid rgba(196,112,75,.2); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 24px;
}
.verdict-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--terracotta); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.verdict-label::before { content: '\2726'; color: var(--brass); }
.verdict-text { font-size: .93rem; color: var(--text); line-height: 1.7; }

/* CTA */
.cta-group { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.btn-read-reviews { flex: 1; min-width: 140px; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--terracotta); color: #fff; padding: 13px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem; transition: background .2s; }
.btn-read-reviews:hover { background: var(--terracotta-dark); text-decoration: none; color: #fff; }

/* Features */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.features-list li::before { content: '\2713'; color: var(--sage-dark); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 52px 0; }
.pros-box, .cons-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.box-head { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-box .box-head { color: var(--sage-dark); }
.cons-box .box-head { color: #C45050; }
.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: '\2713'; color: var(--sage-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-box li::before { content: '\2717'; color: #C45050; 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.5rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.product-desc p { margin-bottom: 16px; 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.5rem; font-weight: 600; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.reviewer-name { font-weight: 600; font-size: .9rem; }
.review-date { font-size: .78rem; color: var(--muted); }
.review-stars { color: var(--brass); font-size: .88rem; margin-bottom: 6px; letter-spacing: 1px; }
.review-title { font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.review-text { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* Related */
.related-section { background: var(--surface2); padding: 60px 0; border-top: 1px solid var(--border); }
.related-section .section-head h2 { text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.related-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; display: block; color: inherit; text-decoration: none; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; color: inherit; }
.related-img { height: 160px; overflow: hidden; background: var(--linen); }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.related-card:hover .related-img img { transform: scale(1.06); }
.related-img.no-img { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--charcoal), #4A3F38); font-size: 2rem; opacity: .4; }
.related-body { padding: 16px; }
.related-brand { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--terracotta); margin-bottom: 5px; }
.related-title { font-size: .86rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-stars { color: var(--brass); font-size: .8rem; letter-spacing: 1px; }
.related-link { display: block; margin-top: 12px; text-align: center; background: var(--terracotta); color: #fff; padding: 8px; border-radius: var(--radius-sm); font-size: .8rem; font-weight: 600; }
.related-link:hover { background: var(--terracotta-dark); text-decoration: none; color: #fff; }

/* ============================================================
   STATIC PAGES
   ============================================================ */
.static-hero { background: linear-gradient(145deg, var(--charcoal), #3D3530); padding: 60px 0; }
.static-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; font-weight: 600; }
.static-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-top: 10px; }
.static-content { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.static-content h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; margin: 40px 0 14px; }
.static-content p { margin-bottom: 16px; line-height: 1.8; font-size: .95rem; }
.static-content ul { margin: 12px 0 20px 24px; display: flex; flex-direction: column; gap: 7px; font-size: .95rem; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow-sm); transition: all .3s; }
.about-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.about-icon { font-size: 2.2rem; margin-bottom: 14px; }
.about-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.about-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sidebar { min-width: 0; }
.sidebar-widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: 88px; }
.sidebar-widget h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); color: var(--text); display: flex; align-items: center; gap: 8px; }
.sidebar-list { display: flex; flex-direction: column; }
.sidebar-item { display: flex; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-rank { font-size: .85rem; font-weight: 700; color: var(--brass); min-width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--linen); }
.sidebar-info { flex: 1; min-width: 0; }
.sidebar-name { font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 2px; }
.sidebar-stars { color: var(--brass); font-size: .72rem; }
.sidebar-link { font-size: .72rem; color: var(--terracotta); font-weight: 600; display: block; margin-top: 2px; }
.sidebar-link:hover { color: var(--terracotta-dark); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--charcoal); border-top: 2px solid var(--brass); padding: 18px 0; box-shadow: 0 -4px 24px rgba(0,0,0,.2); transform: translateY(100%); transition: transform .4s ease; }
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: .85rem; color: rgba(255,255,255,.8); min-width: 220px; }
.cookie-text a { color: var(--brass-light); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--terracotta); color: #fff; border: none; padding: 9px 22px; border-radius: 7px; font-size: .85rem; font-weight: 700; cursor: pointer; transition: opacity .2s; }
.cookie-accept:hover { opacity: .88; }
.cookie-decline { background: transparent; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.2); padding: 8px 18px; border-radius: 7px; font-size: .85rem; cursor: pointer; transition: all .2s; }
.cookie-decline:hover { border-color: rgba(255,255,255,.4); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-brand .footer-logo-img { width: 32px; height: 32px; border-radius: var(--radius-sm); object-fit: cover; }
.footer-brand p { font-size: .86rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 300px; }
.footer-disclaimer { margin-top: 16px; font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.6; }
footer h4 { color: #fff; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a { color: rgba(255,255,255,.55); font-size: .86rem; transition: color .2s; }
footer ul li a:hover { color: var(--brass-light); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--brass-light); text-decoration: none; }

/* Filter bar */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; padding: 14px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.filter-label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.filter-select { padding: 7px 10px; border: 1.5px solid var(--border); border-radius: 7px; font-size: .84rem; background: var(--bg); color: var(--text); cursor: pointer; font-family: var(--font); transition: border-color .18s; }
.filter-select:focus { outline: none; border-color: var(--terracotta); }
.filter-reset { background: none; border: 1.5px solid var(--border); border-radius: 7px; padding: 7px 13px; font-size: .8rem; color: var(--muted); cursor: pointer; transition: all .18s; font-family: var(--font); }
.filter-reset:hover { border-color: var(--terracotta); color: var(--terracotta); }
.filter-results { font-size: .8rem; color: var(--muted); margin-left: auto; white-space: nowrap; }

/* Ad placements */
.ad-placement { margin: 40px auto; text-align: center; }
.ad-placement-inner { display: inline-flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ad-unit { width: 300px; height: 250px; background: transparent; border: 1px dashed rgba(0,0,0,.06); border-radius: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width: 1040px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .top10-grid { grid-template-columns: 1fr; }
}
@media(max-width: 960px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width: 860px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card:first-child { grid-row: auto; }
  .featured-card:first-child .featured-img { height: 220px; }
  .featured-card:first-child .featured-body { position: relative; padding: 24px; }
}
@media(max-width: 768px) {
  .header-inner { height: 60px; }
  .logo { font-size: 1.1rem; }
  .hero { padding: 72px 0 64px; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .nav-toggle { display: flex; }
  header nav {
    display: none !important; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(253,251,248,.98); backdrop-filter: blur(20px);
    padding: 12px 16px 18px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-bottom: 1px solid var(--border);
  }
  header.nav-open nav { display: flex !important; }
  header nav a { padding: 12px 16px; font-size: .92rem; border-radius: var(--radius-xs); color: var(--text); }
  header nav a:hover { background: var(--linen); }
  .nav-cta { margin-left: 0 !important; text-align: center; }
}
@media(max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }
@media(max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
@media(max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
}
@media(max-width: 480px) { .hero-stats { gap: 28px; } }
