@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

:root{
  --primary:#1a1a2e;
  --primary-light:#16213e;
  --accent:#e94560;
  --accent-light:#ff6b81;
  --accent-gold:#f0c040;
  --bg:#f7f8fa;
  --surface:#ffffff;
  --surface2:#eef0f4;
  --text:#1a1a2e;
  --muted:#6c7293;
  --border:#dce0ea;
  --radius:12px;
  --radius-sm:8px;
  --shadow:0 2px 8px rgba(26,26,46,.06);
  --shadow-lg:0 12px 32px rgba(26,26,46,.12);
  --font-head:'Barlow Condensed',sans-serif;
  --font:'Inter',sans-serif;
}

html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.6;font-size:16px;-webkit-font-smoothing:antialiased}
a{color:var(--accent);text-decoration:none;transition:color .2s}
a:hover{color:var(--accent-light);text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1240px;margin:0 auto;padding:0 24px}
.section{padding:72px 0}
.section-sm{padding:48px 0}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:200;
  background:var(--primary);
  border-bottom:3px solid var(--accent);
  box-shadow:0 4px 12px rgba(26,26,46,.15);
  transition:box-shadow .3s
}

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

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-head);
  font-size:1.4rem;
  font-weight:700;
  color:#fff;
  letter-spacing:-.5px;
  text-decoration:none;
  flex-shrink:0
}

.logo-img{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0
}

.logo-icon{
  width:40px;
  height:40px;
  background:var(--accent);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  flex-shrink:0;
  color:#fff;
  font-weight:700
}

nav{
  display:flex;
  align-items:center;
  gap:6px
}

nav a{
  color:rgba(255,255,255,.8);
  font-size:.88rem;
  font-weight:600;
  padding:8px 16px;
  border-radius:6px;
  transition:all .2s;
  letter-spacing:.03em;
  text-transform:uppercase
}

nav a:hover{
  background:rgba(255,255,255,.15);
  color:#fff;
  text-decoration:none
}

.nav-cta{
  background:var(--accent)!important;
  color:#fff!important;
  font-weight:700!important;
  padding:8px 18px!important
}

.nav-cta:hover{
  background:var(--accent-light)!important;
  transform:translateY(-1px)
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px 4px;
  flex-shrink:0
}

.nav-toggle span{
  display:block;
  width:24px;
  height:2.5px;
  background:#fff;
  border-radius:2px;
  transition:transform .25s,opacity .25s
}

.nav-toggle.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg)
}

.nav-toggle.active span:nth-child(2){
  opacity:0;
  transform:scaleX(0)
}

.nav-toggle.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg)
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:100px 0 90px;
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 50%,#0f3460 100%);
  color:#fff
}

.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.15;
  z-index:0
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(26,26,46,.6),rgba(26,26,46,.35));
  z-index:1
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  z-index:0
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:720px;
  margin:0 auto
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(233,69,96,.15);
  border:1px solid rgba(233,69,96,.3);
  color:var(--accent-light);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:6px 16px;
  border-radius:24px;
  margin-bottom:24px
}

.hero h1{
  font-family:var(--font-head);
  font-size:clamp(2.2rem,6vw,3.6rem);
  font-weight:800;
  color:#fff;
  line-height:1.1;
  margin-bottom:20px;
  letter-spacing:-.8px;
  text-transform:uppercase
}

.hero h1 span{
  color:var(--accent-gold);
  display:block
}

.hero p{
  color:rgba(255,255,255,.8);
  font-size:1.1rem;
  max-width:540px;
  margin:0 auto 40px;
  line-height:1.6
}

.hero-cta-row{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:36px
}

.btn-hero-primary{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 36px;
  background:var(--accent);
  color:#fff;
  font-family:var(--font-head);
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:.03em;
  border-radius:60px;
  text-decoration:none;
  transition:background .25s,transform .2s,box-shadow .25s;
  box-shadow:0 4px 20px rgba(233,69,96,.35)
}
.btn-hero-primary:hover{
  background:var(--accent-light);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 6px 28px rgba(233,69,96,.45)
}

.btn-hero-secondary{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 36px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-family:var(--font-head);
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:.03em;
  border-radius:60px;
  border:2px solid rgba(255,255,255,.3);
  text-decoration:none;
  transition:background .25s,transform .2s,border-color .25s;
  backdrop-filter:blur(4px)
}
.btn-hero-secondary:hover{
  background:rgba(255,255,255,.22);
  color:#fff;
  border-color:rgba(255,255,255,.5);
  transform:translateY(-2px)
}

.hero-logo-wrapper{
  position:absolute;
  width:200px;
  height:200px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(233,69,96,.2), transparent);
  filter:blur(40px);
  pointer-events:none
}

/* Affiliate bar */
.aff-bar{
  background:rgba(233,69,96,.08);
  border-bottom:1px solid rgba(233,69,96,.2);
  padding:12px 0;
  text-align:center;
  font-size:.8rem;
  color:var(--muted)
}

.aff-bar strong{
  color:var(--text);
  font-weight:600
}

/* Section headings */
.section-head{
  text-align:center;
  margin-bottom:48px
}

.section-head h2{
  font-family:var(--font-head);
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:800;
  color:var(--primary);
  margin-bottom:12px;
  letter-spacing:-.03em;
  text-transform:uppercase
}

.section-head p{
  color:var(--muted);
  font-size:1rem;
  max-width:520px;
  margin:0 auto
}

.section-head .divider{
  width:60px;
  height:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent-gold));
  border-radius:2px;
  margin:18px auto 0
}

/* Product Grid */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(290px,1fr));
  gap:28px
}

.product-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  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(-6px);
  box-shadow:var(--shadow-lg);
  text-decoration:none;
  color:inherit;
  border-color:var(--accent)
}

.card-img-wrap{
  position:relative;
  height:210px;
  overflow:hidden;
  background:var(--surface2)
}

.card-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s
}

.product-card:hover .card-img-wrap img{
  transform:scale(1.05)
}

.card-img-wrap.no-img{
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),var(--primary-light))
}

.card-img-placeholder{
  font-size:3.5rem;
  opacity:.25;
  color:#fff
}

.card-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:var(--accent);
  color:#fff;
  font-size:.7rem;
  font-weight:700;
  padding:4px 11px;
  border-radius:20px;
  text-transform:uppercase;
  letter-spacing:.07em;
  z-index:2
}

.card-rating-badge{
  position:absolute;
  top:12px;
  right:12px;
  background:var(--accent-gold);
  color:var(--primary);
  font-size:.82rem;
  font-weight:700;
  padding:4px 10px;
  border-radius:6px;
  display:flex;
  align-items:center;
  gap:3px;
  z-index:2
}

.card-rating-badge .si{
  font-size:.85rem
}

.card-body{
  padding:18px 20px;
  flex:1;
  display:flex;
  flex-direction:column
}

.card-brand{
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--accent);
  margin-bottom:6px
}

.card-title{
  font-family:var(--font-head);
  font-size:.98rem;
  font-weight:700;
  line-height:1.4;
  margin-bottom:8px;
  color:var(--text);
  letter-spacing:-.02em
}

.card-snippet{
  font-size:.85rem;
  color:var(--muted);
  line-height:1.6;
  flex:1;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden
}

.card-features{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-top:8px;
  padding-top:8px;
  border-top:1px solid var(--border)
}

.card-feat{
  font-size:.78rem;
  color:var(--primary);
  line-height:1.4;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  padding-left:2px
}

.card-feat::first-letter{
  color:var(--accent)
}

.stars-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
  margin-top:6px
}

.stars-char{
  color:var(--accent-gold);
  font-size:.95rem;
  letter-spacing:1px;
  line-height:1
}

.rating-num{
  font-weight:700;
  font-size:.9rem;
  color:var(--text)
}

.rating-count{
  font-size:.8rem;
  color:var(--muted)
}

.card-footer{
  padding:14px 20px;
  border-top:1px solid var(--border)
}

.btn-review{
  display:block;
  text-align:center;
  background:var(--primary);
  color:#fff;
  padding:10px 16px;
  border-radius:6px;
  font-size:.85rem;
  font-weight:700;
  transition:all .2s;
  border:none;
  cursor:pointer;
  letter-spacing:.03em;
  text-transform:uppercase;
  font-family:var(--font-head)
}

.btn-review:hover{
  background:var(--accent);
  text-decoration:none;
  color:#fff;
  transform:translateY(-1px)
}

/* 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:1px solid var(--border);
  background:var(--surface);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.88rem;
  font-weight:600;
  cursor:pointer;
  transition:all .2s;
  color:var(--text)
}

.page-btn:hover,.page-btn.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent)
}

.page-btn.disabled{
  opacity:.4;
  pointer-events:none
}

.page-nav{
  padding:0 16px;
  width:auto;
  font-size:.85rem;
  color:var(--muted)
}

/* Featured/Editor's Picks - Horizontal premium layout */
.featured-strip{
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);
  padding:80px 0;
  color:#fff
}

.featured-strip .section-head h2{
  color:#fff
}

.featured-strip .section-head p{
  color:rgba(255,255,255,.7)
}

.featured-strip .divider{
  background:linear-gradient(90deg,var(--accent),var(--accent-gold));
  margin-left:auto;
  margin-right:auto
}

.featured-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:32px;
  width:100%
}

@media(max-width:860px){
  .featured-grid{
    grid-template-columns:1fr
  }
}

.featured-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all .3s;
  display:flex;
  flex-direction:column;
  color:inherit;
  text-decoration:none
}

.featured-card:hover{
  transform:translateY(-8px);
  border-color:var(--accent);
  box-shadow:0 16px 40px rgba(233,69,96,.2);
  text-decoration:none;
  color:inherit;
  background:rgba(255,255,255,.09)
}

.featured-img{
  height:240px;
  overflow:hidden;
  position:relative
}

.featured-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s
}

.featured-card:hover .featured-img img{
  transform:scale(1.08)
}

.featured-img.no-img{
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.15);
  font-size:3rem
}

.featured-body{
  padding:24px;
  flex:1;
  display:flex;
  flex-direction:column
}

.featured-rank{
  font-size:.7rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--accent-gold);
  margin-bottom:8px;
  font-family:var(--font-head)
}

.featured-title{
  font-family:var(--font-head);
  font-size:1.1rem;
  font-weight:800;
  color:#fff;
  line-height:1.3;
  margin-bottom:12px;
  letter-spacing:-.02em
}

.featured-stars{
  color:var(--accent-gold);
  font-size:.9rem;
  margin-bottom:16px;
  letter-spacing:.05em
}

.featured-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--accent-light);
  font-size:.85rem;
  font-weight:700;
  margin-top:auto
}

.featured-link:hover{
  color:#fff;
  text-decoration:none;
  gap:10px
}

.featured-link::after{
  content:'→';
  transition:transform .2s
}

.featured-link:hover::after{
  transform:translateX(3px)
}

/* Compare Section */
.compare-section{
  background:var(--surface2);
  border-top:1px solid var(--border);
  padding:64px 0
}

.compare-section .section-head h2{
  color:var(--primary)
}

.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:720px;
  background:var(--surface)
}

.compare-table th{
  background:var(--primary);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:16px 18px;
  text-align:left;
  white-space:nowrap;
  font-family:var(--font-head)
}

.compare-table td{
  padding:16px 18px;
  border-bottom:1px solid var(--border);
  font-size:.87rem;
  vertical-align:middle
}

.compare-table tr:last-child td{
  border-bottom:none
}

.compare-table tr:hover td{
  background:rgba(233,69,96,.03)
}
.compare-row[data-href]{cursor:pointer;transition:background .15s}
.compare-row[data-href]:hover td{background:rgba(233,69,96,.07)}

.compare-rank{
  font-size:1.3rem;
  font-weight:800;
  color:var(--accent);
  text-align:center;
  font-family:var(--font-head)
}

.compare-img{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid var(--border)
}

.compare-img.placeholder{
  background:linear-gradient(135deg,var(--primary),var(--primary-light));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  opacity:.5;
  color:#fff
}

.compare-name{
  font-weight:700;
  font-family:var(--font-head);
  font-size:.9rem;
  color:var(--text);
  line-height:1.35;
  margin-bottom:3px;
  letter-spacing:-.02em
}

.compare-brand-tag{
  font-size:.7rem;
  color:var(--accent);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em
}

.compare-bar{
  height:6px;
  background:var(--border);
  border-radius:3px;
  margin-top:5px;
  overflow:hidden
}

.compare-bar-fill{
  height:100%;
  background:linear-gradient(90deg,var(--accent),var(--accent-light));
  border-radius:3px
}

.compare-score{
  font-weight:700;
  color:var(--accent);
  font-size:.95rem;
  font-family:var(--font-head)
}

.compare-link{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:7px 16px;
  border-radius:6px;
  font-size:.78rem;
  font-weight:700;
  transition:all .2s;
  white-space:nowrap;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-family:var(--font-head)
}

.compare-link:hover{
  background:var(--accent);
  text-decoration:none;
  color:#fff;
  transform:translateY(-1px)
}

/* Sidebar */
.content-with-sidebar{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:40px;
  align-items:start
}

@media(max-width:1040px){
  .content-with-sidebar{
    grid-template-columns:1fr
  }
  .sidebar{
    display:none
  }
}

.sidebar{
  min-width:0
}

.sidebar-widget{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  position:sticky;
  top:88px
}

.sidebar-widget h3{
  font-family:var(--font-head);
  font-size:1rem;
  font-weight:700;
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:2px solid var(--border);
  color:var(--primary);
  display:flex;
  align-items:center;
  gap:8px;
  letter-spacing:-.02em
}

.sidebar-list{
  display:flex;
  flex-direction:column;
  gap:0
}

.sidebar-item{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid var(--border)
}

.sidebar-item:last-child{
  border-bottom:none;
  padding-bottom:0
}

.sidebar-rank{
  font-size:.85rem;
  font-weight:700;
  color:var(--accent-gold);
  min-width:20px;
  text-align:center;
  flex-shrink:0;
  font-family:var(--font-head)
}

.sidebar-img{
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:7px;
  flex-shrink:0;
  background:var(--surface2);
  border:1px solid var(--border)
}

.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(--accent-gold);
  font-size:.72rem;
  letter-spacing:.05em
}

.sidebar-link{
  font-size:.72rem;
  color:var(--accent);
  font-weight:700;
  display:block;
  margin-top:2px;
  text-transform:uppercase;
  letter-spacing:.03em
}

.sidebar-link:hover{
  color:var(--accent-light)
}

/* Brand Cloud */
.brand-cloud-section{
  background:var(--surface2);
  padding:32px 0;
  border-bottom:1px solid var(--border)
}

.brand-cloud-label{
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
  text-align:center;
  margin-bottom:16px;
  font-family:var(--font-head)
}

.brand-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center
}

.brand-tag{
  display:inline-block;
  padding:6px 16px;
  border:1.5px solid var(--border);
  border-radius:20px;
  font-size:.8rem;
  font-weight:600;
  color:var(--muted);
  cursor:pointer;
  transition:all .18s;
  background:var(--surface);
  user-select:none;
  line-height:1.5
}

.brand-tag:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(233,69,96,.05)
}

.brand-tag.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent)
}

/* Filter Bar */
.filter-bar{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:28px;
  padding:16px 20px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow)
}

.filter-label{
  font-size:.78rem;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.07em;
  white-space:nowrap;
  font-family:var(--font-head)
}

.filter-select{
  padding:8px 12px;
  border:1.5px solid var(--border);
  border-radius:6px;
  font-size:.84rem;
  background:var(--bg);
  color:var(--text);
  cursor:pointer;
  font-family:var(--font);
  transition:all .18s;
  appearance:auto
}

.filter-select:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(233,69,96,.1)
}

.filter-reset{
  background:none;
  border:1.5px solid var(--border);
  border-radius:6px;
  padding:8px 14px;
  font-size:.8rem;
  color:var(--muted);
  cursor:pointer;
  transition:all .18s;
  font-family:var(--font-head);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em
}

.filter-reset:hover{
  border-color:var(--accent);
  color:var(--accent)
}

.filter-results{
  font-size:.8rem;
  color:var(--muted);
  margin-left:auto;
  white-space:nowrap
}

/* Product Page */
.page-hero{
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);
  padding:32px 0;
  color:#fff
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.82rem;
  color:rgba(255,255,255,.7);
  flex-wrap:wrap
}

.breadcrumb a{
  color:rgba(255,255,255,.85)
}

.breadcrumb a:hover{
  color:#fff;
  text-decoration:none
}

.breadcrumb sep{
  color:rgba(255,255,255,.4);
  margin:0 2px
}

.product-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
  padding:52px 0
}

@media(max-width:900px){
  .product-layout{
    grid-template-columns:1fr;
    gap:36px
  }
}

/* Gallery */
.gallery{
  display:flex;
  flex-direction:column;
  gap:12px;
  position:sticky;
  top:88px
}

.gallery-main{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3;
  background:var(--surface2);
  border:2px solid var(--border)
}

.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(--primary),var(--primary-light));
  font-size:5rem;
  opacity:.35;
  color:#fff
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  flex-wrap:wrap
}

.gallery-thumb{
  flex:0 0 auto;
  width:72px;
  height:72px;
  border-radius:var(--radius-sm);
  cursor:pointer;
  border:2px solid var(--border);
  transition:all .2s;
  opacity:.7;
  background:var(--surface2);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden
}

.gallery-thumb img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block
}

.gallery-thumb:hover,.gallery-thumb.active{
  opacity:1;
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(233,69,96,.25)
}

/* Product Info */
.p-brand{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(233,69,96,.12);
  color:var(--accent);
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  padding:5px 13px;
  border-radius:20px;
  margin-bottom:16px
}

.p-title{
  font-family:var(--font-head);
  font-size:clamp(1.5rem,3vw,2rem);
  font-weight:800;
  line-height:1.25;
  margin-bottom:18px;
  letter-spacing:-.03em;
  color:var(--primary)
}

.p-rating{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px
}

.p-rating .stars-char{
  font-size:1.1rem;
  color:var(--accent-gold)
}

.p-rating .score{
  font-size:1.1rem;
  font-weight:700;
  color:var(--text)
}

.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:18px 22px;
  margin-bottom:24px
}

.score-bar-label{
  display:flex;
  justify-content:space-between;
  font-size:.8rem;
  color:var(--muted);
  margin-bottom:8px;
  font-weight:600
}

.score-bar-track{
  height:8px;
  background:var(--border);
  border-radius:4px;
  overflow:hidden
}

.score-bar-fill{
  height:100%;
  background:linear-gradient(90deg,var(--accent),var(--accent-light));
  border-radius:4px
}

/* Verdict */
.verdict-box{
  background:linear-gradient(135deg,rgba(233,69,96,.06),rgba(255,107,129,.04));
  border:1px solid rgba(233,69,96,.25);
  border-radius:var(--radius);
  padding:22px 24px;
  margin-bottom:26px
}

.verdict-label{
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--accent);
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:6px;
  font-family:var(--font-head)
}

.verdict-label::before{
  content:'';
  width:8px;
  height:8px;
  background:var(--accent);
  border-radius:50%;
  display:inline-block
}

.verdict-text{
  font-size:.93rem;
  color:var(--text);
  line-height:1.65
}

/* CTA */
.cta-group{
  display:flex;
  gap:12px;
  margin-bottom:30px;
  flex-wrap:wrap
}

.btn-read-reviews{
  flex:1;
  min-width:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--primary);
  color:#fff;
  padding:13px 22px;
  border-radius:8px;
  font-weight:700;
  font-size:.9rem;
  transition:all .2s;
  border:none;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-family:var(--font-head)
}

.btn-read-reviews:hover{
  background:var(--accent);
  text-decoration:none;
  color:#fff;
  transform:translateY(-1px)
}

/* Features */
.features-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:11px
}

.features-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:.9rem;
  color:var(--text)
}

.features-list li::before{
  content:'✓';
  color:var(--accent);
  font-weight:700;
  flex-shrink:0;
  margin-top:2px;
  font-size:1.1rem
}

/* Pros / Cons */
.pros-cons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  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:26px;
  box-shadow:var(--shadow)
}

.pros-box{
  border-left:4px solid #10b981
}

.cons-box{
  border-left:4px solid var(--accent)
}

.box-head{
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-head)
}

.pros-box .box-head{
  color:#10b981
}

.cons-box .box-head{
  color:var(--accent)
}

.pros-box ul,.cons-box ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px
}

.pros-box li,.cons-box li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:.88rem;
  line-height:1.55;
  color:var(--text)
}

.pros-box li::before{
  content:'✓';
  color:#10b981;
  font-weight:700;
  flex-shrink:0;
  margin-top:0px;
  font-size:1rem
}

.cons-box li::before{
  content:'✗';
  color:var(--accent);
  font-weight:700;
  flex-shrink:0;
  margin-top:0px;
  font-size:1rem
}

/* Description */
.product-desc{
  margin:0 0 52px
}

.product-desc h2{
  font-family:var(--font-head);
  font-size:1.5rem;
  font-weight:800;
  margin-bottom:22px;
  padding-bottom:14px;
  border-bottom:2px solid var(--border);
  color:var(--primary);
  letter-spacing:-.02em
}

.product-desc p{
  margin-bottom:16px;
  color:var(--text);
  font-size:.95rem;
  line-height:1.75
}

/* Reviews */
.reviews-section{
  margin:0 0 64px
}

.reviews-section h2{
  font-family:var(--font-head);
  font-size:1.5rem;
  font-weight:800;
  margin-bottom:30px;
  padding-bottom:14px;
  border-bottom:2px solid var(--border);
  color:var(--primary);
  letter-spacing:-.02em
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px
}

.review-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  transition:all .2s
}

.review-card:hover{
  box-shadow:var(--shadow-lg);
  border-color:var(--accent)
}

.review-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:10px
}

.reviewer-name{
  font-weight:600;
  font-size:.9rem;
  color:var(--text)
}

.review-date{
  font-size:.78rem;
  color:var(--muted)
}

.review-stars{
  color:var(--accent-gold);
  font-size:.9rem;
  margin-bottom:8px;
  letter-spacing:.1em;
  display:flex;
  gap:1px
}

.review-title{
  font-weight:700;
  font-size:.88rem;
  margin-bottom:10px;
  color:var(--text);
  font-family:var(--font-head)
}

.review-text{
  font-size:.85rem;
  color:var(--muted);
  line-height:1.6
}

/* Related */
.related-section{
  background:var(--surface2);
  padding:64px 0;
  border-top:1px solid var(--border)
}

.related-section .section-head h2{
  text-align:center;
  color:var(--primary)
}

.related-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:36px
}

@media(max-width:960px){
  .related-grid{
    grid-template-columns:repeat(2,1fr)
  }
}

@media(max-width:520px){
  .related-grid{
    grid-template-columns:1fr
  }
}

.related-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all .2s;
  display:block;
  color:inherit;
  text-decoration:none
}

.related-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  text-decoration:none;
  color:inherit;
  border-color:var(--accent)
}

.related-img{
  height:160px;
  overflow:hidden;
  background:var(--surface2)
}

.related-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s
}

.related-card:hover .related-img img{
  transform:scale(1.06)
}

.related-img.no-img{
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),var(--primary-light));
  font-size:2rem;
  opacity:.4;
  color:#fff
}

.related-body{
  padding:16px
}

.related-brand{
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--accent);
  margin-bottom:6px
}

.related-title{
  font-size:.84rem;
  font-weight:700;
  color:var(--text);
  line-height:1.4;
  margin-bottom:8px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-family:var(--font-head)
}

.related-stars{
  color:var(--accent-gold);
  font-size:.8rem;
  letter-spacing:.1em
}

.related-link{
  display:block;
  margin-top:12px;
  text-align:center;
  background:var(--primary);
  color:#fff;
  padding:8px;
  border-radius:6px;
  font-size:.8rem;
  font-weight:700;
  transition:all .2s;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-family:var(--font-head)
}

.related-link:hover{
  background:var(--accent);
  text-decoration:none;
  color:#fff;
  transform:translateY(-1px)
}

/* Static Pages */
.static-hero{
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);
  padding:60px 0;
  color:#fff
}

.static-hero h1{
  font-family:var(--font-head);
  font-size:clamp(1.8rem,4vw,2.8rem);
  color:#fff;
  font-weight:800;
  letter-spacing:-.03em
}

.static-hero p{
  color:rgba(255,255,255,.75);
  font-size:1rem;
  margin-top:12px;
  line-height:1.6
}

.static-content{
  max-width:820px;
  margin:0 auto;
  padding:60px 24px 80px
}

.static-content h2{
  font-family:var(--font-head);
  font-size:1.4rem;
  font-weight:800;
  margin:36px 0 16px;
  color:var(--primary);
  letter-spacing:-.02em
}

.static-content p{
  margin-bottom:16px;
  line-height:1.8;
  font-size:.95rem;
  color:var(--text)
}

.static-content ul{
  margin:12px 0 20px 24px;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:.95rem;
  color:var(--text)
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin:40px 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:30px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:all .2s
}

.about-card:hover{
  box-shadow:var(--shadow-lg);
  border-color:var(--accent);
  transform:translateY(-4px)
}

.about-icon{
  font-size:2.5rem;
  margin-bottom:16px
}

.about-card h3{
  font-family:var(--font-head);
  font-size:1.1rem;
  font-weight:800;
  margin-bottom:12px;
  color:var(--primary);
  letter-spacing:-.02em
}

.about-card p{
  font-size:.88rem;
  color:var(--muted);
  line-height:1.65
}

/* Cookie Banner */
#cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:9999;
  background:var(--primary);
  border-top:3px solid var(--accent);
  padding:20px 0;
  box-shadow:0 -6px 24px rgba(26,26,46,.25);
  transform:translateY(100%);
  transition:transform .4s ease
}

#cookie-banner.visible{
  transform:translateY(0)
}

.cookie-inner{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap
}

.cookie-text{
  flex:1;
  font-size:.85rem;
  color:rgba(255,255,255,.85);
  min-width:220px;
  line-height:1.6
}

.cookie-text a{
  color:var(--accent-gold);
  font-weight:600
}

.cookie-btns{
  display:flex;
  gap:10px;
  flex-shrink:0
}

.cookie-accept{
  background:var(--accent);
  color:#fff;
  border:none;
  padding:10px 24px;
  border-radius:6px;
  font-size:.85rem;
  font-weight:700;
  cursor:pointer;
  transition:all .2s;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-family:var(--font-head)
}

.cookie-accept:hover{
  background:var(--accent-light);
  transform:translateY(-1px)
}

.cookie-decline{
  background:transparent;
  color:rgba(255,255,255,.8);
  border:1px solid rgba(255,255,255,.3);
  padding:9px 20px;
  border-radius:6px;
  font-size:.85rem;
  cursor:pointer;
  transition:all .2s;
  font-family:var(--font-head);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em
}

.cookie-decline:hover{
  border-color:rgba(255,255,255,.6);
  color:#fff
}

/* Footer */
footer{
  background:var(--primary);
  color:rgba(255,255,255,.75);
  padding:64px 0 32px
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:52px
}

@media(max-width:880px){
  .footer-grid{
    grid-template-columns:1fr 1fr
  }
}

@media(max-width:520px){
  .footer-grid{
    grid-template-columns:1fr
  }
}

.footer-brand .footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-head);
  font-size:1.3rem;
  font-weight:800;
  color:#fff;
  margin-bottom:14px;
  letter-spacing:-.02em
}

.footer-brand .footer-logo-img{
  width:32px;
  height:32px;
  border-radius:50%;
  object-fit:cover
}

.footer-brand .footer-logo-icon{
  width:32px;
  height:32px;
  background:var(--accent);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  color:#fff;
  font-weight:700
}

.footer-brand p{
  font-size:.85rem;
  line-height:1.7;
  color:rgba(255,255,255,.6);
  max-width:280px
}

.footer-disclaimer{
  margin-top:16px;
  font-size:.78rem;
  color:rgba(255,255,255,.45);
  line-height:1.6
}

footer h4{
  color:#fff;
  font-size:.85rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
  font-family:var(--font-head)
}

footer ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px
}

footer ul li a{
  color:rgba(255,255,255,.65);
  font-size:.85rem;
  transition:color .2s
}

footer ul li a:hover{
  color:var(--accent);
  text-decoration:none
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  font-size:.8rem;
  color:rgba(255,255,255,.4)
}

.footer-bottom a{
  color:rgba(255,255,255,.55)
}

.footer-bottom a:hover{
  color:var(--accent);
  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(26,26,46,.08);
  border-radius:4px
}

/* Responsive */
@media(max-width:768px){
  .header-inner{
    height:58px
  }
  .logo{
    font-size:1.1rem
  }
  .hero{
    padding:56px 0 48px
  }
  .section{
    padding:48px 0
  }
  .container{
    padding:0 16px
  }
  .products-grid{
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:18px
  }
  .product-layout{
    gap:28px;
    padding:32px 0
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:28px
  }
  .nav-toggle{
    display:flex
  }
  header nav{
    display:none!important;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    background:var(--primary);
    padding:10px 16px 16px;
    box-shadow:0 8px 24px rgba(26,26,46,.3);
    z-index:199
  }
  header.nav-open nav{
    display:flex!important
  }
  header nav a{
    padding:12px 14px;
    font-size:.92rem;
    border-radius:6px
  }
}

@media(max-width:480px){
  .products-grid{
    grid-template-columns:1fr
  }
  .gallery{
    position:static
  }
  .featured-grid{
    grid-template-columns:1fr
  }
}
