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

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

:root{
  --slate-900: #1a2634;
  --slate-800: #243447;
  --forest: #2e6b4f;
  --forest-light: #3d8b68;
  --ember: #c8553d;
  --ember-light: #e07856;
  --amber: #d4953a;
  --amber-light: #e8b35a;
  --cream: #faf8f5;
  --surface: #ffffff;
  --surface2: #f2efe9;
  --text: #1e2a36;
  --muted: #5e6d7a;
  --border: #e2dfd8;

  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 56px rgba(0,0,0,.15);
}

html{scroll-behavior:smooth}
body{
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a{color: var(--ember);text-decoration:none}
a:hover{color: var(--ember-light);text-decoration: none}
img{max-width:100%;display:block}
.container{max-width:1280px;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(--slate-900);
  border-bottom: 3px solid var(--amber);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: box-shadow .3s;
}

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

.logo{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
  text-decoration: none;
  transition: opacity .2s;
}

.logo:hover{opacity: .85}

.logo-img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.logo-text{
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 40%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
nav{
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a{
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}

nav a:hover{
  background: rgba(255,255,255,.1);
  color: #fff;
}

.nav-active{
  color: #fff;
  font-weight: 600;
}

/* Hamburger toggle */
.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(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)}

/* ─────────────────────────────── HERO ─────────────────────────────── */
.hero{
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: linear-gradient(135deg, var(--slate-900) 0%, #1f3541 50%, var(--slate-800) 100%);
}

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

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,38,52,.68) 0%, rgba(26,38,52,.45) 60%, rgba(44,107,79,.35) 100%);
}

.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");
}

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

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 85, 61, .15);
  border: 1px solid rgba(200, 85, 61, .35);
  color: var(--amber-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 26px;
}

.hero h1{
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.8px;
}

.hero h1 span{
  color: var(--amber-light);
  display: block;
}

.hero p{
  color: rgba(255,255,255,.80);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-stats{
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat{text-align: center}

.hero-stat-num{
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber-light);
  font-family: 'Playfair Display', serif;
}

.hero-stat-label{
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-top: 4px;
}

/* Affiliate bar */
.aff-bar{
  background: rgba(200, 85, 61, .08);
  border-bottom: 1px solid rgba(200, 85, 61, .15);
  padding: 12px 0;
  text-align: center;
  font-size: .85rem;
  color: var(--text);
}

.aff-bar strong{color: var(--ember)}

/* ─────────────────────────────── SECTION HEADINGS ─────────────────────────────── */
.section-head{
  text-align: center;
  margin-bottom: 52px;
}

.section-head h2{
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}

.section-head p{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-head .divider{
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--amber));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ─────────────────────────────── FEATURED SECTION ─────────────────────────────── */
.featured-strip{
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.featured-strip::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.015'%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");
  pointer-events: none;
}

.featured-strip .section-head{
  position: relative;
  z-index: 1;
}

.featured-strip .section-head h2{color: #fff}
.featured-strip .section-head p{color: rgba(255,255,255,.70)}
.featured-strip .divider{background: linear-gradient(90deg, var(--amber), var(--amber-light))}

.featured-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.featured-card{
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s cubic-bezier(.1, .8, .2, 1);
  display: block;
  color: inherit;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.featured-card:hover{
  transform: translateY(-8px);
  border-color: var(--amber);
  box-shadow: 0 12px 32px rgba(200, 85, 61, .15);
}

.featured-img{
  height: 220px;
  overflow: hidden;
  background: rgba(0,0,0,.2);
}

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

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

.featured-body{
  padding: 24px;
}

.featured-rank{
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber-light);
  margin-bottom: 8px;
}

.featured-title{
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.featured-stars{color: var(--amber-light);font-size: .88rem;margin-bottom: 16px;font-weight: 600}
.featured-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-light);
  font-size: .84rem;
  font-weight: 600;
  transition: gap .2s;
}

.featured-link:hover{color: var(--amber-light)}
.featured-link::after{content: '→';transition: transform .2s}
.featured-card:hover .featured-link::after{transform: translateX(3px)}

@media(max-width:980px){
  .featured-grid{grid-template-columns: 1fr;max-width: 480px;margin: 0 auto}
}

/* ─────────────────────────────── CATEGORY FILTER ─────────────────────────────── */
.category-filter-section{
  background: var(--surface2);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.filter-label{
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-pills{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.category-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.category-pill:hover{
  border-color: var(--ember);
  color: var(--ember);
}

.category-pill.active{
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
}

/* ─────────────────────────────── PRODUCT GRID ─────────────────────────────── */
.products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card{
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all .25s cubic-bezier(.1, .8, .2, 1);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.product-card:hover{
  transform: translateY(-6px);
  border-color: var(--ember);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap{
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e0d0, #f0e8d8);
}

.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(--slate-900), var(--forest));
}

.card-img-placeholder{font-size: 3.8rem;opacity: .25}

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

.card-rating-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26, 38, 52, .90);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}

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

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

.card-title{
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text);
}

.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;
}

.stars-row{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.stars-char{color: var(--amber);font-size: .95rem;letter-spacing: 1px}
.rating-num{font-weight: 700;font-size: .85rem;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(--ember);
  color: #fff;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
  border: 1.5px solid var(--ember);
}

.btn-review:hover{
  background: var(--ember-light);
  border-color: var(--ember-light);
  color: #fff;
}

/* ─────────────────────────────── PAGINATION ─────────────────────────────── */
.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.page-btn{
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  color: var(--text);
}

.page-btn:hover{
  border-color: var(--ember);
  color: var(--ember);
}

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

.page-btn.disabled{opacity: .4;pointer-events: none}
.page-nav{padding: 0 16px;width: auto;font-size: .85rem;color: var(--muted)}

/* ─────────────────────────────── COMPARE TABLE / TOP 5 ─────────────────────────────── */
.compare-section{background: var(--surface2);border-top: 1px solid var(--border)}

.compare-cards-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media(max-width:1100px){.compare-cards-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:700px){.compare-cards-grid{grid-template-columns:1fr}}

.compare-card{
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  box-shadow: var(--shadow);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.compare-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--amber));
}

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

.compare-rank{
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ember);
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.compare-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.compare-name{
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}

.compare-brand-tag{
  font-size: .7rem;
  color: var(--ember);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}

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

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

.compare-score{
  font-weight: 700;
  color: var(--text);
  font-size: .95rem;
  margin-bottom: 16px;
}

.compare-link{
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ember);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
  border: 1.5px solid var(--ember);
}

.compare-link:hover{
  background: var(--ember-light);
  border-color: var(--ember-light);
}

/* ─────────────────────────────── BRAND CLOUD ─────────────────────────────── */
.brand-cloud-section{
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.brand-cloud-label{
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 24px;
}

.brand-cloud{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.brand-tag{
  padding: 8px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  color: var(--text);
  white-space: nowrap;
}

.brand-tag:hover{
  border-color: var(--ember);
  color: var(--ember);
}

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

/* ─────────────────────────────── PRODUCT PAGE LAYOUT ─────────────────────────────── */
.page-hero{
  background: var(--surface2);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb{
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a{color: var(--ember);font-weight: 500}
.breadcrumb sep{color: var(--border)}

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

.gallery{
  position: sticky;
  top: 90px;
}

.gallery-main{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-thumb{
  width: 80px;
  height: 80px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
}

.gallery-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover{border-color: var(--ember)}
.gallery-thumb.active{border-color: var(--ember)}

/* Product Info */
.product-info{padding: 0}

.p-brand{
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ember);
  margin-bottom: 12px;
}

.p-title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}

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

.stars-char{color: var(--amber);font-size: 1.1rem;letter-spacing: 2px}
.score{font-weight: 700;font-size: 1rem;color: var(--text)}
.reviews-ct{font-size: .9rem;color: var(--muted)}

.score-bar-wrap{
  margin-bottom: 28px;
}

.score-bar-label{
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  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(--forest), var(--amber));
  border-radius: 4px;
}

.verdict-box{
  background: linear-gradient(135deg, var(--forest) .10%, var(--amber) .10%, var(--surface2) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}

.verdict-label{
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--forest);
  margin-bottom: 10px;
}

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

.cta-group{
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-read-reviews{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ember);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
  border: 1.5px solid var(--ember);
}

.btn-read-reviews:hover{
  background: var(--ember-light);
  border-color: var(--ember-light);
}

.features-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li{
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}

.features-list li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

/* ─────────────────────────────── PROS/CONS ─────────────────────────────── */
.pros-cons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px 0;
}

.pros-box, .cons-box{
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.pros-box::before{
  content: '✓ ';
  color: var(--forest);
  font-weight: 800;
  font-size: 1.1rem;
}

.cons-box::before{
  content: '✗ ';
  color: var(--ember);
  font-weight: 800;
  font-size: 1.1rem;
}

.pros-box h3, .cons-box h3{
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: -28px;
  padding-top: 28px;
}

.pros-box ul, .cons-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-box li, .cons-box li{
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.pros-box li:last-child, .cons-box li:last-child{border-bottom: none}

.pros-box li::before{
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--forest);
  font-weight: 700;
}

.cons-box li::before{
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--ember);
  font-weight: 700;
}

/* ─────────────────────────────── REVIEWS ─────────────────────────────── */
.reviews-section{
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.review-card{
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

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

.review-author{font-weight: 600;color: var(--text)}
.review-rating{color: var(--amber);font-size: 1rem;letter-spacing: 1px}
.review-date{font-size: .8rem;color: var(--muted);margin-top: 4px}

.review-text{
  color: var(--text);
  line-height: 1.7;
  font-size: .95rem;
}

/* ─────────────────────────────── RELATED PRODUCTS ─────────────────────────────── */
.related-section{
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.related-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ─────────────────────────────── FOOTER ─────────────────────────────── */
footer{
  background: var(--slate-900);
  color: #fff;
  padding: 56px 0 24px;
  border-top: 3px solid var(--amber);
  margin-top: 72px;
}

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

.footer-brand{padding-right: 20px}

.footer-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo-img{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.footer-brand p{
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 12px;
}

.footer-disclaimer{
  font-size: .8rem;
  color: rgba(255,255,255,.60);
}

footer h4{
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li{
  margin-bottom: 10px;
}

footer a{
  color: rgba(255,255,255,.70);
  font-size: .9rem;
  transition: color .2s;
}

footer a:hover{color: var(--amber-light)}

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

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

/* ─────────────────────────────── COOKIE BANNER ─────────────────────────────── */
#cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 38, 52, .97);
  color: #fff;
  padding: 24px;
  border-top: 2px solid var(--amber);
  z-index: 300;
  transform: translateY(calc(100% + 20px));
  transition: transform .4s cubic-bezier(.1, .8, .2, 1);
  backdrop-filter: blur(10px);
}

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

.cookie-content{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text{
  flex: 1;
  font-size: .9rem;
  line-height: 1.6;
  min-width: 200px;
}

.cookie-text a{color: var(--amber-light)}

.cookie-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#cookie-accept{
  background: var(--amber);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

#cookie-accept:hover{background: var(--amber-light)}

#cookie-decline{
  background: transparent;
  color: rgba(255,255,255,.80);
  border: 1.5px solid rgba(255,255,255,.30);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

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

/* ─────────────────────────────── MOBILE RESPONSIVE ─────────────────────────────── */
@media(max-width:768px){
  .nav-toggle{display: flex}

  nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--slate-800);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
  }

  header.nav-open nav{max-height: 300px}

  nav a{
    padding: 12px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  nav a:last-child{border-bottom: none}

  .product-layout{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery{position: static}

  .pros-cons{
    grid-template-columns: 1fr;
  }

  .featured-grid{grid-template-columns: 1fr}

  .products-grid{
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  .content-with-sidebar{
    grid-template-columns: 1fr;
  }

  .sidebar{display: block !important}
}

@media(max-width:480px){
  .hero h1{font-size: 1.8rem}
  .hero p{font-size: .95rem}
  .hero-stats{gap: 24px}
  .featured-grid{gap: 16px}
  .category-pills{gap: 8px}
  .products-grid{grid-template-columns: 1fr}
  .card-img-wrap{height: 160px}
  .footer-bottom{flex-direction: column;align-items: flex-start}
}

/* ─────────────────────────────── RELATED CARDS (product pages) ─────────────────────────────── */
.related-section .section-head{text-align:left;margin-bottom:28px}

.related-card{
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
  box-shadow: var(--shadow);
}
.related-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}
.related-img{
  height: 170px;
  overflow: hidden;
  background: var(--surface2);
}
.related-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.related-card:hover .related-img img{transform: scale(1.05)}
.related-img.no-img{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  opacity: .5;
}
.related-body{
  padding: 14px 16px;
}
.related-brand{
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ember);
  margin-bottom: 5px;
}
.related-title{
  font-size: .88rem;
  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(--amber);
  font-size: .82rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.related-link{
  display: inline-block;
  background: var(--ember);
  color: #fff;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s;
}
.related-link:hover{
  background: var(--ember-light);
  text-decoration: none;
  color: #fff;
}

/* ─────────────────────────────── AD PLACEMENTS ─────────────────────────────── */
.ad-placement{
  margin: 40px 0;
  text-align: center;
}
.ad-placement-inner{
  display: inline-flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.ad-unit{
  width: 300px;
  height: 250px;
  background: var(--surface2);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* ─────────────────────────────── COOKIE BANNER (legacy class aliases) ─────────────────────────────── */
.cookie-inner{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-btns{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-accept{
  background: var(--amber);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s;
}
.cookie-accept:hover{background: var(--amber-light)}
.cookie-decline{
  background: transparent;
  color: rgba(255,255,255,.80);
  border: 1.5px solid rgba(255,255,255,.30);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
}
.cookie-decline:hover{
  border-color: rgba(255,255,255,.60);
  color: #fff;
}
