/* ============================================================
   DESIGN 4 — Aurora Glass SaaS
   Pastel gradient blobs, frosted glass cards, rose-purple gradients
   ============================================================ */

:root {
  --bg:        #fef8f1;
  --ink:       #1a1532;
  --ink-2:     #3f3a5c;
  --ink-3:     #6b6683;
  --ink-4:     #a09cb5;
  --glass:     rgba(255,255,255,0.65);
  --glass-2:   rgba(255,255,255,0.45);
  --glass-b:   rgba(255,255,255,0.85);
  --line:      rgba(26,21,50,0.08);
  --line-2:    rgba(26,21,50,0.14);
  --rose:      #f472b6;
  --rose-d:    #ec4899;
  --purple:    #a855f7;
  --purple-d:  #9333ea;
  --indigo:    #6366f1;
  --indigo-d:  #4f46e5;
  --mint:      #6ee7b7;
  --sky:       #7dd3fc;
  --amber:     #fbbf24;
  --peach:     #fda4af;
  --grad:      linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #6366f1 100%);
  --grad-soft: linear-gradient(135deg, rgba(244,114,182,0.15), rgba(168,85,247,0.12), rgba(99,102,241,0.15));
  --display:   'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --sans:      'Inter', system-ui, -apple-system, sans-serif;
  --radius:    24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* Aurora background blobs */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 15% 10%, rgba(244,114,182,0.28), transparent 60%),
    radial-gradient(ellipse 600px 500px at 85% 30%, rgba(168,85,247,0.22), transparent 60%),
    radial-gradient(ellipse 700px 400px at 50% 85%, rgba(125,211,252,0.25), transparent 60%),
    radial-gradient(ellipse 500px 400px at 90% 90%, rgba(251,191,36,0.18), transparent 60%),
    radial-gradient(ellipse 400px 300px at 10% 70%, rgba(110,231,183,0.18), transparent 60%);
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  z-index: 0;
}
.wrap { position: relative; z-index: 1; }

.display { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Glass base */
.glass {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(26,21,50,0.04),
    0 8px 24px rgba(26,21,50,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* === NAV === */
.nav-shell {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 24px;
}
.nav {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: 100px;
  padding: 10px 18px 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow:
    0 4px 24px rgba(26,21,50,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-logo img { height: 55px; width: auto; max-width: 240px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.5); color: var(--ink); }
.nav-links a.active {
  background: var(--ink);
  color: #fff;
}
.nav-cta {
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(168,85,247,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(168,85,247,0.45); color: #fff; }
.nav-hamburger {
  display: none;
  padding: 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line-2);
  font-size: 18px;
}

/* === HERO === */
.hero {
  padding: 80px 24px 40px;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-b);
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(26,21,50,0.06);
}
.hero-badge-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-h1 span { font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(168,85,247,0.38), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(168,85,247,0.5), inset 0 1px 0 rgba(255,255,255,0.3); color: #fff; }
.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  color: var(--ink);
  border: 1px solid var(--glass-b);
  box-shadow: 0 4px 14px rgba(26,21,50,0.06);
}
.btn-glass:hover { background: rgba(255,255,255,0.8); transform: translateY(-2px); }

/* Hero floating product card */
.hero-float {
  margin: 56px auto 0;
  max-width: 880px;
  position: relative;
}
.hero-float-card {
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  box-shadow:
    0 2px 4px rgba(26,21,50,0.04),
    0 24px 60px rgba(26,21,50,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
}
.hero-float-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(244,114,182,0.4), rgba(168,85,247,0.3), rgba(99,102,241,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-float-img {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(244,114,182,0.15), rgba(168,85,247,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.hero-float-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(168,85,247,0.25)); }
.hero-float-pill {
  position: absolute;
  top: 18px; left: 18px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(26,21,50,0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-float-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
}
.hero-float-cat { font-size: 12px; font-weight: 500; color: var(--purple-d); letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 12px; }
.hero-float-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.hero-float-desc { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-bottom: 24px; }
.hero-float-foot { display: flex; align-items: center; gap: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-float-price {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-float-price s { font-size: 18px; color: var(--ink-4); margin-left: 8px; font-weight: 400; }
.hero-float-score {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.score-gauge { width: 68px; height: 68px; position: relative; }
.score-gauge svg { width: 68px; height: 68px; transform: rotate(-90deg); }
.score-gauge-bg { fill: none; stroke: rgba(26,21,50,0.08); stroke-width: 6; }
.score-gauge-fill { fill: none; stroke: url(#gaugeGrad); stroke-width: 6; stroke-linecap: round; }
.score-gauge-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-gauge-val { font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1; }
.score-gauge-max { font-size: 9px; color: var(--ink-3); }

/* === STATS CHIPS === */
.stats-chips {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 24px 20px;
}
.stat-chip {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-b);
  border-radius: 100px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(26,21,50,0.05);
}
.stat-chip-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.stat-chip-num {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-chip-label { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

/* === SECTION HEAD === */
.section-head {
  padding: 80px 24px 32px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 100px;
  margin-bottom: 18px;
  color: var(--purple-d);
  letter-spacing: 0.02em;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.section-title span { font-style: italic; font-weight: 400; }
.section-sub { font-size: 17px; color: var(--ink-2); line-height: 1.55; max-width: 560px; margin: 0 auto; }

/* === PRODUCT GRID === */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 24px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.card {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.25, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 4px rgba(26,21,50,0.03), 0 12px 32px rgba(26,21,50,0.06);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(26,21,50,0.03), 0 24px 50px rgba(26,21,50,0.14);
  border-color: rgba(168,85,247,0.25);
}
.card-img {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(244,114,182,0.1), rgba(168,85,247,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.card-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(168,85,247,0.15)); transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(26,21,50,0.08);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.card-tag.grad {
  background: var(--grad);
  color: #fff;
}
.card-tag {
    z-index: 9;
}
.card-tag.rose { background: rgba(236,72,153,0.12); color: var(--rose-d); }
.card-tag.mint { background: rgba(22,163,74,0.12); color: #15803d; }
.card-tag.sky  { background: rgba(56,189,248,0.12); color: #0284c7; }
.card-cat {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  min-height: 44px;
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.card-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.card-price s { font-size: 13px; color: var(--ink-4); margin-left: 6px; font-weight: 400; }
.card-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--grad-soft);
  border: 1px solid rgba(168,85,247,0.22);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-d);
}
.card-score-pill::before { content: '★'; color: var(--amber); }

/* === CATEGORY PAGE === */
.breadcrumb {
  padding: 30px 24px 0;
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--purple-d); font-weight: 500; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rose-d); }
.breadcrumb .sep { color: var(--ink-4); }

.cat-hero {
  padding: 40px 24px 30px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.cat-hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.cat-hero h1 span { font-style: italic; font-weight: 400; }
.cat-hero p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.cat-hero-stats { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 40px 24px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.filter {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 92px;
  align-self: start;
  box-shadow: 0 4px 16px rgba(26,21,50,0.06);
}
.filter-head {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.filter-section { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-label { font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.filter-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { background: #fff; color: var(--ink); }
.filter-chip.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(168,85,247,0.3);
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.2s;
}
.filter-check:hover { color: var(--ink); }
.filter-check input { accent-color: var(--purple-d); width: 15px; height: 15px; }
.filter-check .count {
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-3);
  background: rgba(168,85,247,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}
.filter-range { width: 100%; accent-color: var(--purple-d); }
.filter-range-vals {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding: 14px 22px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-b);
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(26,21,50,0.05);
  flex-wrap: wrap;
  gap: 12px;
}
.cat-count { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.cat-count em { color: var(--purple-d); font-style: normal; font-weight: 600; }
.cat-sort select {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 8px 32px 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M2 4l4 4 4-4' stroke='%231a1532' stroke-width='1.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
.pagination button {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all 0.25s;
  backdrop-filter: blur(20px);
}
.pagination button:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,21,50,0.1); }
.pagination button.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 6px 18px rgba(168,85,247,0.4); }

/* === REVIEW PAGE === */
.review-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px 24px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.review-main { min-width: 0; }

.review-hero {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-xl);
  padding: 44px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 2px 4px rgba(26,21,50,0.04), 0 20px 48px rgba(26,21,50,0.1);
  position: relative;
}
.review-hero-img {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(244,114,182,0.14), rgba(168,85,247,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.review-hero-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(168,85,247,0.25)); }
.review-hero-pill {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--grad);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(168,85,247,0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 9;
}
.review-cat { font-size: 12px; font-weight: 600; color: var(--purple-d); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.review-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.review-title span { font-style: italic; font-weight: 400; }
.review-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.review-meta strong { color: var(--ink); font-weight: 600; }
.review-score-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.score-big {
  font-family: var(--display);
  font-size: 68px;
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.score-big-denom { font-size: 22px; color: var(--ink-3); font-weight: 400; -webkit-text-fill-color: var(--ink-3); }
.score-stars { color: var(--amber); font-size: 18px; letter-spacing: 3px; margin-bottom: 4px; }
.score-stars-label { font-size: 12px; color: var(--ink-3); }
.review-price-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.review-price-big {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.review-price-big s { font-size: 18px; color: var(--ink-4); margin-left: 8px; font-weight: 400; }
.review-save-tag {
  background: rgba(22,163,74,0.14);
  color: #15803d;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Content blocks */
.block {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 22px;
  box-shadow: 0 2px 4px rgba(26,21,50,0.03), 0 12px 32px rgba(26,21,50,0.06);
}
.block h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.block h2 .icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(168,85,247,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.block h2 span { font-style: italic; font-weight: 400; }
.block p { font-size: 16px; line-height: 1.75; color: var(--ink-2); margin-bottom: 14px; }
.block p:last-child { margin-bottom: 0; }
.block p strong { color: var(--ink); font-weight: 600; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  background: linear-gradient(135deg, rgba(244,114,182,0.08), rgba(168,85,247,0.05));
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: all 0.3s;
}
.feature:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(168,85,247,0.12); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: #fff;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(168,85,247,0.18);
}
.feature-title { font-family: var(--display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Scores */
.scores { display: flex; flex-direction: column; gap: 18px; margin: 8px 0 0; }
.score-row { display: grid; grid-template-columns: 140px 1fr 50px; gap: 16px; align-items: center; }
.score-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.score-bar { height: 8px; background: rgba(26,21,50,0.06); border-radius: 100px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 100px; background: var(--grad); }
.score-val {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Pros / Cons */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.verdict-col {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 28px;
}
.verdict-col h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.verdict-col.wins h3 { color: #15803d; }
.verdict-col.weak h3 { color: var(--rose-d); }
.verdict-col ul li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 10px 0 10px 28px;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.verdict-col ul li:last-child { border-bottom: none; }
.verdict-col.wins ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(22,163,74,0.14);
  color: #15803d;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  line-height: 18px;
}
.verdict-col.weak ul li::before {
  content: '×';
  position: absolute; left: 0; top: 10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(236,72,153,0.12);
  color: var(--rose-d);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 17px;
}

/* Specs */
.specs { width: 100%; border-collapse: collapse; }
.specs tr { border-bottom: 1px solid var(--line); }
.specs tr:last-child { border-bottom: none; }
.specs td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.specs td:first-child { color: var(--ink-3); font-weight: 500; width: 42%; font-size: 13px; }
.specs td:last-child { color: var(--ink); font-weight: 600; font-family: var(--display); }

/* FAQ */
.faq-item {
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--glass-b);
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.25s;
}
.faq-item:hover { background: rgba(255,255,255,0.7); }
.faq-item.open { background: var(--glass); border-color: rgba(168,85,247,0.25); }
.faq-q {
  width: 100%;
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  gap: 14px;
}
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(168,85,247,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--purple-d);
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-q-icon { background: var(--grad); color: #fff; transform: rotate(45deg); }
.faq-a { padding: 0 26px 22px; font-size: 14px; line-height: 1.7; color: var(--ink-2); display: none; }
.faq-item.open .faq-a { display: block; }

/* Reader reviews */
.user-reviews { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.user-review {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.25s;
}
.user-review:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(26,21,50,0.08); }
.user-review-stars { color: var(--amber); font-size: 13px; letter-spacing: 1.5px; margin-bottom: 12px; }
.user-review-text { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin-bottom: 14px; }
.user-review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
}
.user-review-name { color: var(--ink); font-weight: 600; }
.user-review-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

/* Verdict banner */
.verdict-banner {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  margin: 28px 0;
  box-shadow: 0 4px 8px rgba(26,21,50,0.04), 0 28px 64px rgba(26,21,50,0.12);
  position: relative;
  overflow: hidden;
}
.verdict-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(168,85,247,0.12), transparent 70%);
  pointer-events: none;
}
.verdict-banner > * { position: relative; }
.verdict-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(168,85,247,0.35);
}
.verdict-score-big {
  font-family: var(--display);
  font-size: 108px;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.verdict-score-big sub { font-size: 32px; -webkit-text-fill-color: var(--ink-3); vertical-align: baseline; }
.verdict-stars { font-size: 26px; color: var(--amber); letter-spacing: 4px; margin-bottom: 18px; }
.verdict-banner h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.verdict-banner h2 span { font-style: italic; font-weight: 400; }
.verdict-banner p { font-size: 16px; color: var(--ink-2); line-height: 1.65; max-width: 540px; margin: 0 auto 28px; }

/* Sidebar */
.side { position: sticky; top: 92px; align-self: start; display: flex; flex-direction: column; gap: 20px; }
.side-buy {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(26,21,50,0.06), 0 14px 36px rgba(26,21,50,0.1);
  position: relative;
}
.side-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(244,114,182,0.3), rgba(168,85,247,0.2), rgba(99,102,241,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.side-price {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.side-price s { font-size: 18px; color: var(--ink-4); margin-left: 8px; font-weight: 400; }
.side-save {
  display: inline-block;
  background: rgba(22,163,74,0.14);
  color: #15803d;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.side-cta {
  display: block;
  width: 100%;
  background: var(--grad);
  color: #fff;
  border-radius: 100px;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 6px 20px rgba(168,85,247,0.4);
  transition: all 0.25s;
  margin-bottom: 10px;
}
.side-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(168,85,247,0.5); color: #fff; }
.side-note { font-size: 11px; color: var(--ink-3); line-height: 1.6; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 12px; }

.side-related {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.side-related h4 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.side-related-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.side-related-item:last-child { border-bottom: none; }
.side-related-item img {
  width: 52px; height: 52px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(244,114,182,0.1), rgba(168,85,247,0.06));
  border-radius: 12px;
  padding: 6px;
}
.side-related-title { font-family: var(--display); font-size: 13px; font-weight: 500; line-height: 1.3; margin-bottom: 2px; }
.side-related-price { font-size: 12px; color: var(--ink-3); }
.side-related-price em { color: var(--purple-d); font-weight: 600; font-style: normal; }

/* === FOOTER === */
.footer {
  padding: 80px 24px 32px;
  margin-top: 80px;
  position: relative;
}
.footer-inner {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-xl);
  padding: 60px;
  max-width: 1240px;
  margin: 0 auto;
  box-shadow: 0 4px 14px rgba(26,21,50,0.06), 0 20px 48px rgba(26,21,50,0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.footer-brand span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.footer-col p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.footer-col-title { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--ink-3); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple-d); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { margin-left: 18px; color: var(--ink-3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--purple-d); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-shell { padding: 0 16px; }
  .hero-float-card { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 16px 50px; }
  .cat-layout { grid-template-columns: 1fr; padding: 30px 16px 50px; }
  .filter { position: static; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .review-wrap { grid-template-columns: 1fr; padding: 30px 16px 50px; }
  .side { position: static; }
  .review-hero { grid-template-columns: 1fr; padding: 32px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { padding: 44px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .nav { padding: 8px 12px 8px 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: inline-flex; }
  .nav-logo img { height: 55px; max-width: 240px; }
  .hero { padding: 50px 16px 20px; }
  .hero-h1 { font-size: 42px; }
  .hero-sub { font-size: 16px; }
  .hero-float-card { padding: 24px; margin: 40px auto 0; }
  .hero-float-title { font-size: 22px; }
  .hero-float-price { font-size: 28px; }
  .stats-chips { padding: 30px 16px 10px; gap: 10px; }
  .stat-chip { padding: 10px 16px; }
  .stat-chip-num { font-size: 16px; }
  .section-head { padding: 60px 16px 24px; }
  .section-title { font-size: 32px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 16px 40px; }
  .card { padding: 14px; }
  .card-img { padding: 16px; margin-bottom: 12px; }
  .card-title { font-size: 14px; min-height: 38px; margin-bottom: 10px; }
  .card-price { font-size: 18px; }
  .card-score-pill { font-size: 11px; padding: 4px 9px; }
  .breadcrumb { padding: 24px 16px 0; }
  .cat-hero { padding: 30px 16px 24px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-toolbar { border-radius: 22px; padding: 12px 18px; }
  .review-title { font-size: 28px; }
  .block { padding: 26px 24px; }
  .block h2 { font-size: 22px; }
  .features { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .verdict-banner { padding: 40px 24px; }
  .verdict-score-big { font-size: 72px; }
  .verdict-banner h2 { font-size: 24px; }
  .user-reviews { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 100px 1fr 40px; gap: 12px; }
  .footer { padding: 50px 16px 24px; }
  .footer-inner { padding: 36px 24px; border-radius: var(--radius-lg); }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { font-size: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 10px; }
}
@media (max-width: 480px) {
  .grid, .cat-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 34px; }
}

img {
  border-radius: 1em;
}
:root{--gallery-border:rgba(168,85,247,0.2);--gallery-active:#a855f7;--gallery-glow:rgba(168,85,247,0.2)}

/* Trust Badges - Aurora Glass */
.trust-badges { gap: 10px; margin: 16px 0 20px; }
.trust-badge { background: var(--glass); backdrop-filter: blur(12px); border: 1px solid var(--line-2); padding: 12px 18px; border-radius: 14px; font-size: 13px; font-weight: 600; color: var(--ink); }

/* Lede Features - Aurora Glass */
.lede-features { gap: 6px; margin: 0 0 20px; }
.lede-feature { background: var(--glass-2); backdrop-filter: blur(8px); border: 1px solid var(--line); padding: 12px 18px; border-radius: 12px; font-size: 14px; color: var(--ink-2); border-left: 3px solid var(--purple); }

/* Hide duplicate verdict from stored content */
.block .final-verdict { display: none; }
