/* =========================================================
   BikeTrail — Premium Cycling Gear Review Site
   Design system: deep emerald + amber + warm cream
   ========================================================= */

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

:root{
  /* Brand palette */
  --emerald-900:#0B3A2C;
  --emerald-800:#0F4C3A;
  --emerald-700:#15614A;
  --emerald-600:#1B7858;
  --emerald-50:#E8F2EE;

  --amber-600:#D97706;
  --amber-500:#F59E0B;
  --amber-400:#FBBF24;
  --amber-100:#FEF3C7;

  --cream-50:#FBF9F4;
  --cream-100:#F4F0E6;
  --cream-200:#E8E1CE;

  --ink-900:#0F1A14;
  --ink-800:#1A2421;
  --ink-700:#2A3530;
  --ink-500:#5A6864;
  --muted:#6B7B73;
  --line:#E5E1D6;
  --line-soft:#EDEAE0;

  --white:#FFFFFF;
  --bg:#FBF9F4;

  /* Semantic */
  --primary:var(--emerald-800);
  --primary-dark:var(--emerald-900);
  --accent:var(--amber-500);
  --accent-dark:var(--amber-600);
  --text:var(--ink-800);
  --text-soft:var(--ink-500);

  /* Effects */
  --radius-sm:8px;
  --radius:12px;
  --radius-lg:18px;
  --radius-xl:24px;
  --shadow-xs:0 1px 2px rgba(15,26,20,.05);
  --shadow-sm:0 2px 8px rgba(15,26,20,.06);
  --shadow:0 6px 20px rgba(15,26,20,.08);
  --shadow-lg:0 18px 48px rgba(15,26,20,.14);
  --shadow-xl:0 32px 80px rgba(15,26,20,.18);
  --ring:0 0 0 3px rgba(245,158,11,.25);

  --container:1240px;
  --header-h:74px;
  --transition:.25s cubic-bezier(.4,0,.2,1);
}

*{box-sizing:border-box;margin:0;padding:0}
*::selection{background:var(--amber-500);color:var(--ink-900)}

html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:1.65;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  font-feature-settings:"ss01","cv01","cv02";
}

img{max-width:100%;display:block;height:auto}
a{color:var(--emerald-700);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--amber-600)}
ul{list-style:none}
button{font-family:inherit;cursor:pointer}

h1,h2,h3,h4,h5{
  font-family:'Sora','Inter',sans-serif;
  font-weight:700;
  letter-spacing:-.02em;
  color:var(--ink-900);
  line-height:1.2;
}
h1{font-size:clamp(2.2rem,4.4vw,3.5rem);font-weight:800;letter-spacing:-.035em}
h2{font-size:clamp(1.6rem,2.8vw,2.25rem);letter-spacing:-.025em}
h3{font-size:1.25rem;letter-spacing:-.015em}
h4{font-size:1.05rem}
p{margin-bottom:1em}

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

/* =========================================================
   HEADER
   ========================================================= */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(251,249,244,.85);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid rgba(229,225,214,.7);
  transition:background var(--transition),box-shadow var(--transition);
}
header.scrolled{
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-sm);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  height:var(--header-h);
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'Sora',sans-serif;
  font-weight:800;
  font-size:1.15rem;
  letter-spacing:-.02em;
  color:var(--ink-900);
  text-decoration:none;
  transition:transform var(--transition);
}
.logo:hover{color:var(--ink-900);transform:translateY(-1px)}
.logo-img{
  width:38px;
  height:38px;
  object-fit:contain;
  border-radius:9px;
  background:linear-gradient(135deg,var(--emerald-50) 0%,var(--cream-100) 100%);
  padding:3px;
  box-shadow:0 2px 6px rgba(15,76,58,.12);
}
.logo-text{display:inline-flex;flex-direction:column;line-height:1}
.logo-text .lt-main{font-size:1.15rem;color:var(--ink-900);font-weight:800}
.logo-text .lt-sub{
  font-size:.62rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--emerald-700);
  font-weight:600;
  margin-top:3px;
}

nav{
  display:flex;
  align-items:center;
  gap:6px;
}
nav>a{
  position:relative;
  padding:9px 16px;
  font-size:.94rem;
  font-weight:500;
  color:var(--ink-700);
  border-radius:10px;
  transition:all var(--transition);
}
nav>a:hover{
  color:var(--emerald-800);
  background:var(--emerald-50);
}
nav>a::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:2px;
  transform:translateX(-50%) scaleX(0);
  width:18px;
  height:2px;
  background:var(--amber-500);
  border-radius:2px;
  transition:transform var(--transition);
}
nav>a:hover::before{transform:translateX(-50%) scaleX(1)}
nav>a.nav-cta{
  background:var(--ink-900);
  color:var(--white);
  padding:9px 18px;
  border-radius:999px;
  margin-left:6px;
  box-shadow:0 4px 14px rgba(15,26,20,.18);
}
nav>a.nav-cta:hover{
  background:var(--emerald-800);
  color:var(--white);
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(15,76,58,.28);
}
nav>a.nav-cta::before{display:none}

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:10px;
  width:42px;
  height:42px;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
}
.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--ink-800);
  border-radius:2px;
  transition:all var(--transition);
}

@media (max-width:880px){
  .nav-toggle{display:flex}
  nav{
    position:absolute;
    top:var(--header-h);
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    background:var(--white);
    border-top:1px solid var(--line);
    box-shadow:var(--shadow);
    padding:14px;
    gap:4px;
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:all var(--transition);
  }
  nav.open{transform:translateY(0);opacity:1;pointer-events:auto}
  nav>a{padding:12px 16px}
  nav>a.nav-cta{margin:6px 0 0;text-align:center}
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  overflow:hidden;
  padding:90px 0 110px;
  background:linear-gradient(180deg,var(--cream-50) 0%,var(--cream-100) 100%);
  isolation:isolate;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.55;
  z-index:-2;
  filter:saturate(1.05) contrast(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at 25% 30%,rgba(11,58,44,.4) 0%,transparent 60%),
    linear-gradient(135deg,rgba(15,76,58,.78) 0%,rgba(15,26,20,.55) 50%,rgba(245,158,11,.20) 100%);
  z-index:-1;
}
.hero::before{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  right:0;
  height:56px;
  background:linear-gradient(180deg,transparent 0%,var(--bg) 100%);
  z-index:0;
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}
.hero-text{color:var(--white)}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.6);
  color:var(--emerald-800);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:8px 14px;
  border-radius:999px;
  backdrop-filter:blur(10px);
  margin-bottom:22px;
  box-shadow:0 4px 14px rgba(15,26,20,.18);
}
.hero-badge::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--amber-500);
  box-shadow:0 0 0 4px rgba(245,158,11,.25);
  animation:pulse 2.4s infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(.85)}}

.hero-text h1{
  color:var(--white);
  font-family:'Sora','Inter',sans-serif;
  font-weight:800;
  font-size:clamp(2.4rem,4.6vw,3.8rem);
  margin-bottom:20px;
  text-shadow:0 4px 24px rgba(0,0,0,.25);
  line-height:1.08;
}
.hero-text h1 .accent,
.hero-text h1 span{
  background:linear-gradient(135deg,var(--amber-400) 0%,var(--amber-500) 60%,var(--amber-600) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-style:italic;
  font-family:'Fraunces',serif;
  font-weight:600;
}
.hero-text>p{
  color:rgba(255,255,255,.92);
  font-size:1.13rem;
  line-height:1.65;
  max-width:560px;
  margin-bottom:32px;
  text-shadow:0 1px 8px rgba(0,0,0,.25);
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:32px;
}
.hero-cta a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  transition:all var(--transition);
}
.hero-cta a.btn-primary{
  background:var(--amber-500);
  color:var(--ink-900);
  box-shadow:0 10px 28px rgba(245,158,11,.45);
}
.hero-cta a.btn-primary:hover{
  background:var(--amber-400);
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(245,158,11,.55);
}
.hero-cta a.btn-ghost{
  background:rgba(255,255,255,.12);
  color:var(--white);
  border:1px solid rgba(255,255,255,.45);
  backdrop-filter:blur(8px);
}
.hero-cta a.btn-ghost:hover{
  background:rgba(255,255,255,.22);
  transform:translateY(-2px);
}

/* Hero "ride dashboard" replacing stats */
.hero-dash{
  position:relative;
  background:linear-gradient(155deg,rgba(255,255,255,.96) 0%,rgba(248,245,238,.92) 100%);
  border:1px solid rgba(255,255,255,.6);
  border-radius:22px;
  padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.6);
  backdrop-filter:blur(18px);
  max-width:520px;
  margin-left:auto;
  overflow:hidden;
}
.hero-dash::before{
  content:"";
  position:absolute;
  top:-60px;right:-60px;
  width:200px;height:200px;
  background:radial-gradient(circle,rgba(245,158,11,.35) 0%,transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.hero-dash-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
  padding-bottom:18px;
  border-bottom:1px dashed var(--line);
}
.hero-dash-brand{
  display:flex;align-items:center;gap:10px;
}
.hero-dash-brand img{
  width:46px;height:46px;
  border-radius:12px;
  background:var(--cream-50);
  padding:4px;
  box-shadow:var(--shadow-sm);
}
.hero-dash-brand-text{
  display:flex;flex-direction:column;line-height:1.1;
}
.hero-dash-brand-text strong{
  font-family:'Sora';font-weight:800;font-size:1.05rem;color:var(--ink-900);
}
.hero-dash-brand-text small{
  font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--emerald-700);font-weight:600;
}
.hero-dash-status{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--emerald-50);
  color:var(--emerald-800);
  padding:5px 11px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.06em;
}
.hero-dash-status::before{
  content:"";width:7px;height:7px;border-radius:50%;background:var(--emerald-600);
  animation:pulse 1.8s infinite;
}
.hero-dash-grid{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:22px;
  align-items:center;
}
.hero-dash-ring{
  position:relative;
  width:160px;height:160px;
}
.hero-dash-ring svg{transform:rotate(-90deg);width:100%;height:100%}
.hero-dash-ring .ring-bg{stroke:var(--line);}
.hero-dash-ring .ring-fill{
  stroke:url(#ringGrad);
  stroke-linecap:round;
  transition:stroke-dashoffset .6s ease;
}
.hero-dash-ring-center{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.hero-dash-ring-center .num{
  font-family:'Sora';
  font-weight:800;
  font-size:2.1rem;
  color:var(--ink-900);
  line-height:1;
  letter-spacing:-.03em;
}
.hero-dash-ring-center .num::after{
  content:"%";font-size:1rem;color:var(--emerald-700);font-weight:600;
}
.hero-dash-ring-center .lbl{
  font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);
  font-weight:600;margin-top:4px;
}
.hero-dash-metrics{display:flex;flex-direction:column;gap:12px}
.hero-dash-metric{
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-dash-metric-icon{
  width:36px;height:36px;border-radius:9px;
  background:var(--emerald-50);
  color:var(--emerald-800);
  display:flex;align-items:center;justify-content:center;
  font-size:1.05rem;
  flex-shrink:0;
}
.hero-dash-metric-icon.amber{background:var(--amber-100);color:var(--amber-600)}
.hero-dash-metric-text{display:flex;flex-direction:column;line-height:1.15}
.hero-dash-metric-text strong{
  font-family:'Sora';font-weight:700;font-size:1.15rem;color:var(--ink-900);letter-spacing:-.02em;
}
.hero-dash-metric-text small{
  font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:600;
}
.hero-dash-foot{
  margin-top:20px;
  padding-top:18px;
  border-top:1px dashed var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.hero-dash-pills{display:flex;gap:6px;flex-wrap:wrap}
.hero-dash-pill{
  padding:5px 10px;
  background:var(--ink-900);
  color:var(--white);
  border-radius:999px;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.04em;
}
.hero-dash-pill.amber{background:var(--amber-500);color:var(--ink-900)}
.hero-dash-pill.emerald{background:var(--emerald-700)}

@media (max-width:980px){
  .hero{padding:60px 0 80px}
  .hero-content{grid-template-columns:1fr;gap:36px}
  .hero-dash{margin-left:0;max-width:100%}
}
@media (max-width:520px){
  .hero-dash-grid{grid-template-columns:1fr;justify-items:center;text-align:center}
  .hero-dash-ring{width:140px;height:140px}
}

/* =========================================================
   AFFILIATE BAR
   ========================================================= */
.aff-bar{
  background:var(--ink-900);
  color:rgba(255,255,255,.88);
  font-size:.85rem;
  letter-spacing:.01em;
  padding:13px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.aff-bar strong{color:var(--amber-400);font-weight:700}
.aff-bar .container{display:flex;align-items:center;justify-content:center;gap:8px;text-align:center}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{padding:80px 0}
.section-tight{padding:50px 0}
.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
}
.section-head .eyebrow{
  display:inline-block;
  background:var(--emerald-50);
  color:var(--emerald-800);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}
.section-head h2{
  margin-bottom:14px;
}
.section-head p{
  color:var(--text-soft);
  font-size:1.06rem;
  line-height:1.7;
  max-width:620px;
  margin:0 auto;
}
.divider{
  width:60px;
  height:3px;
  background:linear-gradient(90deg,var(--emerald-700),var(--amber-500));
  border-radius:3px;
  margin:18px auto 0;
}

/* =========================================================
   EDITOR'S TOP PICKS — Podium layout
   ========================================================= */
.featured-strip{
  padding:80px 0;
  background:
    radial-gradient(ellipse at top,var(--emerald-50) 0%,transparent 60%),
    linear-gradient(180deg,var(--bg) 0%,var(--cream-100) 100%);
}
.podium{
  display:grid;
  grid-template-columns:1fr 1.15fr 1fr;
  gap:22px;
  align-items:end;
  max-width:1100px;
  margin:0 auto;
}
.podium-card{
  position:relative;
  background:var(--white);
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  padding:22px;
  text-align:center;
  transition:all .35s ease;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
}
.podium-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:var(--cream-200);
}
.podium-card.gold{
  background:linear-gradient(180deg,#fff 0%,#fff 60%,var(--cream-50) 100%);
  border:1px solid var(--amber-400);
  box-shadow:0 30px 60px rgba(245,158,11,.18),0 4px 14px rgba(15,26,20,.06);
  transform:translateY(-12px);
  z-index:2;
}
.podium-card.gold:hover{transform:translateY(-18px)}
.podium-medal{
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  width:50px;height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Sora';
  font-weight:800;
  font-size:1.1rem;
  color:var(--white);
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}
.podium-medal.gold{background:linear-gradient(135deg,#FCD34D 0%,#F59E0B 60%,#B45309 100%);font-size:1.4rem}
.podium-medal.silver{background:linear-gradient(135deg,#E5E7EB 0%,#9CA3AF 60%,#4B5563 100%)}
.podium-medal.bronze{background:linear-gradient(135deg,#FCD9B6 0%,#D97706 60%,#7C2D12 100%)}
.podium-img{
  height:200px;
  margin:18px 0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--cream-50);
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
}
.podium-card.gold .podium-img{height:240px}
.podium-img img{
  max-height:100%;
  max-width:90%;
  object-fit:contain;
  transition:transform .4s ease;
}
.podium-card:hover .podium-img img{transform:scale(1.06)}
.podium-rank-tag{
  position:absolute;
  top:10px;
  left:10px;
  background:var(--ink-900);
  color:var(--white);
  font-size:.7rem;
  font-weight:700;
  padding:4px 10px;
  border-radius:999px;
  letter-spacing:.06em;
}
.podium-title{
  font-family:'Sora';
  font-weight:700;
  font-size:1.05rem;
  color:var(--ink-900);
  letter-spacing:-.01em;
  margin-bottom:8px;
  line-height:1.3;
  min-height:2.6em;
  display:flex;
  align-items:center;
  justify-content:center;
}
.podium-card.gold .podium-title{font-size:1.18rem}
.podium-rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-bottom:16px;
}
.podium-rating .stars{color:var(--amber-500);font-size:.95rem;letter-spacing:.05em}
.podium-rating .num{font-weight:700;color:var(--ink-900)}
.podium-cta{
  display:inline-block;
  background:var(--ink-900);
  color:var(--white);
  padding:10px 20px;
  border-radius:999px;
  font-size:.86rem;
  font-weight:600;
  letter-spacing:.02em;
  margin-top:auto;
  align-self:center;
  transition:all var(--transition);
}
.podium-card:hover .podium-cta{
  background:var(--emerald-800);
  color:var(--white);
}
.podium-card.gold .podium-cta{
  background:var(--amber-500);
  color:var(--ink-900);
}
.podium-card.gold:hover .podium-cta{
  background:var(--amber-400);
  color:var(--ink-900);
}

@media (max-width:880px){
  .podium{grid-template-columns:1fr;gap:30px;max-width:380px}
  .podium-card.gold{transform:none;order:-1}
  .podium-card.gold:hover{transform:translateY(-6px)}
}

/* =========================================================
   PRODUCTS GRID + CARDS
   ========================================================= */
.content-with-sidebar{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:40px;
  align-items:start;
}
@media (max-width:1080px){.content-with-sidebar{grid-template-columns:1fr}}

.filter-bar{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px 18px;
  margin-bottom:24px;
  box-shadow:var(--shadow-xs);
}
.filter-label{
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
}
.filter-select{
  font-family:inherit;
  font-size:.9rem;
  padding:8px 30px 8px 12px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7B73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  color:var(--ink-800);
  transition:all var(--transition);
}
.filter-select:hover{border-color:var(--emerald-700)}
.filter-select:focus{outline:none;border-color:var(--emerald-700);box-shadow:var(--ring)}
.filter-reset{
  background:transparent;
  border:1px solid var(--line);
  color:var(--muted);
  padding:8px 14px;
  border-radius:8px;
  font-size:.85rem;
  font-weight:500;
  transition:all var(--transition);
}
.filter-reset:hover{background:var(--ink-900);color:var(--white);border-color:var(--ink-900)}
.filter-results{
  margin-left:auto;
  font-size:.85rem;
  color:var(--muted);
  font-weight:500;
}
.filter-results strong{color:var(--emerald-800);font-weight:700}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-bottom:30px;
}
@media (max-width:1080px){.products-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:880px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:540px){.products-grid{grid-template-columns:1fr}}

.product-card{
  position:relative;
  background:var(--white);
  border:1px solid var(--line-soft);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:all .3s ease;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
}
.product-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--cream-200);
}
.card-img-wrap{
  position:relative;
  aspect-ratio:4/3;
  background:linear-gradient(135deg,var(--cream-50) 0%,var(--cream-100) 100%);
  overflow:hidden;
}
.card-img-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px;
  transition:transform .4s ease;
}
.product-card:hover .card-img-wrap img{transform:scale(1.06)}
.card-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:var(--white);
  color:var(--ink-900);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.05em;
  padding:5px 11px;
  border-radius:999px;
  box-shadow:var(--shadow-sm);
}
.card-rating-badge{
  position:absolute;
  top:12px;
  right:12px;
  background:var(--ink-900);
  color:var(--white);
  font-size:.78rem;
  font-weight:700;
  padding:5px 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:4px;
  box-shadow:var(--shadow-sm);
}
.card-rating-badge .si{color:var(--amber-400);font-size:.75rem}
.price-badge{
  position:absolute;
  bottom:12px;
  right:12px;
  background:var(--amber-500);
  color:var(--ink-900);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.04em;
  padding:5px 11px;
  border-radius:999px;
  box-shadow:0 4px 12px rgba(245,158,11,.4);
  text-transform:uppercase;
}
.price-badge.deal{background:#DC2626;color:var(--white);box-shadow:0 4px 12px rgba(220,38,38,.4)}
.price-badge.popular{background:var(--emerald-700);color:var(--white);box-shadow:0 4px 12px rgba(15,76,58,.4)}
.price-badge.editor{background:var(--ink-900);color:var(--amber-400);box-shadow:0 4px 12px rgba(15,26,20,.4)}
.price-badge.value{background:#0EA5E9;color:var(--white);box-shadow:0 4px 12px rgba(14,165,233,.4)}

.card-body{
  padding:18px 20px 14px;
  flex-grow:1;
  display:flex;
  flex-direction:column;
}
.card-brand{
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--emerald-700);
  font-weight:700;
  margin-bottom:6px;
}
.card-title{
  font-family:'Sora';
  font-weight:700;
  font-size:1.02rem;
  color:var(--ink-900);
  letter-spacing:-.01em;
  line-height:1.32;
  margin-bottom:10px;
  min-height:2.7em;
}
.stars-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:10px;
  font-size:.86rem;
}
.stars-char{color:var(--amber-500);letter-spacing:.04em}
.rating-num{font-weight:700;color:var(--ink-900)}
.rating-count{color:var(--muted);font-size:.78rem}
.card-snippet{
  font-size:.86rem;
  color:var(--text-soft);
  line-height:1.55;
  margin-bottom:0;
  flex-grow:1;
}
.card-price-row{
  display:flex;
  align-items:baseline;
  gap:8px;
  padding-top:12px;
  margin-top:10px;
  border-top:1px dashed var(--line);
}
.card-price-row .est-label{
  font-size:.66rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:700;
}
.card-price-row .est-price{
  font-family:'Sora';
  font-weight:800;
  font-size:1.18rem;
  color:var(--emerald-800);
  letter-spacing:-.01em;
}
.card-price-row .est-price-was{
  text-decoration:line-through;
  color:var(--muted);
  font-size:.86rem;
  font-weight:500;
  margin-left:auto;
}

.card-footer{
  padding:0 20px 18px;
}
.btn-review{
  display:block;
  text-align:center;
  width:100%;
  background:var(--emerald-50);
  color:var(--emerald-800);
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
  font-size:.88rem;
  letter-spacing:.01em;
  transition:all var(--transition);
}
.product-card:hover .btn-review{
  background:var(--ink-900);
  color:var(--white);
}

/* Pagination */
.pagination{display:flex;align-items:center;justify-content:center;gap:6px;margin-top:24px}
.pagination button{
  background:var(--white);
  border:1px solid var(--line);
  color:var(--ink-700);
  width:38px;
  height:38px;
  border-radius:10px;
  font-weight:600;
  transition:all var(--transition);
}
.pagination button:hover{background:var(--emerald-50);border-color:var(--emerald-700);color:var(--emerald-800)}
.pagination button.active{background:var(--ink-900);color:var(--white);border-color:var(--ink-900)}
.pagination button[disabled]{opacity:.4;cursor:not-allowed}

/* =========================================================
   SIDEBAR
   ========================================================= */
.sidebar{
  position:sticky;
  top:calc(var(--header-h) + 20px);
  display:flex;
  flex-direction:column;
  gap:22px;
}
.sidebar-widget{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow-xs);
}
.sidebar-widget h3{
  font-family:'Sora';
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:8px;
}
.sidebar-list{display:flex;flex-direction:column;gap:6px}
.sidebar-item{
  display:flex;
  gap:12px;
  align-items:center;
  padding:8px;
  border-radius:10px;
  color:inherit;
  text-decoration:none;
  transition:background var(--transition);
}
.sidebar-item:hover{background:var(--cream-50)}
.sidebar-rank{
  flex-shrink:0;
  width:28px;height:28px;border-radius:50%;
  background:var(--ink-900);
  color:var(--white);
  font-family:'Sora';
  font-size:.72rem;
  font-weight:800;
  display:flex;align-items:center;justify-content:center;
}
.sidebar-item:nth-child(1) .sidebar-rank{background:linear-gradient(135deg,var(--amber-400),var(--amber-600));color:var(--ink-900)}
.sidebar-item:nth-child(2) .sidebar-rank{background:linear-gradient(135deg,#E5E7EB,#9CA3AF);color:var(--ink-900)}
.sidebar-item:nth-child(3) .sidebar-rank{background:linear-gradient(135deg,#FCD9B6,#D97706);color:var(--white)}
.sidebar-img{
  width:46px;height:46px;border-radius:9px;
  object-fit:contain;
  background:var(--cream-50);
  padding:4px;
  flex-shrink:0;
}
.sidebar-info{flex-grow:1;min-width:0}
.sidebar-name{
  font-family:'Sora';
  font-weight:600;
  font-size:.84rem;
  color:var(--ink-900);
  line-height:1.3;
  margin-bottom:3px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.sidebar-stars{font-size:.76rem;color:var(--amber-500);font-weight:600}
.sidebar-link{
  display:none;
}

/* =========================================================
   BRAND CLOUD
   ========================================================= */
.brand-cloud-section{
  padding:50px 0;
  background:var(--cream-100);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.brand-cloud-label{
  text-align:center;
  font-size:.76rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:700;
  margin-bottom:18px;
}
.brand-cloud{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  max-width:1000px;
  margin:0 auto;
}
.brand-tag{
  background:var(--white);
  border:1px solid var(--line);
  color:var(--ink-700);
  padding:6px 13px;
  font-size:.82rem;
  font-weight:500;
  border-radius:999px;
  cursor:pointer;
  transition:all var(--transition);
}
.brand-tag:hover{background:var(--emerald-50);color:var(--emerald-800);border-color:var(--emerald-700)}
.brand-tag.active{background:var(--ink-900);color:var(--white);border-color:var(--ink-900)}

/* =========================================================
   COMPARE TABLE
   ========================================================= */
.compare-section{background:linear-gradient(180deg,var(--bg) 0%,var(--cream-100) 100%)}
.compare-table-wrap{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  overflow-x:auto;
}
.compare-table{
  width:100%;
  border-collapse:collapse;
  min-width:780px;
}
.compare-table th{
  background:var(--ink-900);
  color:var(--white);
  padding:14px 16px;
  text-align:left;
  font-family:'Sora';
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:600;
}
.compare-table td{
  padding:16px;
  border-top:1px solid var(--line);
  vertical-align:middle;
  font-size:.92rem;
}
.compare-table tbody tr:hover{background:var(--cream-50)}
.compare-rank{font-size:1.2rem;text-align:center;width:60px}
.compare-img{width:60px;height:60px;object-fit:contain;background:var(--cream-50);border-radius:8px;padding:4px}
.compare-name{font-family:'Sora';font-weight:700;color:var(--ink-900);margin-bottom:2px}
.compare-brand-tag{font-size:.74rem;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;font-weight:600}
.compare-score{font-family:'Sora';font-weight:800;color:var(--emerald-800);font-size:1.05rem}
.compare-bar{
  margin-top:6px;
  height:6px;
  background:var(--line);
  border-radius:999px;
  overflow:hidden;
}
.compare-bar-fill{
  height:100%;
  background:linear-gradient(90deg,var(--emerald-700),var(--amber-500));
  border-radius:999px;
}
.compare-link{
  display:inline-block;
  background:var(--emerald-50);
  color:var(--emerald-800);
  padding:7px 14px;
  border-radius:999px;
  font-weight:600;
  font-size:.82rem;
  white-space:nowrap;
}
.compare-link:hover{background:var(--ink-900);color:var(--white)}
.compare-row{cursor:pointer}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.page-hero{
  background:var(--cream-100);
  border-bottom:1px solid var(--line);
  padding:18px 0;
}
.breadcrumb{
  font-size:.84rem;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}
.breadcrumb a{color:var(--muted);font-weight:500}
.breadcrumb a:hover{color:var(--emerald-800)}
.breadcrumb sep{color:var(--cream-200);font-size:.85rem}
.breadcrumb span{color:var(--ink-900);font-weight:600}

.product-layout{
  display:grid;
  grid-template-columns:minmax(380px,1.05fr) 1fr;
  gap:48px;
  padding:48px 0;
}
@media (max-width:880px){.product-layout{grid-template-columns:1fr;padding:30px 0;gap:30px}}

.gallery{display:flex;flex-direction:column;gap:14px;position:sticky;top:calc(var(--header-h) + 20px);align-self:start}
@media (max-width:880px){.gallery{position:static}}
.gallery-main{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
  overflow:hidden;
  box-shadow:var(--shadow-xs);
}
.gallery-main img{max-width:100%;max-height:100%;object-fit:contain}
.gallery-thumbs{display:flex;gap:10px;flex-wrap:wrap}
.gallery-thumb{
  width:78px;height:78px;
  border:2px solid var(--line);
  border-radius:10px;
  background:var(--white);
  padding:6px;
  cursor:pointer;
  transition:all var(--transition);
}
.gallery-thumb img{width:100%;height:100%;object-fit:contain}
.gallery-thumb:hover{border-color:var(--emerald-700);transform:translateY(-2px)}
.gallery-thumb.active{border-color:var(--emerald-800);box-shadow:0 0 0 1px var(--emerald-800)}

.product-info{display:flex;flex-direction:column;gap:18px}
.p-brand{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--emerald-50);
  color:var(--emerald-800);
  padding:5px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  align-self:flex-start;
  margin-bottom:0;
}
.p-title{
  font-family:'Sora';
  font-weight:800;
  font-size:clamp(1.6rem,3vw,2.2rem);
  color:var(--ink-900);
  letter-spacing:-.025em;
  line-height:1.2;
  margin:0;
}
.p-rating{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-size:.95rem}
.p-rating .stars-char{font-size:1.05rem}
.p-rating .score{font-family:'Sora';font-weight:800;font-size:1.15rem;color:var(--ink-900)}
.p-rating .reviews-ct{color:var(--muted);font-size:.84rem}

.p-price-card{
  background:linear-gradient(135deg,#fff 0%,var(--cream-50) 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:20px 22px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  box-shadow:var(--shadow-xs);
}
.p-price-card-left{display:flex;flex-direction:column;gap:4px}
.p-price-est-label{
  font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);font-weight:700;
}
.p-price-now{
  display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;
}
.p-price-now .now{
  font-family:'Sora';font-weight:800;font-size:2rem;color:var(--emerald-800);
  letter-spacing:-.02em;
}
.p-price-now .was{
  text-decoration:line-through;color:var(--muted);font-size:1rem;
}
.p-price-now .save{
  background:var(--amber-500);color:var(--ink-900);font-size:.7rem;
  font-weight:700;letter-spacing:.06em;padding:3px 8px;border-radius:6px;
  text-transform:uppercase;
}
.p-price-note{
  font-size:.78rem;color:var(--muted);
}
.p-price-pill{
  background:var(--ink-900);color:var(--amber-400);
  padding:8px 12px;border-radius:999px;
  font-size:.74rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;
}

.score-bar-wrap{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px 18px;
}
.score-bar-label{
  display:flex;justify-content:space-between;
  font-size:.82rem;font-weight:700;color:var(--ink-700);
  margin-bottom:8px;
  letter-spacing:.02em;
}
.score-bar-track{
  height:10px;
  background:var(--line);
  border-radius:999px;
  overflow:hidden;
}
.score-bar-fill{
  height:100%;
  background:linear-gradient(90deg,var(--emerald-700),var(--amber-500));
  border-radius:999px;
  transition:width .8s ease;
}

.verdict-box{
  background:linear-gradient(135deg,var(--ink-900) 0%,var(--emerald-900) 100%);
  color:var(--white);
  border-radius:var(--radius-lg);
  padding:22px 24px;
  position:relative;
  overflow:hidden;
}
.verdict-box::before{
  content:"";position:absolute;top:-30px;right:-30px;
  width:140px;height:140px;border-radius:50%;
  background:radial-gradient(circle,rgba(245,158,11,.25) 0%,transparent 70%);
}
.verdict-label{
  font-family:'Sora';font-weight:700;
  font-size:.74rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--amber-400);margin-bottom:10px;display:flex;align-items:center;gap:8px;
}
.verdict-label::before{content:"✦"}
.verdict-text{margin:0;line-height:1.65;font-size:.95rem;color:rgba(255,255,255,.95)}

.cta-group{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:8px 0 4px;
}
.btn-buy{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg,var(--amber-500) 0%,var(--amber-600) 100%);
  color:var(--ink-900);
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.01em;
  box-shadow:0 10px 28px rgba(245,158,11,.4);
  transition:all var(--transition);
  flex-grow:1;
  justify-content:center;
}
.btn-buy:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(245,158,11,.55);
  color:var(--ink-900);
}
.btn-buy.alt{
  background:var(--ink-900);
  color:var(--amber-400);
  box-shadow:0 8px 22px rgba(15,26,20,.25);
}
.btn-buy.alt:hover{
  background:var(--emerald-900);
  color:var(--amber-400);
  box-shadow:0 14px 36px rgba(15,76,58,.3);
}
.btn-read-reviews{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--white);
  border:1px solid var(--line);
  color:var(--ink-800);
  padding:14px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:.92rem;
  transition:all var(--transition);
}
.btn-read-reviews:hover{
  background:var(--cream-50);
  border-color:var(--emerald-700);
  color:var(--emerald-800);
}
.cta-disclosure{
  font-size:.78rem;
  color:var(--muted);
  line-height:1.5;
  margin:0;
}

.features-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.features-list li{
  position:relative;
  padding:10px 14px 10px 38px;
  background:var(--cream-50);
  border-radius:10px;
  font-size:.92rem;
  line-height:1.55;
  color:var(--ink-700);
}
.features-list li::before{
  content:"";
  position:absolute;
  left:14px;
  top:14px;
  width:14px;height:14px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='7' fill='%2315614A'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.features-headline{
  font-family:'Sora';
  font-size:.82rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
  margin:6px 0 10px;
  display:flex;align-items:center;gap:8px;
}
.features-headline::before{content:"";display:inline-block;width:18px;height:2px;background:var(--amber-500);border-radius:2px}

.pros-cons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:30px 0;
}
@media (max-width:680px){.pros-cons{grid-template-columns:1fr}}
.pros-box,.cons-box{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px 24px;
  box-shadow:var(--shadow-xs);
}
.pros-box{border-top:4px solid #15803d}
.cons-box{border-top:4px solid #dc2626}
.box-head{
  font-family:'Sora';
  font-weight:700;
  font-size:1rem;
  letter-spacing:-.01em;
  margin-bottom:14px;
  display:flex;align-items:center;gap:8px;
}
.pros-box .box-head{color:#15803d}
.cons-box .box-head{color:#dc2626}
.pros-box ul,.cons-box ul{display:flex;flex-direction:column;gap:8px}
.pros-box li,.cons-box li{
  padding:8px 14px 8px 36px;
  border-radius:8px;
  background:var(--cream-50);
  font-size:.91rem;
  line-height:1.55;
  position:relative;
  color:var(--ink-700);
}
.pros-box li::before,.cons-box li::before{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  width:18px;height:18px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;
  font-weight:700;
  color:var(--white);
}
.pros-box li::before{content:"✓";background:#15803d}
.cons-box li::before{content:"✕";background:#dc2626}

.product-desc{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 32px;
  margin:30px 0;
}
.product-desc h2{
  font-family:'Sora';
  font-size:1.6rem;
  margin-bottom:16px;
  position:relative;
  padding-bottom:14px;
}
.product-desc h2::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:50px;height:3px;
  background:linear-gradient(90deg,var(--emerald-700),var(--amber-500));
  border-radius:2px;
}
.product-desc p{
  color:var(--ink-700);
  line-height:1.8;
  font-size:1rem;
}

/* Diagrams */
.diagram-section{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 32px;
  margin:30px 0;
  box-shadow:var(--shadow-xs);
}
.diagram-section h3{
  font-family:'Sora';
  font-size:1.2rem;
  margin-bottom:18px;
  letter-spacing:-.01em;
  color:var(--ink-900);
  display:flex;align-items:center;gap:10px;
}
.diagram-section h3 .ico{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;
  background:var(--emerald-50);color:var(--emerald-800);
  border-radius:9px;
  font-size:1rem;
}
.diagram-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:16px;
}
@media (max-width:780px){.diagram-grid{grid-template-columns:1fr}}

/* Score breakdown bars diagram */
.score-breakdown{display:flex;flex-direction:column;gap:14px}
.score-row{
  display:grid;
  grid-template-columns:130px 1fr 42px;
  gap:14px;
  align-items:center;
}
.score-row-label{
  font-size:.84rem;
  color:var(--ink-700);
  font-weight:600;
}
.score-row-bar{
  height:8px;
  background:var(--line);
  border-radius:999px;
  overflow:hidden;
}
.score-row-fill{
  height:100%;
  background:linear-gradient(90deg,var(--emerald-700) 0%,var(--amber-500) 100%);
  border-radius:999px;
  transition:width 1s ease;
}
.score-row-num{
  font-family:'Sora';
  font-weight:700;
  font-size:.92rem;
  color:var(--ink-900);
  text-align:right;
}

/* Radar chart styling */
.radar-wrap{display:flex;align-items:center;justify-content:center;padding:6px}
.radar-wrap svg{max-width:100%;height:auto}

.diagram-caption{
  margin-top:14px;
  font-size:.82rem;
  color:var(--muted);
  text-align:center;
  font-style:italic;
}

/* =========================================================
   RELATED PRODUCTS
   ========================================================= */
.related-section{
  background:linear-gradient(180deg,var(--cream-100) 0%,var(--cream-50) 100%);
  padding:60px 0 80px;
  margin-top:30px;
  border-top:1px solid var(--line);
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
@media (max-width:980px){.related-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.related-grid{grid-template-columns:1fr}}
.related-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  text-decoration:none;
  color:inherit;
  transition:all var(--transition);
}
.related-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--cream-200);
}
.related-img{
  aspect-ratio:1;
  background:var(--cream-50);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  padding:14px;
  overflow:hidden;
}
.related-img img{max-width:100%;max-height:100%;object-fit:contain}
.related-brand{
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--emerald-700);font-weight:700;
}
.related-title{
  font-family:'Sora';font-weight:600;font-size:.92rem;
  color:var(--ink-900);line-height:1.35;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.related-stars{font-size:.8rem;color:var(--amber-500);font-weight:600}
.related-link{
  margin-top:auto;color:var(--emerald-800);font-weight:600;font-size:.82rem;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 32px;
  margin:20px 0 40px;
}
.reviews-section h2{
  font-family:'Sora';font-size:1.5rem;margin-bottom:20px;
  display:flex;align-items:center;gap:10px;
}
.reviews-section h2::before{content:"💬"}
.reviews-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
@media (max-width:780px){.reviews-grid{grid-template-columns:1fr}}
.review-card{
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 20px;
}
.review-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;gap:12px;flex-wrap:wrap}
.reviewer-name{font-family:'Sora';font-weight:700;color:var(--ink-900);font-size:.94rem}
.review-date{font-size:.78rem;color:var(--muted)}
.review-stars{color:var(--amber-500);font-size:.92rem;margin-bottom:8px;letter-spacing:.06em}
.review-title{font-family:'Sora';font-weight:600;color:var(--ink-900);margin-bottom:6px;font-size:.95rem}
.review-text{font-size:.9rem;color:var(--ink-700);line-height:1.6}

/* =========================================================
   STATIC PAGES
   ========================================================= */
.static-hero{
  padding:60px 0;
  background:linear-gradient(135deg,var(--emerald-900) 0%,var(--ink-900) 60%,var(--emerald-800) 100%);
  color:var(--white);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.static-hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse at center,rgba(245,158,11,.15) 0%,transparent 60%);
}
.static-hero h1{
  color:var(--white);
  font-family:'Sora';
  font-weight:800;
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:14px;
  position:relative;
}
.static-hero p{
  color:rgba(255,255,255,.92);
  font-size:1.1rem;
  max-width:680px;
  margin:0 auto;
  position:relative;
}
.static-content{
  max-width:820px;
  margin:0 auto;
  padding:30px 36px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xs);
}
.static-content h2{
  font-family:'Sora';
  font-size:1.45rem;
  margin:32px 0 12px;
  position:relative;
  padding-bottom:10px;
}
.static-content h2:first-child{margin-top:8px}
.static-content h2::after{
  content:"";position:absolute;left:0;bottom:0;
  width:40px;height:3px;
  background:linear-gradient(90deg,var(--emerald-700),var(--amber-500));
  border-radius:2px;
}
.static-content p{color:var(--ink-700);line-height:1.75;margin-bottom:14px}
.static-content ul{list-style:disc;padding-left:24px;margin-bottom:14px;color:var(--ink-700)}
.static-content ul li{margin-bottom:8px;line-height:1.6}
.static-content strong{color:var(--ink-900);font-weight:700}

/* Featured strip backwards compat */
.featured-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media (max-width:880px){.featured-grid{grid-template-columns:1fr}}
.featured-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  padding:18px;
  text-decoration:none;
  color:inherit;
  transition:all var(--transition);
}
.featured-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.featured-img{aspect-ratio:4/3;background:var(--cream-50);border-radius:var(--radius);overflow:hidden;display:flex;align-items:center;justify-content:center;padding:18px}
.featured-img img{max-width:100%;max-height:100%;object-fit:contain}
.featured-body{padding-top:14px}
.featured-rank{font-family:'Sora';font-weight:700;color:var(--amber-600);font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:6px}
.featured-title{font-family:'Sora';font-weight:700;color:var(--ink-900);font-size:1.05rem;margin-bottom:8px}
.featured-stars{color:var(--amber-500);font-size:.86rem;font-weight:600;margin-bottom:8px}
.featured-link{color:var(--emerald-800);font-weight:600;font-size:.86rem}

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background:linear-gradient(180deg,var(--ink-900) 0%,#070d0a 100%);
  color:rgba(255,255,255,.78);
  padding:80px 0 40px;
  margin-top:0;
  position:relative;
  overflow:hidden;
}
footer::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:4px;
  background:linear-gradient(90deg,var(--emerald-700),var(--amber-500),var(--emerald-700));
}
footer::after{
  content:"";
  position:absolute;
  top:-100px;right:-100px;
  width:340px;height:340px;
  background:radial-gradient(circle,rgba(15,76,58,.4) 0%,transparent 70%);
  pointer-events:none;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:40px;
  position:relative;
}
@media (max-width:880px){.footer-grid{grid-template-columns:1fr 1fr;gap:30px}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr}}

.footer-brand{}
.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:'Sora';
  font-weight:800;
  color:var(--white);
  font-size:1.2rem;
  margin-bottom:14px;
  letter-spacing:-.02em;
}
.footer-logo-img{
  width:42px;height:42px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  padding:4px;
}
.footer-brand p{
  font-size:.9rem;
  line-height:1.7;
  color:rgba(255,255,255,.66);
  margin-bottom:14px;
  max-width:340px;
}
.footer-disclaimer{
  font-size:.8rem;
  padding:12px 14px;
  background:rgba(255,255,255,.04);
  border-left:3px solid var(--amber-500);
  border-radius:6px;
  color:rgba(255,255,255,.78);
}
footer h4{
  font-family:'Sora';
  font-weight:700;
  color:var(--white);
  font-size:.9rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:18px;
  display:flex;align-items:center;gap:8px;
}
footer h4::before{content:"";display:inline-block;width:14px;height:2px;background:var(--amber-500);border-radius:2px}
footer ul{display:flex;flex-direction:column;gap:10px}
footer ul li a{
  color:rgba(255,255,255,.7);
  font-size:.92rem;
  transition:all var(--transition);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
footer ul li a:hover{
  color:var(--amber-400);
  transform:translateX(3px);
}
.footer-bottom{
  margin-top:50px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  font-size:.82rem;
  color:rgba(255,255,255,.55);
}
.footer-bottom a{color:rgba(255,255,255,.7)}
.footer-bottom a:hover{color:var(--amber-400)}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
#cookie-banner{
  position:fixed;
  bottom:18px;
  left:18px;
  right:18px;
  z-index:200;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xl);
  transform:translateY(40px);
  opacity:0;
  pointer-events:none;
  transition:all var(--transition);
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
#cookie-banner.show{transform:translateY(0);opacity:1;pointer-events:auto}
.cookie-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  padding:18px 22px;
}
.cookie-text{
  font-size:.9rem;
  color:var(--ink-700);
  margin:0;
  flex-grow:1;
  min-width:240px;
}
.cookie-text a{color:var(--emerald-800);font-weight:600;text-decoration:underline}
.cookie-btns{display:flex;gap:8px}
.cookie-accept,.cookie-decline{
  border:none;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  font-size:.86rem;
  transition:all var(--transition);
}
.cookie-accept{background:var(--ink-900);color:var(--white)}
.cookie-accept:hover{background:var(--emerald-800)}
.cookie-decline{background:transparent;border:1px solid var(--line);color:var(--ink-700)}
.cookie-decline:hover{background:var(--cream-50)}

/* =========================================================
   UTILITY
   ========================================================= */
.pg-item.hidden{display:none}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
.product-card,.podium-card,.featured-card{animation:fadeUp .5s ease both}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
}
