@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:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700;800&display=swap');

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  /* ── Brand Colors ── */
  --plum:       #2E1320;   /* darkest – header, footer bg */
  --plum-800:   #4A2035;
  --plum-700:   #6B3050;
  --rose:       #B8527A;   /* primary accent */
  --rose-600:   #C96A8E;
  --rose-400:   #E09CB8;
  --rose-200:   #F5D4E2;
  --rose-100:   #FCF0F5;
  --gold:       #C9A46E;   /* warm gold */
  --gold-light: #F0DAB8;
  --gold-pale:  #FAF3E8;

  /* ── Neutrals ── */
  --bg:         #FFF8FC;
  --surface:    #FFFFFF;
  --surface2:   #FDF4F8;
  --text:       #1A0D14;
  --muted:      #7D5A6E;
  --border:     #EDD8E6;
  --border-light:#F5E8F0;

  /* ── Feedback ── */
  --green:      #2D7A5F;
  --green-light:#EBF7F2;
  --red:        #C0392B;
  --red-light:  #FDECEA;

  /* ── Typography ── */
  --font-head:  'Cormorant Garamond', 'Playfair Display', serif;
  --font:       'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Spacing & Shape ── */
  --radius:     16px;
  --radius-sm:  8px;
  --radius-xs:  4px;

  /* ── Shadows ── */
  --shadow-sm:  0 1px 4px rgba(46,19,32,.06);
  --shadow:     0 2px 16px rgba(46,19,32,.09);
  --shadow-lg:  0 8px 40px rgba(46,19,32,.14);
  --shadow-xl:  0 20px 60px rgba(46,19,32,.18);
}

/* ============================================================
   BASE
   ============================================================ */
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(--plum-700); 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: 48px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.section-head p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   HEADER — completely rebuilt
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-topbar {
  background: var(--plum);
  padding: 7px 0;
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}
.header-topbar span { color: var(--gold-light); font-weight: 600; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-200);
  flex-shrink: 0;
}
/* Logo text — supports both index (.logo-text-wrap) and product page (.logo-text) class names */
.logo-text-wrap,
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name,
.logo-brand {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -.01em;
}
.logo-tagline,
.logo-tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
nav a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
nav a:hover {
  background: var(--rose-100);
  color: var(--rose);
  text-decoration: none;
}
nav a.active {
  color: var(--rose);
  background: var(--rose-100);
}
.nav-cta {
  background: var(--plum) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--plum-700) !important;
  color: #fff !important;
}

/* Search bar in header */
.header-search {
  position: relative;
  flex-shrink: 0;
}
.header-search input {
  padding: 8px 14px 8px 36px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: .85rem;
  font-family: var(--font);
  background: var(--surface2);
  color: var(--text);
  width: 200px;
  transition: all .2s;
}
.header-search input:focus {
  outline: none;
  border-color: var(--rose-400);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(184,82,122,.1);
}
.header-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .85rem;
  pointer-events: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  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); }

/* Category Nav strip */
.cat-nav {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
/* cat-nav-inner: used on index; .cat-nav .container: used on product pages */
.cat-nav-inner,
.cat-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 28px;
  white-space: nowrap;
  max-width: 1260px;
  margin: 0 auto;
}
/* cat-nav-item (index) and cat-nav-link (product pages) share the same styles */
.cat-nav-item,
.cat-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.cat-nav-item:hover,
.cat-nav-link:hover {
  color: var(--rose);
  border-bottom-color: var(--rose-200);
  text-decoration: none;
}
.cat-nav-item.active,
.cat-nav-link.active {
  color: var(--rose);
  border-bottom-color: var(--rose);
}
.cat-nav-item .cat-icon,
.cat-nav-link .cat-icon { font-size: .9rem; }

/* ============================================================
   HERO — completely rebuilt
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: var(--plum);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46,19,32,.9) 0%,
    rgba(46,19,32,.7) 50%,
    rgba(74,32,53,.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,164,110,.15);
  border: 1px solid rgba(201,164,110,.35);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 28px;
}
.hero-logo-showcase {
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
}
.hero-logo-ring {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,110,.25) 0%, rgba(201,164,110,.05) 70%);
  animation: pulseRing 3s ease-in-out infinite;
}
.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201,164,110,.3);
  animation: spinSlow 20s linear infinite;
}
@keyframes pulseRing {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: .7; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(201,164,110,.5);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(201,164,110,.2), 0 4px 20px rgba(0,0,0,.3);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero h1 strong {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--rose-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 40px;
}
/* Hero category quick-links (replaced stats block) */
.hero-cat-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-cat-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .2s, border-color .2s, transform .15s;
  backdrop-filter: blur(6px);
}
.hero-cat-link:hover {
  background: rgba(201,164,110,.25);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.hero-cat-link .hcl-icon { font-size: 1rem; line-height: 1; }
@media(max-width:560px) {
  .hero-cat-links { gap: 8px; }
  .hero-cat-link { padding: 8px 14px; font-size: .78rem; }
}

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

/* ============================================================
   EDITOR'S TOP PICKS — unique design (horizontal scrolling cards)
   ============================================================ */
.picks-section {
  background: var(--plum);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.picks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.picks-section .section-head h2 { color: #fff; }
.picks-section .section-head p { color: rgba(255,255,255,.6); }
.picks-section .divider { background: linear-gradient(90deg, var(--gold), var(--rose-400)); }
.picks-section .section-head .eyebrow { color: var(--gold-light); }

.picks-track-wrap {
  position: relative;
  margin: 0 -28px;
  padding: 8px 28px 16px;
}
.picks-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.picks-track::-webkit-scrollbar { display: none; }

.pick-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, border-color .25s, background .25s;
  display: block;
  position: relative;
}
.pick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,164,110,.5);
  background: rgba(255,255,255,.1);
  text-decoration: none;
  color: inherit;
}
.pick-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.03);
}
.pick-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pick-card:hover .pick-card-img img { transform: scale(1.05); }
.pick-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.pick-card-body { padding: 20px; }
.pick-rank {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 6px;
}
.pick-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.pick-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.pick-stars { color: var(--gold-light); font-size: .88rem; letter-spacing: 1px; }
.pick-score {
  font-weight: 700;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
}
.pick-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  transition: color .2s;
}
.pick-read-btn::after { content: '→'; }
.pick-card:hover .pick-read-btn { color: #fff; }

/* ============================================================
   TOP 10 PRODUCTS — awesome ranked block
   ============================================================ */
.top10-section { background: var(--surface2); }
.top10-list { display: flex; flex-direction: column; gap: 16px; }

.top10-item {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: pointer;
}
.top10-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--rose-200);
  text-decoration: none;
  color: inherit;
}
.top10-item-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.top10-num {
  flex-shrink: 0;
  width: 72px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-200);
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-700) 100%);
  flex-direction: column;
  line-height: 1;
}
.top10-num.top3 {
  background: linear-gradient(135deg, var(--plum) 0%, var(--rose) 100%);
  color: #fff;
  font-size: 1.8rem;
}
.top10-num .trophy { font-size: 1.2rem; display: block; margin-bottom: 2px; }
.top10-img {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: var(--rose-100);
}
.top10-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.top10-item:hover .top10-img img { transform: scale(1.06); }
.top10-info {
  flex: 1;
  padding: 16px 20px;
  min-width: 0;
}
.top10-brand {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rose);
  margin-bottom: 4px;
}
.top10-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top10-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top10-stars { color: var(--gold); font-size: .82rem; }
.top10-score { font-weight: 700; font-size: .88rem; color: var(--text); }
.top10-cat {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  background: var(--rose-100);
  padding: 2px 8px;
  border-radius: 4px;
}
.top10-arrow {
  flex-shrink: 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 1.1rem;
  transition: color .2s, transform .2s;
}
.top10-item:hover .top10-arrow {
  color: var(--rose);
  transform: translateX(4px);
}

/* ============================================================
   COMPARE TABLE — redesigned
   ============================================================ */
.compare-section { background: var(--bg); }
.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: 740px;
  background: var(--surface);
}
.compare-table thead th {
  background: var(--plum);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
.compare-table tbody tr {
  display: table-row;
  text-decoration: none;
  transition: background .18s;
  cursor: pointer;
}
.compare-table tbody tr:hover td { background: var(--rose-100); }
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
  vertical-align: middle;
  color: inherit;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-rank {
  font-size: 1.4rem;
  text-align: center;
}
.compare-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.compare-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.3;
}
.compare-brand-tag {
  font-size: .68rem;
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compare-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum);
}
.compare-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 6px;
  overflow: hidden;
  width: 100px;
}
.compare-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 3px;
}
.compare-link {
  display: inline-block;
  background: var(--plum);
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.compare-link:hover {
  background: var(--rose);
  text-decoration: none;
  color: #fff;
}

/* ============================================================
   CATEGORY FILTER — beautifully styled
   ============================================================ */
.filter-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 148px; /* topbar ~34px + header-inner 72px + cat-nav ~42px */
  z-index: 100;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  /* no flex-wrap: the label + pills row and the right controls are on one line;
     pills themselves can wrap internally */
}
.filter-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;          /* take remaining space, allow pills to wrap within */
}
.filter-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: 600;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  transition: all .18s;
  user-select: none;
  white-space: nowrap;
}
.filter-pill:hover {
  border-color: var(--rose-400);
  color: var(--rose);
  background: var(--rose-100);
}
.filter-pill.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}
.filter-pill .pill-icon { font-size: .85rem; }
.filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.filter-sort {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .82rem;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  cursor: pointer;
  transition: border-color .18s;
}
.filter-sort:focus {
  outline: none;
  border-color: var(--rose-400);
}
.filter-results {
  font-size: .8rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   BRAND CLOUD
   ============================================================ */
.brand-cloud-section,
.brand-cloud-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
}
.brand-cloud-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  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: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
  background: var(--surface);
  user-select: none;
}
.brand-tag:hover {
  border-color: var(--rose-400);
  color: var(--rose);
  background: var(--rose-100);
}
.brand-tag.active {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

/* ============================================================
   PRODUCT GRID — refined cards
   ============================================================ */
.products-section { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  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-lg);
  border-color: var(--rose-200);
  text-decoration: none;
  color: inherit;
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--rose-100);
}
.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-img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum), var(--plum-700));
}
.card-img-placeholder { font-size: 3.5rem; opacity: .25; }
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--plum);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.card-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  color: var(--plum);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: var(--shadow-sm);
}
.card-rating-badge .si { color: var(--gold); }
.card-cat-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(46,19,32,.75);
  color: rgba(255,255,255,.9);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(4px);
}
.card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-brand {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rose);
  margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
}
.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.stars-char { color: var(--gold); font-size: .95rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: .9rem; }
.rating-count { font-size: .78rem; color: var(--muted); }
.card-snippet {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-light);
}
.btn-review {
  display: block;
  text-align: center;
  background: var(--plum);
  color: #fff;
  padding: 11px 16px;
  border-radius: 9px;
  font-size: .86rem;
  font-weight: 600;
  transition: background .2s;
}
.btn-review:hover {
  background: var(--rose);
  text-decoration: none;
  color: #fff;
}

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

/* ============================================================
   SIDEBAR — full row clickable
   ============================================================ */
.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-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.sidebar-widget h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  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 8px;
  border-bottom: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: background .18s;
  text-decoration: none;
  color: inherit;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item:hover {
  background: var(--rose-100);
  text-decoration: none;
  color: inherit;
}
.sidebar-rank {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.sidebar-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--rose-100);
}
.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(--gold); font-size: .7rem; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--plum), var(--plum-800));
  padding: 28px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  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;
}
@media(max-width:900px) {
  .product-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* Gallery */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--rose-100);
}
.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(--plum), var(--plum-700));
  font-size: 5rem;
  opacity: .35;
}
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all .2s;
  opacity: .65;
  overflow: hidden;
  background: var(--surface2);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(184,82,122,.2);
}

/* Product Info */
.p-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose-100);
  color: var(--rose);
  font-size: .72rem;
  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: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.p-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.p-rating .stars-char { font-size: 1.1rem; color: var(--gold); }
.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(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 22px;
}
.score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.score-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 4px;
}

.verdict-box {
  background: linear-gradient(135deg, var(--rose-100), var(--gold-pale));
  border: 1px solid var(--rose-200);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 24px;
}
.verdict-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rose);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.verdict-label::before { content: '✦'; color: var(--gold); }
.verdict-text { font-size: .93rem; color: var(--text); line-height: 1.7; }

.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(--plum);
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
}
.btn-read-reviews:hover {
  background: var(--rose);
  text-decoration: none;
  color: #fff;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
}
.features-list li::before {
  content: '✓';
  color: var(--rose);
  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;
}
@media(max-width:600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.pros-box { border-top: 3px solid #2D7A5F; }
.cons-box { border-top: 3px solid #C0392B; }
.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: #2D7A5F; }
.cons-box .box-head { color: #C0392B; }
.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.5;
}
.pros-box li::before { content: '✓'; color: #2D7A5F; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-box li::before { content: '✗'; color: #C0392B; 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.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}
.product-desc p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.8;
}

/* Reviews */
.reviews-section { margin: 0 0 64px; }
.reviews-section h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}
.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: 20px;
  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(--gold); font-size: .9rem; 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: 64px 0;
  border-top: 1px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@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(--surface);
  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-lg);
  text-decoration: none;
  color: inherit;
}
.related-img {
  height: 160px;
  overflow: hidden;
  background: var(--rose-100);
}
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum), var(--plum-700));
  font-size: 2rem;
  opacity: .4;
}
.related-body { padding: 14px; }
.related-brand {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rose);
  margin-bottom: 5px;
}
.related-title {
  font-size: .84rem;
  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(--gold); font-size: .8rem; letter-spacing: 1px; }
.related-link {
  display: block;
  margin-top: 10px;
  text-align: center;
  background: var(--plum);
  color: #fff;
  padding: 7px;
  border-radius: 7px;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s;
}
.related-link:hover { background: var(--rose); text-decoration: none; color: #fff; }

/* ============================================================
   STATIC PAGES (About, Terms, Privacy, Cookie Policy)
   ============================================================ */
.static-hero {
  background: linear-gradient(135deg, var(--plum), var(--plum-800));
  padding: 64px 0;
}
.static-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.static-hero p {
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  max-width: 540px;
}
.static-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,164,110,.15);
  border: 1px solid rgba(201,164,110,.3);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.static-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 28px 88px;
}
.static-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 44px 0 16px;
  color: var(--text);
}
.static-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text);
}
.static-content p {
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: .96rem;
  color: var(--text);
}
.static-content ul {
  margin: 12px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.static-content ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .96rem;
  line-height: 1.65;
  list-style: none;
}
.static-content ul li::before {
  content: '♦';
  color: var(--rose);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 6px;
}
.static-content a { color: var(--rose); }
.static-content a:hover { color: var(--plum); }

/* About value cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0;
}
@media(max-width:700px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.about-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.about-icon { font-size: 2.4rem; margin-bottom: 14px; }
.about-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.about-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* Static first section */
.static-lead {
  background: var(--rose-100);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  border-left: 4px solid var(--rose);
}
.static-lead p { color: var(--text); font-size: 1rem; line-height: 1.8; margin: 0; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--plum);
  border-top: 2px solid var(--gold);
  padding: 18px 0;
  box-shadow: 0 -4px 24px 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: .85rem;
  color: rgba(255,255,255,.85);
  min-width: 220px;
  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: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  font-family: var(--font);
}
.cookie-accept:hover { opacity: .88; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ============================================================
   FOOTER — completely rebuilt
   ============================================================ */
footer {
  background: var(--plum);
  color: rgba(255,255,255,.75);
  padding: 72px 0 32px;
}
/* footer-top: 4-column grid (direct children are the columns) */
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media(max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:520px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,164,110,.3);
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo-tagline {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 300px;
}
.footer-disclaimer {
  margin-top: 16px;
  font-size: .76rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  text-decoration: none;
}

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,.58);
  font-size: .85rem;
  transition: color .2s;
  text-decoration: none;
}
footer ul li a:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-light); text-decoration: none; }

/* ============================================================
   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,.07);
  border-radius: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:768px) {
  .header-inner { height: 64px; }
  .header-topbar { display: none; }
  .header-search { display: none; }
  .cat-nav { display: none; }
  nav { display: none !important; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); padding: 10px 16px 16px;
    box-shadow: var(--shadow-lg); z-index: 199; border-top: 1px solid var(--border); }
  header.nav-open nav { display: flex !important; }
  header nav a { padding: 11px 14px; font-size: .92rem; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .hero { padding: 72px 0 56px; }
  .hero-logo-ring { width: 80px; height: 80px; }
  .hero-logo-img { width: 66px; height: 66px; }
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
  .product-layout { gap: 28px; padding: 36px 0; }
  .top10-item-inner { flex-wrap: nowrap; }
  .filter-section { position: static; }
}
@media(max-width:480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .picks-track { gap: 14px; }
  .pick-card { flex: 0 0 260px; }
}

/* ============================================================
   PRODUCT PAGE HERO (breadcrumb area)
   ============================================================ */
.product-page-hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-800) 100%);
  padding: 18px 0 22px;
  margin-bottom: 0;
}
.product-page-hero .breadcrumb a { color: var(--rose-400); }
.product-page-hero .breadcrumb span { color: var(--gold-light); }
.product-page-hero sep { color: var(--plum-700); margin: 0 8px; }
.product-cat-badge-wrap { margin-top: 10px; }
.product-cat-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================================
   PRODUCT PAGE – FEATURES HEADING
   ============================================================ */
.features-heading {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 14px;
  margin-top: 24px;
}

/* ============================================================
   CAT NAV ACTIVE STATE
   ============================================================ */
.cat-nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================================
   FOOTER BOTTOM INNER (flex row)
   ============================================================ */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   STATIC PAGES (about, terms, privacy, cookie)
   ============================================================ */
.static-hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-800) 60%, var(--rose) 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.static-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.static-hero p {
  color: var(--rose-200);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
.static-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.static-body h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--plum);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.static-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--plum-800);
  margin: 28px 0 10px;
}
.static-body p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.static-body ul, .static-body ol {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 24px;
  margin-bottom: 16px;
}
.static-body li { margin-bottom: 8px; }
.static-body a { color: var(--rose); text-decoration: underline; }
.static-body a:hover { color: var(--plum); }
.static-body .highlight-box {
  background: var(--rose-100);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.static-body .highlight-box p { margin-bottom: 0; color: var(--plum-800); }

/* Team cards on about page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.team-card:hover { box-shadow: var(--shadow); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-200), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}
.team-name { font-weight: 700; color: var(--plum); margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--rose); font-weight: 500; margin-bottom: 10px; }
.team-bio { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* Value cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.value-card {
  background: linear-gradient(135deg, var(--rose-100), var(--gold-pale));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 10px; }
.value-title { font-weight: 700; color: var(--plum); margin-bottom: 8px; }
.value-text { font-size: .85rem; color: var(--muted); line-height: 1.6; }
