/* =================================================================
   SLUMBERLY · The Art of Restful Travel
   Professional design system — typography, layout, components
   ================================================================= */

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

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

:root {
  /* Brand */
  --brand-900: #0B3D3B;
  --brand-800: #114945;
  --brand-700: #1B6A66;
  --brand-600: #2C8C87;
  --brand-500: #4FB0AA;
  --brand-50:  #E9F4F2;

  --gold-700: #B07A3C;
  --gold:     #D4A574;
  --gold-300: #ECCBA0;
  --gold-50:  #FBF5EC;

  --ink-950: #0F1A1A;
  --ink-900: #1B2727;
  --ink-700: #3D4948;
  --ink-500: #6B7775;
  --ink-300: #B8BFBE;
  --ink-100: #E5E8E7;

  --bg:        #FBF8F3;
  --surface:   #FFFFFF;
  --surface-2: #F5EFE5;
  --border:    #E3DDD2;
  --border-strong: #C8C0B2;

  --rose-700: #B6432F;
  --rose-50:  #FCEFEC;
  --leaf-700: #2F7547;
  --leaf-50:  #E9F4ED;

  /* Typography */
  --f-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Geometry */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(15, 26, 26, .04), 0 2px 6px rgba(15, 26, 26, .04);
  --sh-2: 0 4px 12px rgba(15, 26, 26, .06), 0 12px 32px rgba(15, 26, 26, .07);
  --sh-3: 0 12px 28px rgba(11, 61, 59, .14), 0 30px 60px rgba(11, 61, 59, .12);
  --sh-glow: 0 0 0 4px rgba(212, 165, 116, .18);

  --container: 1240px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink-900);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}
img { max-width: 100%; display: block; }
a { color: var(--brand-700); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-800); }

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

h1,h2,h3,h4 { font-family: var(--f-display); color: var(--ink-950); letter-spacing: -.015em; line-height: 1.18; }

/* ---------- HEADER ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--brand-900);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(11,61,59,.18);
}
.brand-mark img { width: 80%; height: 80%; object-fit: contain; filter: brightness(1.05); }
.brand-mark::after{
  content:''; position:absolute; inset:0;
  background: radial-gradient(120% 100% at 100% 0%, rgba(212,165,116,.35), transparent 55%);
  pointer-events:none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--f-display);
  font-weight: 700; font-size: 1.22rem;
  color: var(--ink-950); letter-spacing: -.02em;
  white-space: nowrap;
}
.brand-tag {
  font-size: .64rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-700); margin-top: 4px;
  white-space: nowrap;
}

nav.primary {
  display: flex; align-items: center; gap: 4px;
  justify-content: center;
}
nav.primary a {
  color: var(--ink-700); font-size: .92rem; font-weight: 500;
  padding: 9px 16px; border-radius: var(--r-sm);
  position: relative; transition: color .15s, background .15s;
}
nav.primary a:hover { color: var(--brand-800); background: var(--brand-50); }
nav.primary a.active { color: var(--brand-800); }
nav.primary a.active::after{
  content:''; position:absolute; left:16px; right:16px; bottom:2px;
  height:2px; background: var(--gold); border-radius: 2px;
}

.header-cta {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--brand-900); color: #fff;
  font-weight: 600; font-size: .88rem;
  padding: 11px 20px; border-radius: var(--r-pill);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.header-cta:hover { background: var(--brand-800); color:#fff; transform: translateY(-1px); box-shadow: var(--sh-2); }
.header-cta::after { content:'→'; transition: transform .2s; }
.header-cta:hover::after { transform: translateX(3px); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: .25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; height: 66px; }
  nav.primary { display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background: rgba(255,255,255,.98); padding: 14px 18px 22px; border-bottom: 1px solid var(--border); }
  header.site-header.nav-open nav.primary { display:flex; }
  nav.primary a { padding: 13px 14px; font-size: 1rem; border-radius: var(--r-sm); }
  .nav-toggle { display: flex; }
  .header-cta { padding: 9px 14px; font-size: .82rem; }
  .brand-name { font-size: 1rem; }
  .brand-tag { font-size: .56rem; letter-spacing: .14em; }
  .header-cta::after { content: ''; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--brand-900) 0%, var(--brand-800) 70%, var(--brand-700) 100%);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: saturate(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(212,165,116,.22), transparent 60%),
    linear-gradient(180deg, rgba(11,61,59,.55) 0%, rgba(11,61,59,.85) 100%);
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-300);
  backdrop-filter: blur(10px);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,165,116,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #fff;
  margin: 22px 0 22px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-300);
  background: linear-gradient(90deg, var(--gold-300), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin-bottom: 36px;
}
@media (max-width: 960px) { .hero p.lede { margin-left: auto; margin-right: auto; } }

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--ink-950);
  font-weight: 700; font-size: .98rem;
  border-radius: var(--r-pill);
  letter-spacing: -.005em;
  box-shadow: 0 14px 32px rgba(212,165,116,.32), 0 2px 6px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.hero-cta:hover { background: var(--gold-300); color: var(--ink-950); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(212,165,116,.42); }
.hero-cta::after { content: '→'; transition: transform .2s; }
.hero-cta:hover::after { transform: translateX(4px); }

.hero-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; margin-left: 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-weight: 600; font-size: .94rem;
  transition: background .2s, border-color .2s;
}
.hero-cta-ghost:hover { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.45); }

/* ---------- HERO LOGO MARK / FEATURE TILE ---------- */
.hero-feature {
  position: relative;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(212,165,116,.25), transparent 50%),
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  padding: 40px 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  overflow: hidden;
}
.hero-feature::before{
  content:''; position:absolute; top:-40%; left:-20%; width:140%; height:140%;
  background: conic-gradient(from 200deg at 50% 50%, transparent 0deg, rgba(212,165,116,.18) 90deg, transparent 180deg, rgba(212,165,116,.10) 270deg, transparent 360deg);
  animation: rotateAura 22s linear infinite;
  pointer-events:none;
}
@keyframes rotateAura { to { transform: rotate(360deg); } }
.hero-mark-stage {
  position: relative;
  width: 168px; height: 168px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
}
.hero-mark-stage::before, .hero-mark-stage::after{
  content:''; position:absolute; inset:0;
  border-radius: 50%;
  border: 1px dashed rgba(212,165,116,.4);
}
.hero-mark-stage::after{ inset:-18px; border-style: solid; border-color: rgba(255,255,255,.08); animation: spinSlow 32s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero-mark-disc {
  width: 132px; height: 132px;
  border-radius: 50%;
  background: linear-gradient(140deg, #fff 0%, var(--gold-50) 100%);
  display: grid; place-items: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.35), inset 0 -6px 18px rgba(176,122,60,.15);
  position: relative; z-index: 2;
}
.hero-mark-disc img { width: 78%; height: 78%; object-fit: contain; }
.hero-feature-title {
  font-family: var(--f-display);
  font-weight: 600; font-size: 1.45rem;
  color: #fff; margin-bottom: 6px; letter-spacing: -.01em;
  white-space: nowrap;
}
.hero-feature-tag {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-300);
}
.hero-feature-quote {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--f-display); font-style: italic;
  font-size: 1.02rem; color: rgba(255,255,255,.85); line-height: 1.55;
}

/* ---------- HERO TRUST RIBBON (replaces stats) ---------- */
.hero-ribbon {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-ribbon-item {
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.hero-ribbon-item:last-child { border-right: none; }
.hero-ribbon-item:hover { background: rgba(255,255,255,.04); }
.hero-ribbon-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-700));
  border-radius: 10px;
  color: var(--ink-950);
  flex-shrink: 0;
}
.hero-ribbon-text { line-height: 1.3; }
.hero-ribbon-label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 2px;
}
.hero-ribbon-value {
  font-family: var(--f-display);
  font-size: 1.02rem; font-weight: 600;
  color: #fff;
}
@media (max-width: 960px) {
  .hero-ribbon { grid-template-columns: repeat(2, 1fr); }
  .hero-ribbon-item:nth-child(2) { border-right: none; }
  .hero-ribbon-item:nth-child(1), .hero-ribbon-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 540px) {
  .hero-ribbon { grid-template-columns: 1fr; }
  .hero-ribbon-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-ribbon-item:last-child { border-bottom: none; }
}

/* ---------- DISCLOSURE ---------- */
.disclosure {
  background: var(--gold-50);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: .82rem; color: var(--ink-700);
  text-align: center; line-height: 1.55;
}
.disclosure strong { color: var(--ink-900); }

/* ---------- SECTIONS ---------- */
section { padding: 96px 0; }
.section-head {
  max-width: 720px; margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 1.04rem; color: var(--ink-700);
  line-height: 1.7;
}
.section-head .accent {
  width: 48px; height: 3px; margin: 22px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--brand-700));
  border-radius: 2px;
}

/* ---------- EDITOR'S TOP PICKS — Magazine layout ---------- */
.picks {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
  position: relative;
}
.picks::before{
  content:''; position:absolute; top:0; left:0; right:0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.picks-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 960px) { .picks-grid { grid-template-columns: 1fr; } }

.pick {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.pick:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
  border-color: var(--gold);
  text-decoration: none; color: inherit;
}
.pick-hero {
  grid-row: span 2;
}
.pick-hero .pick-img { aspect-ratio: 4/5; }
.pick-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--surface-2);
}
.pick-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.pick:hover .pick-img img { transform: scale(1.05); }
.pick-rank {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,61,59,.92);
  color: var(--gold-300);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.pick-rank-num {
  font-family: var(--f-display);
  font-size: 1.04rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pick-body {
  padding: 24px 26px 26px;
  flex: 1; display: flex; flex-direction: column;
}
.pick-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
}
.pick-meta .pipe { color: var(--ink-300); font-weight: 400; }
.pick-title {
  font-family: var(--f-display);
  font-weight: 600; font-size: 1.22rem;
  line-height: 1.3; color: var(--ink-950);
  margin-bottom: 14px;
}
.pick-hero .pick-title { font-size: 1.55rem; }
.pick-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pick-rating .stars { color: var(--gold); letter-spacing: 1px; }
.pick-rating .score {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.05rem;
}
.pick-rating .score-suffix { color: var(--ink-500); font-size: .82rem; }
.pick-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.pick-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem;
  color: var(--brand-800);
  transition: gap .2s;
}
.pick-cta::after { content: '→'; transition: transform .2s; }
.pick:hover .pick-cta { color: var(--brand-900); }
.pick:hover .pick-cta::after { transform: translateX(4px); }
.pick-price {
  font-family: var(--f-display);
  font-weight: 700; font-size: 1.05rem;
  color: var(--ink-900);
}
.pick-price .from { color: var(--ink-500); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-right: 4px; }

/* ---------- PRODUCT CARDS GRID ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 1180px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: 1fr; } }

.pcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: var(--brand-500);
  text-decoration: none; color: inherit;
}
.pcard-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.pcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.06); }

.pcard-badges {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between;
  pointer-events: none;
}
.pbadge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.pbadge.brand { background: rgba(255,255,255,.92); color: var(--brand-800); }
.pbadge.deal  { background: var(--rose-700); color: #fff; }
.pbadge.value { background: var(--leaf-700); color: #fff; }
.pbadge.editor{ background: var(--gold); color: var(--ink-950); }
.pbadge.new   { background: var(--brand-900); color: var(--gold-300); }

.pcard-body {
  padding: 18px 20px 20px;
  flex: 1; display: flex; flex-direction: column;
  gap: 8px;
}
.pcard-cat {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700);
}
.pcard-title {
  font-family: var(--f-display);
  font-size: 1.04rem; font-weight: 600;
  line-height: 1.32; color: var(--ink-950);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.7em;
}
.pcard-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem;
}
.pcard-rating .stars { color: var(--gold); letter-spacing: 1px; }
.pcard-rating .num { font-weight: 700; color: var(--ink-900); }
.pcard-rating .out { color: var(--ink-500); font-size: .76rem; }

.pcard-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.pcard-price .est-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-500);
}
.pcard-price .est {
  font-family: var(--f-display);
  font-weight: 700; font-size: 1.08rem;
  color: var(--ink-950);
}
.pcard-price .strike {
  text-decoration: line-through;
  color: var(--ink-500);
  font-size: .85rem;
}

.pcard-foot {
  margin-top: 14px;
  display: inline-flex; align-items: center; justify-content: space-between;
  font-size: .85rem; font-weight: 600;
  color: var(--brand-700);
}
.pcard-foot::after { content: '→'; transition: transform .2s; }
.pcard:hover .pcard-foot::after { transform: translateX(4px); }

/* Bookmark / Editor's pick ribbon (corner) */
.pcard-ribbon {
  position: absolute; top: 14px; right: -36px;
  width: 130px; height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-700));
  color: var(--ink-950);
  display: grid; place-items: center;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  transform: rotate(35deg);
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
  z-index: 3;
}

/* ---------- CONTENT WITH SIDEBAR ---------- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1080px) { .content-with-sidebar { grid-template-columns: 1fr; } .sidebar { display: none; } }
.sidebar { position: sticky; top: 96px; }
.sb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  box-shadow: var(--sh-1);
  margin-bottom: 22px;
}
.sb-title {
  font-family: var(--f-display); font-weight: 600; font-size: 1.05rem;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-50);
  display: flex; align-items: center; gap: 8px;
}
.sb-title .num { color: var(--gold); font-weight: 700; }
.sb-list { display: flex; flex-direction: column; gap: 14px; }
.sb-item {
  display: grid; grid-template-columns: 28px 56px 1fr; gap: 12px;
  align-items: center;
  text-decoration: none; color: inherit;
  padding: 6px 0;
  transition: opacity .15s;
}
.sb-item:hover { text-decoration: none; color: inherit; opacity: .8; }
.sb-rank {
  font-family: var(--f-display); font-weight: 800; font-size: 1.1rem;
  color: var(--gold-700);
}
.sb-img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.sb-info { min-width: 0; }
.sb-name { font-size: .82rem; font-weight: 600; color: var(--ink-900); line-height: 1.32;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sb-stars { color: var(--gold); font-size: .74rem; margin-top: 2px; }
.sb-stars .num { color: var(--ink-700); font-weight: 600; margin-left: 4px; }

/* ---------- COMPARE TABLE ---------- */
.compare-section { background: var(--surface-2); }
.compare-wrap {
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--sh-1);
}
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare-table thead th {
  background: var(--brand-900); color: #fff;
  text-align: left; padding: 16px 18px;
  font-family: var(--f-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.compare-table tbody td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr { transition: background .15s; cursor: pointer; }
.compare-table tbody tr:hover { background: var(--gold-50); }
.compare-rank {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.4rem; color: var(--gold-700);
  text-align: center;
}
.compare-img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.compare-name {
  font-family: var(--f-display); font-weight: 600;
  font-size: .98rem; line-height: 1.3; color: var(--ink-950);
}
.compare-brand-tag {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 2px;
}
.compare-bar {
  height: 6px; background: var(--ink-100); border-radius: 3px;
  margin-top: 6px; overflow: hidden;
}
.compare-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-700), var(--gold));
}
.compare-score { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--brand-800); }
.compare-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-900); color: #fff;
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600;
  white-space: nowrap;
}
.compare-link:hover { background: var(--brand-800); color:#fff; text-decoration:none; }

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  margin-bottom: 28px;
}
.filter-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-500);
}
.filter-select {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-family: var(--f-body); font-size: .88rem;
  color: var(--ink-900);
  cursor: pointer;
  transition: border-color .2s;
}
.filter-select:focus { outline: none; border-color: var(--brand-700); }
.filter-reset {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 14px;
  font-size: .82rem; color: var(--ink-700);
  cursor: pointer; transition: all .2s;
}
.filter-reset:hover { border-color: var(--brand-700); color: var(--brand-700); }
.filter-results { margin-left: auto; font-size: .82rem; color: var(--ink-500); }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-top: 48px;
}
.page-btn {
  min-width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink-900); font-weight: 600; font-size: .9rem;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.page-btn:hover, .page-btn.active { background: var(--brand-900); color: #fff; border-color: var(--brand-900); }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ---------- PRODUCT PAGE ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--brand-900) 0%, var(--brand-800) 100%);
  color: #fff;
  padding: 36px 0 32px;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(700px 250px at 90% 0%, rgba(212,165,116,.18), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.65);
}
.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 4px; }

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 56px 0;
}
@media (max-width: 980px) { .product-layout { grid-template-columns: 1fr; gap: 36px; } }

/* Gallery */
.gallery { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 980px) { .gallery { position: static; } }
.gallery-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 4/3;
  background: var(--surface-2);
  position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-flag {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold);
  color: var(--ink-950);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 76px; height: 76px;
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  transition: border-color .2s, transform .2s;
  opacity: .7;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); opacity: 1; transform: scale(1.04); }

/* Info */
.product-info .p-cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.product-info .p-cat::before { content: '◆'; color: var(--gold); }
.p-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600; line-height: 1.18;
  letter-spacing: -.018em;
  color: var(--ink-950);
  margin-bottom: 18px;
}
.p-rating-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 26px; padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.p-rating-row .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 1px; }
.p-rating-row .score { font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; color: var(--ink-950); }
.p-rating-row .verdict-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-500);
}

/* Score chips: 4 mini stat blocks */
.scorechips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}
@media (max-width: 540px) { .scorechips { grid-template-columns: repeat(2, 1fr); } }
.scorechip {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.scorechip .label {
  display: block;
  font-size: .64rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.scorechip .val {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.2rem; color: var(--brand-800);
  line-height: 1;
}

/* Verdict */
.verdict {
  background: linear-gradient(135deg, var(--gold-50) 0%, var(--brand-50) 100%);
  border: 1px solid var(--gold-300);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 26px;
  position: relative;
}
.verdict::before{
  content:'“'; position:absolute; top:-2px; left:18px;
  font-family: var(--f-display);
  font-size: 4.2rem; line-height: 1; color: var(--gold);
  opacity: .35;
}
.verdict-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.verdict-label::before { content: '✦'; color: var(--gold); font-size: 1rem; }
.verdict p { font-size: .94rem; color: var(--ink-900); line-height: 1.7; }

/* Price block */
.priceblock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 22px;
  box-shadow: var(--sh-1);
}
.priceblock-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.priceblock .label-est {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-500);
}
.priceblock .price {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.6rem; color: var(--ink-950);
}
.priceblock .strike {
  font-family: var(--f-body); font-weight: 500;
  font-size: 1rem; color: var(--ink-500);
  text-decoration: line-through;
}
.priceblock .save {
  background: var(--leaf-50); color: var(--leaf-700);
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700;
}
.priceblock .meta {
  font-size: .8rem; color: var(--ink-500);
  margin-top: 4px;
}

/* CTA */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.btn-buy {
  flex: 1 1 220px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold);
  color: var(--ink-950);
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: .98rem;
  box-shadow: 0 8px 22px rgba(212,165,116,.34);
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn-buy:hover { background: var(--gold-300); color: var(--ink-950); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212,165,116,.44); text-decoration: none; }
.btn-buy::before { content: '→'; transform: rotate(-45deg); display: inline-block; }
.btn-buy.alt { background: var(--brand-900); color: #fff; box-shadow: 0 8px 22px rgba(11,61,59,.3); }
.btn-buy.alt:hover { background: var(--brand-800); color: #fff; box-shadow: 0 14px 30px rgba(11,61,59,.4); }
.btn-secondary {
  flex: 1 1 180px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  color: var(--brand-800);
  padding: 16px 22px;
  border: 1.5px solid var(--brand-800);
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .92rem;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--brand-900); color: #fff; text-decoration: none; }

.cta-disclosure {
  font-size: .76rem; color: var(--ink-500);
  font-style: italic; margin: 4px 0 24px;
  line-height: 1.55;
}

/* Features */
.features { margin-bottom: 30px; }
.features h3 {
  font-family: var(--f-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 14px;
}
.features ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
@media (max-width: 600px) { .features ul { grid-template-columns: 1fr; } }
.features li {
  position: relative;
  padding-left: 26px;
  font-size: .92rem; color: var(--ink-900); line-height: 1.55;
}
.features li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 50%;
  font-size: .7rem; font-weight: 800;
}

/* Pros / Cons */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin: 0 0 56px;
}
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }
.pc-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--sh-1);
}
.pros-box { border-top: 4px solid var(--leaf-700); }
.cons-box { border-top: 4px solid var(--rose-700); }
.pc-box h3 {
  font-family: var(--f-body); font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.pros-box h3 { color: var(--leaf-700); }
.cons-box h3 { color: var(--rose-700); }
.pc-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pc-box li { position: relative; padding-left: 26px; font-size: .92rem; line-height: 1.55; color: var(--ink-900); }
.pros-box li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  background: var(--leaf-50); color: var(--leaf-700);
  border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: .7rem;
}
.cons-box li::before {
  content: '×'; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  background: var(--rose-50); color: var(--rose-700);
  border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: .9rem;
}

/* Description */
.product-desc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 38px;
  margin-bottom: 56px;
}
.product-desc h2 {
  font-family: var(--f-display);
  font-size: 1.45rem; font-weight: 600; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 2px solid var(--gold-50);
  display: flex; align-items: center; gap: 10px;
}
.product-desc h2::before {
  content: ''; display: inline-block;
  width: 6px; height: 22px;
  background: var(--gold); border-radius: 3px;
}
.product-desc p { color: var(--ink-700); margin-bottom: 16px; font-size: .96rem; line-height: 1.78; }
.product-desc p:last-child { margin-bottom: 0; }

/* Diagram block */
.diagram-section {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  margin: 0 calc(50% - 50vw) 56px;
}
.diagram-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.diagram-head { margin-bottom: 32px; max-width: 720px; }
.diagram-head .eyebrow { display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 10px; }
.diagram-head h2 { font-size: 1.6rem; line-height: 1.2; margin-bottom: 6px; }
.diagram-head p { color: var(--ink-700); font-size: .95rem; line-height: 1.7; }

.diagram-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 800px) { .diagram-grid { grid-template-columns: 1fr; } }

/* Bar chart for sub-scores */
.dia-bars {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--sh-1);
}
.dia-bars h3 {
  font-family: var(--f-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 18px;
}
.dia-bar { margin-bottom: 16px; }
.dia-bar:last-child { margin-bottom: 0; }
.dia-bar-head { display: flex; justify-content: space-between; font-size: .86rem; margin-bottom: 6px; }
.dia-bar-label { font-weight: 600; color: var(--ink-900); }
.dia-bar-val { font-family: var(--f-display); font-weight: 700; color: var(--brand-800); }
.dia-bar-track { height: 10px; background: var(--ink-100); border-radius: 5px; overflow: hidden; }
.dia-bar-fill {
  height: 100%; border-radius: 5px;
  background: linear-gradient(90deg, var(--brand-700), var(--gold));
  transition: width 1s ease;
}

/* Radar / star polygon — pure svg illustration */
.dia-radar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--sh-1);
  display: flex; flex-direction: column; align-items: center;
}
.dia-radar h3 {
  font-family: var(--f-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 16px; text-align: center;
}
.dia-radar svg { width: 100%; max-width: 320px; height: auto; }

/* Reviews */
.reviews-section { margin-bottom: 64px; }
.reviews-head {
  display: flex; align-items: end; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-50);
}
.reviews-head h2 {
  font-family: var(--f-display); font-size: 1.45rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.reviews-head h2::before {
  content: ''; display: inline-block;
  width: 6px; height: 22px; background: var(--gold); border-radius: 3px;
}
.reviews-summary {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--ink-700);
}
.reviews-summary .big {
  font-family: var(--f-display); font-weight: 700; font-size: 1.4rem;
  color: var(--ink-950);
}
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--sh-1);
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.reviewer-name { font-weight: 600; color: var(--ink-950); font-size: .92rem; }
.review-date { font-size: .76rem; color: var(--ink-500); }
.review-stars { color: var(--gold); font-size: .9rem; margin-bottom: 8px; letter-spacing: 1px; }
.review-title { font-weight: 600; font-size: .92rem; color: var(--ink-950); margin-bottom: 6px; }
.review-text { font-size: .88rem; color: var(--ink-700); line-height: 1.65; }

/* Related */
.related-section { background: var(--surface-2); padding: 80px 0; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 880px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }

/* Static pages */
.static-hero {
  background: linear-gradient(180deg, var(--brand-900) 0%, var(--brand-800) 100%);
  color: #fff;
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.static-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(700px 320px at 80% 20%, rgba(212,165,116,.20), transparent 60%);
}
.static-hero .container { position: relative; z-index: 2; }
.static-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; font-weight: 600; line-height: 1.15;
}
.static-hero p { color: rgba(255,255,255,.78); margin-top: 12px; font-size: 1.05rem; max-width: 620px; }

.static-content { max-width: 800px; margin: 0 auto; padding: 64px 24px 88px; }
.static-content h2 {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 600;
  margin: 42px 0 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-50);
  display: flex; align-items: center; gap: 10px;
}
.static-content h2::before {
  content: ''; display: inline-block;
  width: 5px; height: 22px; background: var(--gold); border-radius: 3px;
}
.static-content p { margin-bottom: 16px; line-height: 1.78; color: var(--ink-700); font-size: .98rem; }
.static-content ul { margin: 14px 0 22px 22px; display: flex; flex-direction: column; gap: 8px; font-size: .96rem; color: var(--ink-700); line-height: 1.68; }
.static-content strong { color: var(--ink-950); }

.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin: 36px 0;
}
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  box-shadow: var(--sh-1);
  transition: transform .2s, box-shadow .2s;
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.about-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-700));
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; font-size: 1.4rem;
}
.about-card h3 { font-family: var(--f-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.about-card p { font-size: .88rem; color: var(--ink-700); line-height: 1.65; }

/* Cookie banner */
#cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 9999;
  max-width: 860px; margin: 0 auto;
  background: var(--ink-950);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--r);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  transform: translateY(140%);
  transition: transform .35s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: .85rem; color: rgba(255,255,255,.82); min-width: 200px; }
.cookie-text a { color: var(--gold-300); }
.cookie-btns { display: flex; gap: 8px; }
.cookie-accept {
  background: var(--gold); color: var(--ink-950);
  border: none; padding: 9px 18px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .82rem; cursor: pointer;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: .82rem; cursor: pointer;
}

/* Footer */
footer.site-footer {
  background: var(--ink-950);
  color: rgba(255,255,255,.7);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
footer.site-footer::after {
  content: ''; position: absolute; bottom: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(212,165,116,.06), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative; z-index: 2;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.f-brand .f-brand-row {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.f-brand .f-mark {
  width: 42px; height: 42px;
  background: var(--brand-900);
  border-radius: 12px;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.f-brand .f-mark img { width: 80%; height: 80%; object-fit: contain; }
.f-brand .f-mark::after{
  content:''; position:absolute; inset:0;
  background: radial-gradient(120% 100% at 100% 0%, rgba(212,165,116,.35), transparent 55%);
}
.f-brand .f-name {
  font-family: var(--f-display);
  font-weight: 700; font-size: 1.22rem;
  color: #fff; letter-spacing: -.02em;
  white-space: nowrap;
}
.f-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 320px; margin-bottom: 14px; }
.f-disclaim {
  font-size: .78rem; color: rgba(255,255,255,.45);
  line-height: 1.6;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  max-width: 360px;
}

footer h4 {
  color: #fff; font-family: var(--f-body);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  color: rgba(255,255,255,.65);
  font-size: .9rem; transition: color .15s;
}
footer ul a:hover { color: var(--gold-300); text-decoration: none; }

.f-news { display: flex; flex-direction: column; gap: 10px; }
.f-news p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.f-news .badge-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px;
}
.f-trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-pill);
  font-size: .74rem; color: var(--gold-300); font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: .82rem; color: rgba(255,255,255,.45);
  position: relative; z-index: 2;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-300); text-decoration: none; }

/* Ads */
.ad-placement { margin: 56px 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; }

/* Responsive niceties */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 76px; }
  .container { padding: 0 18px; }
  .product-desc { padding: 26px 22px; }
  .product-layout { padding: 36px 0; }
}

/* Mobile product card list (reflow to horizontal) */
@media (max-width: 480px) {
  .pcard { flex-direction: row; max-height: none; }
  .pcard-img { width: 130px; min-width: 130px; aspect-ratio: 1/1; }
  .pcard-body { padding: 14px 16px; }
  .pcard-title { font-size: .96rem; min-height: 0; -webkit-line-clamp: 2; }
  .pcard-foot { margin-top: 10px; font-size: .82rem; }
  .pcard-price { padding-top: 8px; }
  .pcard-price .est { font-size: 1rem; }
}

/* Empty state */
.pg-empty {
  text-align: center; padding: 56px 24px;
  background: var(--surface); border: 1px dashed var(--border-strong);
  border-radius: var(--r); color: var(--ink-500); font-size: .95rem;
  margin-top: 24px;
}
.pg-empty-btn {
  background: var(--brand-900); color: #fff;
  border: none; border-radius: var(--r-pill);
  padding: 10px 18px; margin-left: 10px;
  cursor: pointer; font-size: .85rem; font-weight: 600;
}

/* Brand cloud */
.brand-cloud-section { background: var(--surface); padding: 38px 0; border-bottom: 1px solid var(--border); }
.brand-cloud-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-500); text-align: center; margin-bottom: 16px;
}
.brand-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.brand-tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600;
  color: var(--ink-700);
  background: var(--bg);
  cursor: pointer;
  transition: all .18s;
  user-select: none;
}
.brand-tag:hover { border-color: var(--brand-700); color: var(--brand-700); background: var(--brand-50); }
.brand-tag.active { background: var(--brand-900); border-color: var(--brand-900); color: #fff; }
