/* ProdottoVerificato.it — Main CSS v2 */
/* Font: Syne (display) + DM Sans (body) */

:root {
  --green: #00C27C;
  --green-dark: #00875A;
  --green-deeper: #005C3D;
  --green-light: #E3F5EF;
  --amazon-orange: #FF9900;
  --amazon-orange-dark: #E68900;
  --text-primary: #0d1117;
  --text-secondary: #5b6677;
  --text-muted: #93a0b4;
  --bg: #FFFFFF;
  --bg-secondary: #F5F8FB;
  --border: #E4EBF2;
  --nav-bg: #0d1117;
  --nav-text: rgba(255,255,255,0.85);
  --nav-text-hover: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 26px rgba(24, 34, 48, 0.07);
  --shadow-lg: 0 18px 42px rgba(24, 34, 48, 0.12);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── NAVBAR DARK ── */
.site-header {
  background: var(--nav-bg);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: #fff;
}
.logo-wordmark strong {
  color: var(--amazon-orange);
}

/* legacy .logo-text support */
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.logo-text strong { color: var(--amazon-orange); }

/* ── NAV LINKS ── */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.main-nav { display: flex; gap: 2px; }
.main-nav a {
  color: var(--nav-text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.15;
  transition: all .15s;
  border: 1px solid transparent;
  letter-spacing: 0;
}
.main-nav a:hover {
  color: var(--nav-text-hover);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

/* ── SEARCH ── */
.search-form { display: flex; gap: 0; margin-left: 8px; }
.search-form input {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: #fff;
  padding: 9px 14px;
  border-radius: 10px 0 0 10px;
  font-size: 14px;
  width: 220px;
  outline: none;
  transition: all .2s;
}
.search-form input::placeholder { color: rgba(255,255,255,0.4); }
.search-form input:focus {
  background: rgba(255,255,255,0.11);
  border-color: var(--green);
}
.search-form button {
  background: var(--green);
  border: none;
  color: #fff;
  padding: 9px 16px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background .15s;
}
.search-form button:hover { background: var(--green-dark); }

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px 0 8px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--green-dark); }
.breadcrumb span:last-child { color: var(--text-secondary); }

/* ── PRODUCT HERO ── */
.product-hero {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 28px;
  padding: 20px 0 42px;
  align-items: start;
}
.product-hero__image {
  position: relative;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.product-hero__image img { max-height: 380px; object-fit: contain; }

.badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
}
.badge--discount { background: #E53935; color: #fff; }

.product-brand {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.product-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.amazon-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.stars {
  --filled: calc(var(--rating) / 5 * 100%);
  width: 90px; height: 16px;
  background: linear-gradient(to right, var(--amazon-orange) var(--filled), var(--border) var(--filled));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 16'%3E%3Ctext y='14' font-size='14'%3E★★★★★%3C/text%3E%3C/svg%3E") no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 16'%3E%3Ctext y='14' font-size='14'%3E★★★★★%3C/text%3E%3C/svg%3E") no-repeat;
}
.rating-value { font-weight: 600; font-size: 14px; }
.rating-count { font-size: 13px; color: var(--text-muted); }

.pv-score {
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.pv-score__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--green);
}
.pv-score__number { font-size: 42px; font-weight: 800; line-height: 1; }
.pv-score__label { font-size: 16px; opacity: 0.8; font-weight: 700; }
.pv-score__text { font-size: 14px; font-weight: 600; color: var(--text-secondary); }

.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  padding: 18px 20px;
  background: #f6f8fb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.price-current { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--text-primary); }
.price-original { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.price-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px;
  border-radius: 12px; font-weight: 700;
  font-size: 16px; cursor: pointer;
  border: none; text-decoration: none;
  transition: transform .1s, box-shadow .1s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn--amazon {
  background: var(--amazon-orange);
  color: var(--text-primary);
  width: 100%;
}
.btn--amazon:hover { background: var(--amazon-orange-dark); color: var(--text-primary); }
.btn--large { font-size: 18px; padding: 18px 32px; }
.btn--compare {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  width: 100%;
  margin-top: 8px;
}
.btn--compare:hover { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }
.btn-g { background: var(--green); color: #fff; }
.btn-g:hover { background: var(--green-dark); color: #fff; }
.btn--outline {
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--green); color: var(--green-dark); }

/* ── REVIEW SECTION ── */
.review-section { max-width: 800px; padding-bottom: 64px; }
.review-meta {
  display: flex; gap: 20px;
  font-size: 13px; color: var(--text-muted);
  padding: 14px 18px;
  margin-bottom: 28px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  flex-wrap: wrap;
}
.review-title { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.review-intro { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; }
.review-body { margin: 32px 0; }
.review-body p { margin-bottom: 16px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.pros-cons__pros, .pros-cons__cons { padding: 20px; border-radius: var(--radius); }
.pros-cons__pros { background: #E8F5E9; border: 1px solid #C8E6C9; }
.pros-cons__cons { background: #FBE9E7; border: 1px solid #FFCCBC; }
.pros-cons h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.pros-cons ul { list-style: none; padding: 0; }
.pros-cons li { padding: 4px 0; font-size: 14px; }
.pros-cons__pros li::before { content: '+ '; color: var(--green); font-weight: 700; }
.pros-cons__cons li::before { content: '− '; color: #E53935; font-weight: 700; }

.score-breakdown { margin: 32px 0; }
.score-breakdown h3 { font-size: 18px; margin-bottom: 16px; }
.score-grid { display: flex; flex-direction: column; gap: 10px; }
.score-item { display: grid; grid-template-columns: 180px 1fr 50px; align-items: center; gap: 12px; }
.score-label { font-size: 14px; font-weight: 500; }
.score-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.score-bar__fill { height: 100%; background: var(--green); border-radius: 4px; transition: width .5s; }
.score-val { font-size: 13px; font-weight: 600; color: var(--green-dark); text-align: right; }

.specs-table { margin: 32px 0; }
.specs-table h3 { font-size: 18px; margin-bottom: 16px; }
.specs-table table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 14px; overflow: hidden;
  border: 1px solid var(--border); border-radius: 18px;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th { padding: 10px 16px; background: #f8fafc; font-weight: 500; text-align: left; width: 40%; color: var(--text-secondary); }
.specs-table td { padding: 10px 16px; background: #fff; }

.verdict {
  background: #fff; color: var(--text-primary);
  border-radius: 22px; padding: 28px 32px; margin: 32px 0;
  text-align: left; border: 2px solid var(--green); box-shadow: var(--shadow);
}
.verdict h3 { color: var(--green); font-size: 20px; margin-bottom: 12px; letter-spacing: 0.02em; }
.verdict__score {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 92px; padding: 8px 16px; border-radius: 14px;
  font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800;
  color: #fff; background: var(--green); line-height: 1; margin-bottom: 18px;
}
.verdict p { margin-bottom: 24px; font-size: 18px; line-height: 1.75; color: var(--text-secondary); }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.product-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .15s; color: var(--text-primary); text-decoration: none;
}
.product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-2px);
  text-decoration: none; border-color: var(--green);
}
.product-card img { width: 100%; height: 180px; object-fit: contain; padding: 16px; background: var(--bg-secondary); }
.product-card__body { padding: 16px; }
.product-card__body h3 { font-size: 14px; font-weight: 500; line-height: 1.4; margin-bottom: 8px; }
.product-card__score {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-bottom: 6px;
}
.product-card__price { font-size: 16px; font-weight: 700; color: var(--text-primary); }

.related-products { margin: 48px 0; }
.related-products h2 { font-size: 22px; margin-bottom: 4px; }

/* ── FOOTER DARK ── */
.site-footer {
  background: var(--nav-bg);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; color: rgba(255,255,255,0.55); }
.affiliate-disclosure { font-size: 11px; opacity: 0.5; margin-top: 8px; font-style: italic; }
.footer-links h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
}
.cookie-banner__inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center; padding: 16px 18px;
  background: rgba(17, 24, 39, 0.97); color: #fff;
  border-radius: 18px; box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.07);
}
.cookie-banner__brand { display: flex; align-items: center; gap: 8px; }
.cookie-banner__copy p { margin-top: 4px; color: rgba(255,255,255,0.65); font-size: 14px; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__btn { min-width: 110px; }
.cookie-banner__btn--reject {
  color: #fff; border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}
.cookie-banner__btn--reject:hover {
  color: #fff; border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.14);
}

/* ── HOME PAGE ── */
.hero {
  background: var(--nav-bg);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,124,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.hero__content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__accent { color: var(--amazon-orange); }
.hero__content p { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 36px; }
.hero__search { display: flex; max-width: 560px; margin: 0 auto; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.hero__search input {
  flex: 1; padding: 18px 22px; font-size: 16px;
  border: none; border-radius: 0; outline: none;
  font-family: 'DM Sans', sans-serif;
}
.hero__search button {
  background: var(--green); color: #fff;
  border: none; padding: 18px 32px;
  border-radius: 0; font-size: 16px; font-weight: 700; cursor: pointer;
  transition: background .15s; font-family: 'Syne', sans-serif;
  white-space: nowrap;
}
.hero__search button:hover { background: var(--green-dark); }

.section { padding: 60px 0; }
.section--alt { background: var(--bg-secondary); }
.section__title { font-size: 28px; font-weight: 700; margin-bottom: 28px; color: var(--text-primary); }
.section__subtitle { font-size: 15px; color: var(--text-secondary); margin-top: -18px; margin-bottom: 28px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
  color: var(--text-primary);
}
.category-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translateY(-3px);
}
.category-card__icon { font-size: 34px; }
.category-card__name { font-size: 13px; font-weight: 600; text-align: center; line-height: 1.3; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-item { text-align: center; padding: 36px 20px; }
.trust-item__icon { font-size: 44px; display: block; margin-bottom: 16px; }
.trust-item h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.trust-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header .container { gap: 10px; }
  .logo-wordmark { font-size: 16px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; }
  .search-form input { width: 120px; padding: 8px 10px; }
  .search-form button { padding: 8px 12px; }
  .product-hero { grid-template-columns: 1fr; gap: 18px; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .score-item { grid-template-columns: 120px 1fr 40px; }
  .product-title { font-size: 24px; }
  .hero__content h1 { font-size: 34px; }
  .hero__search { flex-direction: column; border-radius: var(--radius); }
  .hero__search input { border-radius: var(--radius) var(--radius) 0 0; }
  .hero__search button { border-radius: 0 0 var(--radius) var(--radius); }
  .trust-grid { grid-template-columns: 1fr; gap: 8px; }
  .category-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .cookie-banner__inner { grid-template-columns: 1fr; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
  .verdict { padding: 22px 18px; border-radius: 18px; }
  .verdict__score { font-size: 28px; min-width: 82px; }
  .verdict p { font-size: 16px; }
}

/* ── RECOVERY LAYOUT ALIGNMENT ── */
body.is-menu-open {
  overflow: hidden;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e6ebf1;
  box-shadow: none;
}

.site-header .container {
  min-height: 78px;
}

.logo-wordmark,
.logo-text {
  color: #161e2e;
}

.logo-wordmark strong,
.logo-text strong {
  color: #1cab55;
}

.site-header__actions {
  gap: 18px;
}

.main-nav {
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: #3f4858;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
}

.main-nav a:hover {
  color: #151d2f;
  background: #f1f5f9;
}

.hdr-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hdr-drop-btn,
.hdr-guide,
.hdr-cmp {
  font-family: inherit;
  letter-spacing: 0;
}

.main-nav__cta {
  border: 1px solid #caead7;
  background: #eef9f2;
  color: #17a650;
  border-radius: 14px;
  padding: 12px 18px !important;
  font-weight: 700 !important;
}

.search-form {
  margin-left: 0;
}

.search-form input {
  width: 270px;
  border: 1px solid #dbe4ee;
  background: #fff;
  color: #151d2f;
  padding: 12px 16px;
}

.search-form input::placeholder {
  color: #9aa4b5;
}

.search-form input:focus {
  background: #fff;
  border-color: #80d7a8;
}

.search-form button {
  background: #18aa51;
  padding: 12px 18px;
}

.menu-toggle {
  border: 1px solid #d8e1eb;
  background: #fff;
}

.menu-toggle span {
  background: #344055;
}

.mobile-drawer[hidden] {
  display: none !important;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 32, 0.42);
  opacity: 0;
  transition: opacity .22s ease;
}

.mobile-drawer__panel {
  position: absolute;
  top: 72px;
  left: 0;
  bottom: 0;
  width: min(360px, calc(100vw - 28px));
  background: #fff;
  border-radius: 0 24px 24px 0;
  padding: 20px 24px 24px;
  box-shadow: 18px 0 60px rgba(15, 23, 42, 0.18);
  transform: translateX(-18px);
  opacity: 0;
  overflow-y: auto;
  transition: transform .22s ease, opacity .22s ease;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
  opacity: 1;
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mobile-drawer__close {
  border: 1px solid #d8e1eb;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-drawer__group + .mobile-drawer__group {
  margin-top: 14px;
}

.mobile-drawer__label {
  font-weight: 700;
  color: #2a3344;
  margin-bottom: 8px;
}

.mobile-drawer__links {
  display: grid;
  gap: 8px;
}

.mobile-drawer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1d2738;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 12px;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  background: #fff;
}

.mobile-drawer__links a svg {
  color: #18aa51;
  flex-shrink: 0;
}

.mobile-drawer__search {
  margin: 4px 0 14px;
}

.mobile-drawer__search form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  padding: 8px 8px 8px 12px;
}

.mobile-drawer__search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  font-size: 14px;
  color: #111827;
}

.mobile-drawer__search input::placeholder {
  color: #9ca3af;
}

.mobile-drawer__search button {
  border: none;
  background: #18aa51;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 14px;
}

.home-cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}

.home-cats__wrap {
  overflow: hidden;
}

.home-cats__toggle {
  display: none;
}

.home-cats__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r2);
  color: inherit;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.home-cats__card:hover {
  border-color: var(--g);
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  text-decoration: none;
}

.home-cats__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: var(--gl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
}

.home-cats__copy {
  min-width: 0;
}

.home-cats__title {
  font-size: 15px;
  font-weight: 700;
}

.home-cats__desc {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 2px;
}

.home-latest__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero {
  padding: 110px 0 84px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 194, 124, 0.16) 0%, transparent 72%),
    linear-gradient(180deg, #141925 0%, #0d1117 100%);
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
}

.hero__content h1 {
  font-size: 66px;
  max-width: 780px;
  margin: 0 auto 18px;
}

.hero__accent {
  color: #ffffff;
}

.hero__content p {
  max-width: 780px;
  margin: 0 auto 34px;
  font-size: 17px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#0d1117 0%,#111827 50%,#0d1117 100%);
  padding: 96px 0 76px;
}

.home-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%,rgba(22,163,74,.18) 0%,transparent 65%);
  pointer-events: none;
}

.home-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.home-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.25);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.home-hero__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
  display: inline-block;
}

.home-hero__title {
  color: #fff;
  font-size: clamp(34px,5.5vw,60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}

.home-hero__accent {
  color: #4ade80;
}

.home-hero__text {
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 38px;
}

.home-hero__search {
  max-width: 620px;
  margin: 0 auto 24px;
}

.home-hero__search-shell {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 7px 7px 7px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  gap: 8px;
}

.home-hero__search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.home-hero__search-icon {
  flex-shrink: 0;
}

.home-hero__search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  padding: 9px 13px;
  font-family: inherit;
}

.home-hero__search-input::placeholder {
  color: rgba(255,255,255,.42);
}

.home-hero__search-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.home-hero__search-btn:hover {
  background: var(--green-dark);
}

.home-hero__chips {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero__chips-label {
  color: rgba(255,255,255,.28);
  font-size: 12px;
}

.home-hero__chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.62);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  transition: all .15s;
}

.home-hero__chip:hover {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

.home-stats {
  background: var(--g);
  padding: 16px 0;
}

.home-stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.home-stats__item {
  text-align: center;
  padding: 2px 44px;
}

.home-stats__item strong {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
}

.home-stats__item span {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.home-stats__divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.2);
}

.section {
  padding: 66px 0;
}

.category-grid {
  gap: 18px;
}

.category-card {
  min-height: 132px;
  justify-content: center;
}

.trust-grid--left {
  align-items: start;
}

.trust-grid--left .trust-item {
  text-align: left;
  padding: 0;
}

.trust-grid--left .trust-item h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.site-footer {
  margin-top: 0;
  padding: 62px 0 28px;
}

.footer-brand p {
  max-width: 360px;
}

.category-hero {
  background: #151b27;
  color: #fff;
  padding: 18px 0 38px;
}

.breadcrumb--inverse {
  color: rgba(255, 255, 255, 0.45);
  padding-top: 0;
}

.breadcrumb--inverse a {
  color: rgba(255, 255, 255, 0.58);
}

.category-hero__content {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 0 10px;
}

.category-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(58, 214, 122, 0.28);
  background: rgba(23, 172, 85, 0.1);
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #4ade80;
}

.category-hero h1 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.category-hero p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  max-width: 760px;
}

.category-page {
  padding: 36px 0 72px;
}

.category-page__layout {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filters-card {
  background: #fff;
  border: 1px solid #dde6ef;
  border-radius: 22px;
  padding: 20px 20px 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.filters-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.filters-card__header h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.filters-card__header p {
  font-size: 12px;
  color: #7f8aa0;
  margin-top: 4px;
}

.filters-card__header a {
  color: #1cab55;
  font-weight: 600;
  font-size: 14px;
}

.filters-form {
  display: grid;
  gap: 0;
}

.filter-group {
  padding: 18px 0;
  border-top: 1px solid #eef2f6;
}

.filter-group:first-child {
  border-top: 0;
}

.filter-group__title {
  font-weight: 600;
  margin-bottom: 14px;
  color: #242d3d;
}

.filter-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7b8597;
  font-size: 14px;
  margin-bottom: 12px;
}

.filter-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.filter-inputs input,
.filter-search,
.filter-select {
  width: 100%;
  border: 1px solid #d9e3ed;
  border-radius: 12px;
  padding: 11px 13px;
  font: inherit;
  background: #fff;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2e3748;
  margin-bottom: 9px;
}

.filter-check input {
  accent-color: #18aa51;
}

.filter-brand-list {
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.btn--filter-submit {
  width: 100%;
  margin-top: 14px;
  font-size: 15px;
  padding: 14px 18px;
}

.category-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 0 2px 6px;
}

.category-toolbar__meta {
  display: grid;
  gap: 4px;
}

.category-toolbar__count {
  font-size: 17px;
  font-weight: 800;
  color: #232d3d;
}

.category-toolbar__meta p {
  margin: 0;
  font-size: 13px;
  color: #6f7b90;
  line-height: 1.6;
}

.category-toolbar__sort label {
  display: grid;
  gap: 6px;
}

.category-toolbar__sort span {
  font-size: 12px;
  font-weight: 700;
  color: #6f7b90;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-toolbar__sort select {
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  min-width: 180px;
}

.category-context {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.category-context--single {
  grid-template-columns: minmax(0, 1fr);
}

.category-context--single .category-context__card--guides {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
  gap: 26px;
  align-items: start;
  width: 100%;
}

.category-context__main {
  min-width: 0;
}

.category-context__card {
  padding: 22px 24px;
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbf9 100%);
  border: 1px solid #e3ecf3;
  border-radius: 20px;
}

.category-context__eyebrow {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-context__card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.category-context__card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.category-context__links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  align-content: start;
}

.category-context__links a {
  display: block;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dce9e2;
  border-radius: 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.product-grid--catalog {
  grid-template-columns: repeat(3, minmax(272px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.product-card--catalog,
.product-card--related {
  position: relative;
  border-radius: 18px;
}

.product-card__image-wrap {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 22px 20px 10px;
}

.product-card--catalog img,
.product-card--related img {
  width: 100%;
  height: auto;
  max-height: 240px;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #18aa51;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  padding: 4px 10px;
  z-index: 1;
}

.product-card__brand {
  color: #18aa51;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card__body {
  padding: 16px 16px 18px;
}

.product-card__body h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  min-height: 70px;
  margin-bottom: 12px;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.product-card__price {
  font-size: 18px;
}

.product-card__price-original {
  color: #98a2b3;
  text-decoration: line-through;
  font-size: 14px;
}

.product-card__link {
  color: #1cab55;
  font-weight: 600;
  font-size: 14px;
}

.category-guides {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid #e5edf4;
}

.section-head--compact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head__link {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.home-latest__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 22px;
}

.home-latest__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1.5px solid #dfe7f0;
  border-radius: 22px;
  overflow: hidden;
  color: var(--text-primary);
  transition: transform .18s, box-shadow .18s, border-color .18s;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.04);
}

.home-latest__card:hover {
  transform: translateY(-4px);
  border-color: #8fd3aa;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  text-decoration: none;
}

.home-latest__image {
  position: relative;
  background: linear-gradient(180deg,#f8fbff 0%,#f3f7fb 100%);
  aspect-ratio: 1 / 1;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-latest__image img {
  width: 100%;
  max-width: 84%;
  height: auto;
  max-height: 208px;
  object-fit: contain;
}

.home-latest__score {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #19af52;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(25,175,82,.22);
}

.home-latest__score small {
  font-size: 9px;
  opacity: .8;
}

.home-latest__discount {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

.home-latest__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 18px;
  flex: 1;
}

.home-latest__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-latest__meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-latest__brand {
  font-size: 11px;
  color: #8b97a9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.home-latest__body h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.015em;
  min-height: 63px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-latest__price {
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  color: #121826;
  margin-top: auto;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.home-latest__price s {
  font-size: 14px;
  color: #9aa4b5;
  margin-left: 6px;
  font-weight: 500;
}

.home-latest__price-fallback {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  background: #eef7f1;
  border: 1px solid #d4eadb;
  border-radius: 999px;
  padding: 8px 12px;
}

.home-latest__cta {
  margin-top: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.home-faq {
  padding-top: 18px;
}

.home-faq .section-head {
  align-items: start;
  gap: 28px;
  margin-bottom: 24px;
}

.home-faq .section-head p {
  max-width: 460px;
}

.compare-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%);
  padding: 26px 0 34px;
}

.compare-hero__breadcrumb {
  color: rgba(255, 255, 255, 0.45);
  padding: 0 0 18px;
}

.compare-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
}

.compare-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 30px;
  align-items: end;
}

.compare-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #7ee39e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.compare-hero h1 {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
}

.compare-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
}

.compare-hero__status {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 18px 18px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.compare-hero__status-number {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

.compare-hero__status-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0 16px;
}

.compare-page {
  padding-top: 34px;
}

.compare-builder,
.compare-table-card,
.compare-intro {
  background: #fff;
  border: 1.5px solid #e5edf5;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.compare-builder {
  padding: 26px;
  margin-bottom: 28px;
}

.compare-builder__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.compare-builder__head h2,
.compare-table-card__head h2,
.compare-intro h2 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.compare-builder__head p,
.compare-table-card__head p,
.compare-intro p {
  color: #667085;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.compare-builder__search label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.compare-builder__search {
  position: relative;
}

.compare-builder__search-shell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-builder__search-shell input {
  flex: 1;
  min-width: 0;
  min-height: 50px;
  border: 1.5px solid #dce7f1;
  border-radius: 16px;
  padding: 0 16px;
  font: inherit;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}

.compare-builder__search-shell input:focus {
  border-color: #1cab55;
  box-shadow: 0 0 0 4px rgba(28, 171, 85, 0.08);
}

.compare-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 30;
  background: #fff;
  border: 1.5px solid #dce7f1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.compare-search-results__empty {
  padding: 16px 18px;
  color: #667085;
  font-size: 14px;
}

.compare-search-result {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: none;
  border-bottom: 1px solid #edf2f7;
  background: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.compare-search-result:last-child {
  border-bottom: none;
}

.compare-search-result:hover {
  background: #f8fbff;
}

.compare-search-result__media {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: #f8fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.compare-search-result__media img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.compare-search-result__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.compare-search-result__body strong {
  font-size: 14px;
  line-height: 1.4;
  color: #111827;
}

.compare-search-result__body small {
  color: #667085;
  font-size: 12px;
}

.compare-search-result__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.compare-search-result__meta span {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef7f1;
  color: #1cab55;
  font-size: 11px;
  font-weight: 700;
}

.compare-slots {
  display: grid;
  gap: 18px;
}

.compare-slot__step {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #98a2b3;
  margin-bottom: 10px;
}

.compare-slot__card,
.compare-slot__empty {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 180px;
  gap: 18px;
  width: 100%;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1.5px solid #dfe8f1;
  border-radius: 22px;
}

.compare-slot__empty {
  grid-template-columns: 62px minmax(0, 1fr);
  cursor: pointer;
  text-align: left;
}

.compare-slot__empty:hover {
  border-color: #1cab55;
  box-shadow: 0 10px 28px rgba(28, 171, 85, 0.08);
}

.compare-slot__plus {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #f6fbf7;
  border: 1px dashed #bfe0c8;
  color: #1cab55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
}

.compare-slot__media {
  background: linear-gradient(180deg,#f8fbff 0%,#f3f7fb 100%);
  border-radius: 18px;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.compare-slot__media img {
  width: 100%;
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
}

.compare-slot__placeholder-icon {
  font-size: 34px;
}

.compare-slot__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-slot__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-slot__meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f5f8fb;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.compare-slot__body h3 {
  font-size: 17px;
  line-height: 1.4;
}

.compare-slot__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff3f7;
  color: #455468;
  font-size: 12px;
  font-weight: 800;
}

.compare-pill--score {
  background: #18aa51;
  color: #fff;
}

.compare-slot__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.compare-slot__price {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-align: right;
}

.compare-slot__price--muted {
  font-size: 15px;
  font-weight: 700;
  color: #667085;
}

.compare-slot__remove {
  border: none;
  background: transparent;
  color: #98a2b3;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.compare-slot__remove:hover {
  color: #ef4444;
}

.compare-table-card {
  padding: 26px;
}

.compare-table-card__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: top;
}

.compare-table__label {
  width: 24%;
  background: #fafcff;
  font-size: 13px;
  font-weight: 800;
  color: #667085;
  text-align: left;
}

.compare-table__product {
  background: #fafcff;
  text-align: left;
}

.compare-table__product-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.compare-table__product-media {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.compare-table__product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-table__product-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  color: #111827;
}

.compare-table td {
  color: #364152;
  font-size: 14px;
  line-height: 1.55;
}

.compare-table__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-intro {
  padding: 38px 30px;
  text-align: center;
}

.compare-intro__icon {
  font-size: 52px;
  margin-bottom: 16px;
}

@media print {
  .hdr,
  .ftr,
  .cookie-banner,
  .compare-builder,
  .compare-hero__status .compare-print-btn,
  .compare-table-card__head .compare-print-btn {
    display: none !important;
  }

  .compare-hero,
  .compare-page,
  .section {
    padding: 0 !important;
    background: #fff !important;
  }

  .compare-table-card {
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

.home-faq__accordion {
  display: grid;
  gap: 14px;
}

.home-faq__item {
  background: #fff;
  border: 1.5px solid #dfe7f0;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}

.home-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.35;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: '+';
  font-size: 24px;
  line-height: 1;
  color: #16a34a;
  font-weight: 500;
}

.home-faq__item[open] summary::after {
  content: '−';
}

.home-faq__item p {
  font-size: 14px;
  line-height: 1.7;
  color: #5b6677;
  padding: 4px 22px 18px;
}

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.home-why__card {
  padding: 28px 24px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r2);
  position: relative;
}

.home-why__num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 40px;
  font-weight: 900;
  color: var(--bg3);
  line-height: 1;
  letter-spacing: -.03em;
  pointer-events: none;
}

.home-why__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  margin-bottom: 16px;
}

.home-why__card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 9px;
}

.home-why__card p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.7;
}

.home-seo {
  max-width: 740px;
  margin: 0 auto;
}

.home-seo h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.015em;
}

.home-seo p {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.8;
}

.home-seo p + p {
  margin-top: 14px;
}

.home-seo a {
  color: var(--g);
  font-weight: 500;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid #e1e8f0;
  border-radius: 24px;
  background: #fff;
  padding: 40px;
}

.catalog-empty__icon {
  font-size: 48px;
  color: #9aa4b5;
  margin-bottom: 10px;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.catalog-pagination__btn,
.catalog-pagination__current {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe4ee;
  color: #1d2738;
  background: #fff;
}

.catalog-pagination__current {
  background: #18aa51;
  border-color: #18aa51;
  color: #fff;
  font-weight: 700;
}

.mobile-filters {
  display: none;
}

.mobile-section-toggle {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mobile-section-panel {
  display: none;
}

.mobile-section-panel.is-open {
  display: block;
  margin-top: 12px;
}

.product-hero--restored {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 40px;
  padding: 8px 0 30px;
}

.product-hero__image--restored {
  padding: 26px;
  border-radius: 24px;
  min-height: 470px;
}

.product-hero__image--restored img {
  max-height: 420px;
}

.pv-score--restored {
  min-height: 96px;
}

.price-block--minimal {
  min-height: 34px;
  padding: 16px 0 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 12px;
}

.review-shell {
  background: #f8fafc;
  border-radius: 24px;
  padding: 34px 30px 38px;
  margin-bottom: 34px;
}

.review-meta--bare {
  background: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 14px;
}

.review-title--large {
  font-size: 28px;
  margin-bottom: 22px;
}

.review-intro--wide,
.review-body {
  max-width: 1120px;
}

.review-body p {
  color: #394354;
}

.score-breakdown h3,
.specs-card h3,
.related-products h2 {
  font-size: 21px;
  margin-bottom: 18px;
}

.specs-card {
  background: #fff;
  border: 1px solid #dfe8f1;
  border-radius: 20px;
  padding: 20px 22px;
  margin: 34px 0;
}

.specs-table--restored {
  border: 0;
  border-radius: 0;
}

.specs-table--restored th,
.specs-table--restored td {
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid #e8eef5;
}

.specs-table--restored th {
  color: #2a3344;
  font-weight: 700;
  width: 28%;
}

.specs-table--restored tr:last-child th,
.specs-table--restored tr:last-child td {
  border-bottom: 0;
}

.guide-card__excerpt {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 8px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.guide-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-grid--results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid--related {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-page {
  padding-bottom: 64px;
}

.breadcrumb--product {
  margin-bottom: 26px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.product-detail-hero__aside {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #dfe8f1;
  border-radius: 24px;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-detail-media__empty {
  color: #cbd5e1;
}

.product-detail-buybox {
  background: #fff;
  border: 1px solid #dfe8f1;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.product-detail-buybox__price {
  margin-bottom: 16px;
}

.product-detail-buybox__price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.product-detail-buybox__current {
  color: var(--text-primary);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.product-detail-buybox__current--muted {
  font-size: 24px;
  color: var(--text-secondary);
}

.product-detail-buybox__original {
  color: #94a3b8;
  font-size: 18px;
  text-decoration: line-through;
}

.product-detail-buybox__discount {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
}

.product-detail-buybox__price p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.product-detail-buybox__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail-buybox__amazon,
.product-detail-buybox__compare {
  width: 100%;
  justify-content: center;
}

.product-detail-buybox__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8eef5;
}

.product-detail-buybox__stats span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-secondary);
  font-size: 12px;
}

.product-detail-buybox__stats strong {
  font-size: 16px;
  line-height: 1.2;
}

.product-detail-main {
  min-width: 0;
}

.product-detail-head {
  margin-bottom: 28px;
}

.product-detail-head__brand {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-head h1 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-detail-head__rating-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.product-detail-pv-score {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  padding: 14px 18px;
  background: #f7fbf8;
  border: 1px solid #dcefe1;
  border-radius: 18px;
}

.product-detail-pv-score__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 58px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.product-detail-pv-score__label {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.product-detail-head__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.product-detail-card,
.product-verdict {
  margin-bottom: 24px;
  padding: 26px;
  background: #fff;
  border: 1px solid #dfe8f1;
  border-radius: 24px;
}

.product-detail-card--soft {
  background: #f8fafc;
}

.product-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.product-section-head h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.product-section-head p {
  max-width: 460px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.product-feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.7;
}

.product-feature-list svg {
  margin-top: 4px;
  color: var(--green);
  flex-shrink: 0;
}

.review-shell--detail {
  background: #f8fafc;
  border: 1px solid #e3ebf3;
  border-radius: 28px;
  padding: 30px;
}

.review-shell__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.review-shell__eyebrow {
  margin-bottom: 6px;
  color: #7c8aa0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-shell__hero h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.review-shell__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 94px;
  background: #0f172a;
  color: #fff;
  border-radius: 22px;
}

.review-shell__score strong {
  color: #4ade80;
  font-size: 38px;
  line-height: 1;
}

.review-shell__score span {
  margin-top: 4px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

.review-shell__intro {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.review-shell__intro p {
  margin: 0;
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.9;
}

.score-breakdown--detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.score-breakdown__item {
  display: grid;
  gap: 6px;
}

.score-breakdown__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 13px;
}

.score-breakdown__line strong {
  color: var(--green);
  font-weight: 800;
}

.score-breakdown__bar {
  height: 8px;
  background: #e5edf4;
  border-radius: 999px;
  overflow: hidden;
}

.score-breakdown__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00c27c, #16a34a);
}

.review-body--detail {
  margin: 0;
  max-width: 100%;
}

.specs-card--detail {
  margin: 0 0 22px;
}

.product-verdict {
  border-color: rgba(34, 197, 94, 0.28);
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.92), rgba(255, 255, 255, 0.98));
}

.product-verdict__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.product-verdict__head h2 {
  margin: 0;
  font-size: 22px;
}

.product-verdict__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.product-verdict p {
  margin: 0 0 18px;
  color: #166534;
  font-size: 15px;
  line-height: 1.85;
}

.product-verdict__cta {
  width: 100%;
  justify-content: center;
}

.product-detail-section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid #e5edf4;
}

.product-card__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__price {
  margin-top: auto;
  color: var(--text-primary);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.product-card__cta,
.guide-card__cta {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.guide-card--mini {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  padding: 22px;
  background: #fff;
  border: 1px solid #dfe8f1;
  border-radius: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}

.guide-card--mini:hover {
  transform: translateY(-2px);
  border-color: #c6dfcb;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.guide-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card--mini h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.3;
}

.guide-card__link-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.guide-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.guide-card__meta {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  margin-left: auto;
  max-width: 40%;
  overflow-wrap: anywhere;
}

.guide-card--mini h3,
.guide-card__excerpt {
  overflow-wrap: anywhere;
}

.guide-card__cta {
  margin-top: auto;
}

.guide-page,
.guide-detail-page {
  padding-top: 32px;
  padding-bottom: 60px;
}

.guide-hero {
  margin-bottom: 28px;
}

.guide-hero__content {
  max-width: 920px;
}

.guide-hero__eyebrow,
.guide-article__eyebrow {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-hero h1,
.guide-article h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.guide-hero p,
.guide-article__head p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
}

.guide-section {
  margin-top: 32px;
}

.guide-topics {
  margin-bottom: 22px;
}

.guide-topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #d1fae5;
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  font-weight: 700;
}

.guide-topic-pill small {
  color: #4b5563;
  font-size: 0.88rem;
}

.guide-filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 14px;
  padding: 18px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}

.guide-filters input,
.guide-filters select {
  padding: 11px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.guide-filters__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
}

.guide-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.guide-results-head h2 {
  margin-bottom: 6px;
}

.guide-results-head p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.guide-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 28px;
  border-top: 1px solid #e5e7eb;
  color: var(--text-secondary);
}

.guide-pagination__actions {
  display: flex;
  gap: 10px;
}

.guide-mobile-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  font: inherit;
  font-weight: 800;
}

.guide-mobile-panel {
  margin-bottom: 28px;
}

.guide-detail-back {
  margin: 18px 0 12px;
}

.guide-detail-back a {
  color: var(--green);
  font-weight: 800;
}

.guide-article {
  max-width: 920px;
}

.guide-article__section {
  margin-top: 32px;
}

.guide-product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.guide-conclusion {
  padding: 22px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 18px;
}

.guide-conclusion h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.guide-conclusion p {
  margin: 0;
  color: #166534;
  line-height: 1.8;
}

@media (max-width: 1280px) {
  .home-latest__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .product-grid--catalog,
  .product-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-grid--featured,
  .guide-grid--results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-latest__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .product-detail-hero {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 28px;
  }

  .product-grid--catalog {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 42px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: 22px;
    line-height: 1.15;
  }

  .section-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .site-header {
    position: sticky;
  }

  .site-header .container {
    min-height: 72px;
  }

  .hdr {
    height: 72px;
  }

  .hdr .container {
    justify-content: space-between;
    gap: 12px;
  }

  .hdr-logo {
    margin-right: auto;
  }

  .main-nav,
  .search-form {
    display: none;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .home-hero {
    padding: 72px 0 56px;
  }

  .hero__content h1 {
    font-size: 48px;
  }

  .home-hero__title {
    font-size: 40px;
  }

  .guide-page,
  .guide-detail-page {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .guide-mobile-toggle {
    display: flex;
  }

  .guide-mobile-panel {
    display: none;
  }

  .guide-mobile-panel.is-open {
    display: block;
  }

  .guide-filters {
    grid-template-columns: 1fr;
    padding: 14px;
    margin-bottom: 22px;
  }

  .guide-results-head,
  .guide-pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-grid,
  .guide-grid--featured,
  .guide-grid--results {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guide-card--mini {
    padding: 18px;
    border-radius: 18px;
  }

  .guide-card__topline {
    gap: 8px;
  }

  .guide-card__meta {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
  }

  .home-hero__text {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero__search {
    flex-direction: row;
    border-radius: 16px;
  }

  .home-hero__search-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 10px;
    border-radius: 18px;
  }

  .home-hero__search-field {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    padding: 0 12px;
  }

  .home-hero__search-input {
    padding: 12px 0;
    font-size: 14px;
  }

  .home-hero__search-btn {
    width: 100%;
    padding: 13px 18px;
  }

  .home-stats__item {
    padding: 6px 18px;
    min-width: 50%;
  }

  .home-stats__divider {
    display: none;
  }

  .hero__search input {
    border-radius: 16px 0 0 16px;
  }

  .hero__search button {
    border-radius: 0 16px 16px 0;
    padding-inline: 22px;
  }

  .trust-grid--left {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-hero {
    padding-bottom: 24px;
  }

  .category-hero__content {
    align-items: flex-start;
  }

  .category-page__layout {
    grid-template-columns: 1fr;
  }

  .filters-card--desktop {
    display: none;
  }

  .mobile-filters {
    display: block;
    margin-bottom: 16px;
  }

  .category-toolbar {
    margin-bottom: 12px;
  }

  .category-context {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .product-grid--catalog,
  .product-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-card__image-wrap {
    aspect-ratio: 1 / 1;
    padding: 16px 14px 8px;
  }

  .product-card--catalog img,
  .product-card--related img {
    max-height: 172px;
  }

  .product-card__body h3 {
    font-size: 14px;
    min-height: 56px;
  }

  .home-latest__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .home-latest__card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: stretch;
    min-height: 0;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  }

  .home-latest__card:nth-child(n+5) {
    display: none;
  }

  .home-latest__image {
    width: 108px;
    min-width: 108px;
    min-height: 100%;
    aspect-ratio: auto;
    padding: 12px 10px;
    border-right: 1px solid #eef3f8;
  }

  .home-latest__image img {
    max-width: 100%;
    max-height: 112px;
  }

  .home-latest__score,
  .home-latest__discount {
    top: 8px;
    right: 8px;
    left: auto;
    transform: scale(.92);
    transform-origin: top right;
  }

  .home-latest__discount {
    left: 8px;
    right: auto;
    transform-origin: top left;
  }

  .home-latest__body {
    padding: 12px 12px 14px;
    gap: 8px;
    justify-content: center;
  }

  .home-latest__body h3 {
    font-size: 15px;
    min-height: 0;
    line-height: 1.38;
    -webkit-line-clamp: 2;
  }

  .home-latest__price {
    font-size: 20px;
    margin-top: 2px;
  }

  .home-latest__topline {
    flex-wrap: wrap;
    gap: 6px;
  }

  div.verdict {
    padding: 16px 16px !important;
    margin-bottom: 32px !important;
  }

  .specs-table table,
  .specs-table--restored {
    display: block;
    overflow-x: auto;
  }

  .review-shell {
    padding: 22px 16px 26px;
  }

  .product-page {
    padding-bottom: 42px;
  }

  .breadcrumb--product {
    margin-bottom: 16px;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-detail-hero__aside {
    position: static;
  }

  .product-detail-media {
    min-height: 300px;
    padding: 18px;
  }

  .product-detail-media img {
    max-height: 260px;
  }

  .product-detail-buybox {
    padding: 18px;
  }

  .product-detail-buybox__current {
    font-size: 28px;
  }

  .product-detail-buybox__stats {
    gap: 10px;
  }

  .product-detail-head h1 {
    font-size: 30px;
  }

  .product-detail-pv-score {
    width: 100%;
    min-width: 0;
  }

  .product-detail-pv-score__value {
    min-width: 86px;
    min-height: 54px;
    font-size: 24px;
  }

  .product-detail-card,
  .review-shell--detail,
  .product-verdict {
    padding: 18px;
    border-radius: 20px;
  }

  .product-section-head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .product-section-head h2,
  .product-verdict__head h2 {
    font-size: 20px;
  }

  .review-shell__hero {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .review-shell__score {
    min-width: 82px;
    min-height: 82px;
    border-radius: 18px;
  }

  .review-shell__score strong {
    font-size: 32px;
  }

  .review-shell__intro p {
    font-size: 15px;
    line-height: 1.8;
  }

  .score-breakdown--detail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-verdict__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-title--large {
    font-size: 24px;
  }

  .mobile-drawer__panel {
    width: min(320px, calc(100vw - 24px));
    padding: 16px 16px 22px;
    border-radius: 0 22px 22px 0;
    top: 64px;
  }

  .mobile-drawer__search form {
    padding: 7px 7px 7px 10px;
  }

  .mobile-drawer__search button {
    padding: 10px 12px;
  }

  .home-hero__eyebrow {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 20px;
  }

  .home-hero__chips {
    gap: 6px;
  }

  .home-hero__chip {
    font-size: 11px;
    padding: 4px 10px;
  }

  .home-latest__head {
    align-items: flex-start;
  }

  .home-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-cats__card {
    padding: 12px;
    gap: 10px;
    align-items: center;
    min-height: 0;
  }

  .home-cats__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .home-cats__title {
    font-size: 13px;
    line-height: 1.25;
  }

  .home-cats__desc {
    display: none;
  }

  .home-cats__card:nth-child(n+5) {
    display: none;
  }

  .home-cats__wrap.is-open .home-cats__card:nth-child(n+5) {
    display: flex;
  }

  .home-cats__toggle {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid #dce7df;
    background: #f7fbf8;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
  }

  .home-faq {
    padding-top: 8px;
  }

  .home-faq .section-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .home-faq__accordion {
    gap: 12px;
  }

  .home-faq__item summary {
    padding: 16px 16px;
    font-size: 16px;
  }

  .home-faq__item p {
    padding: 2px 16px 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .home-why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-why__card {
    padding: 22px 18px;
  }

  .home-why__num {
    font-size: 32px;
    top: 16px;
    right: 16px;
  }

  .home-seo h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .home-seo p {
    font-size: 14px;
    line-height: 1.75;
  }

  .category-hero__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 22px;
  }

  .category-toolbar {
    gap: 12px;
    align-items: stretch;
    padding-bottom: 2px;
  }

  .section-head--compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .category-toolbar__meta p {
    font-size: 12px;
    line-height: 1.6;
  }

  .category-context__card {
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .category-context--single .category-context__card--guides {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-context__card strong {
    font-size: 16px;
  }

  .category-context__card p {
    font-size: 13px;
  }

  .category-toolbar__sort {
    width: 100%;
  }

  .category-toolbar__sort label {
    width: 100%;
  }

  .category-toolbar__sort select {
    width: 100%;
    min-height: 44px;
    font-weight: 600;
  }

  .compare-hero {
    padding: 22px 0 28px;
  }

  .compare-hero__inner,
  .compare-builder__head {
    grid-template-columns: 1fr;
  }

  .compare-hero h1 {
    font-size: 30px;
  }

  .compare-hero p,
  .compare-builder__head p,
  .compare-table-card__head p,
  .compare-intro p {
    font-size: 14px;
  }

  .compare-builder,
  .compare-table-card,
  .compare-intro {
    padding: 18px;
    border-radius: 20px;
  }

  .compare-builder__search-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .compare-slot__card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .compare-slot__empty {
    grid-template-columns: 52px 1fr;
  }

  .compare-slot__media {
    min-height: 112px;
  }

  .compare-slot__media img {
    max-width: 96px;
    max-height: 96px;
  }

  .compare-slot__actions {
    align-items: stretch;
  }

  .compare-slot__price {
    text-align: left;
    font-size: 24px;
  }

  .compare-table-card__head {
    align-items: start;
    flex-direction: column;
  }

  .compare-table {
    min-width: 640px;
  }

  .site-footer {
    padding: 44px 0 24px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-brand p,
  .footer-links a {
    font-size: 13px;
  }

.footer-links h4 {
  margin-bottom: 10px;
}
}

@media (min-width: 769px) {
  .guide-mobile-panel {
    display: block !important;
  }
}

@media (max-width: 960px) {
  .category-toolbar__sort {
    display: none;
  }
}
