:root {
  color-scheme: light;
  --ink: #102326;
  --muted: #5b6768;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --line: #dce4df;
  --mint: #58b5a7;
  --mint-dark: #2d756c;
  --coral: #f35b53;
  --amber: #f0a13f;
  --blue: #2f6f91;
  --leaf: #5b965f;
  --rose: #d95f82;
  --shadow: 0 14px 34px rgba(16, 35, 38, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(170px, 230px);
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  min-height: 64px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(251, 252, 248, .92);
  border-bottom: 1px solid rgba(220, 228, 223, .9);
  backdrop-filter: blur(14px);
}

.brand,
.quick-nav,
.hero-actions,
.filter-bar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  max-width: min(480px, 38vw);
  font-weight: 800;
  line-height: 1.08;
}

.brand-name {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(14px, 1.25vw, 17px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(16, 35, 38, .18);
}

.brand-logo {
  width: 34px;
  height: 34px;
  transition: transform .28s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-6deg) scale(1.06);
}

.quick-nav {
  justify-self: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.quick-nav a,
.nav-menu-trigger {
  padding: 9px 11px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.quick-nav a:focus-visible,
.quick-nav a:hover,
.nav-menu-trigger:focus-visible,
.nav-menu-trigger:hover,
.nav-menu-trigger.is-active {
  background: #eef5f1;
  color: var(--ink);
  outline: none;
}

.nav-menu-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-menu-trigger::after {
  content: "v";
  font-size: 10px;
  transform: translateY(1px);
  transition: transform .2s ease;
}

.nav-menu-trigger:hover,
.nav-menu-trigger.is-active {
  transform: translateY(-1px);
}

.nav-menu-trigger.is-active::after {
  transform: rotate(180deg) translateY(-1px);
}

.nav-drawer {
  position: sticky;
  top: 64px;
  z-index: 19;
  max-height: 0;
  overflow: hidden;
  background: rgba(251, 252, 248, .96);
  border-bottom: 1px solid rgba(220, 228, 223, .92);
  box-shadow: 0 18px 34px rgba(16, 35, 38, .08);
  opacity: 0;
  transform: translateY(-12px);
  transition: max-height .34s ease, opacity .2s ease, transform .28s ease;
  backdrop-filter: blur(14px);
}

.nav-drawer.is-open {
  max-height: calc(100dvh - 64px);
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer-inner {
  width: min(1280px, calc(100% - 32px));
  padding: 14px 0 16px;
  margin: 0 auto;
}

.nav-drawer-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.nav-drawer-head h2 {
  margin: 3px 0 0;
  font-size: clamp(22px, 2.1vw, 26px);
  line-height: 1.05;
  letter-spacing: 0;
}

.nav-drawer-review-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 12px;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.nav-category-slider {
  display: grid;
  grid-auto-columns: minmax(250px, 24vw);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  max-height: calc(100dvh - 150px);
  padding-bottom: 8px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
}

.nav-category-panel {
  scroll-snap-align: start;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 0;
  max-height: calc(100dvh - 170px);
  overflow-y: auto;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-category-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.nav-category-icon,
.nav-subcategory-icon {
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 12px rgba(16, 35, 38, .12);
}

.nav-subcategory-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.nav-subcategory-list a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  background: #edf5f1;
  border: 1px solid #d0e4dc;
  border-radius: 8px;
  color: #244a47;
  font-size: 12px;
  font-weight: 800;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}

.nav-subcategory-list a:hover,
.nav-subcategory-list a:focus-visible,
.nav-drawer-review-link:hover,
.nav-drawer-review-link:focus-visible {
  background: var(--coral);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.nav-ad {
  justify-self: end;
  display: grid;
  min-width: 230px;
  min-height: 42px;
  align-content: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px dashed #b8c9c2;
  border-radius: 8px;
  color: #405256;
  font-size: 12px;
}

.nav-ad span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav-ad strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: clamp(460px, 62vh, 650px);
  overflow: hidden;
  background: #123236;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 24, 27, .9) 0%, rgba(9, 24, 27, .72) 42%, rgba(9, 24, 27, .2) 100%),
    linear-gradient(0deg, rgba(9, 24, 27, .48) 0%, rgba(9, 24, 27, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(730px, calc(100% - 32px));
  min-height: inherit;
  padding: 48px 0 64px;
  margin-left: clamp(16px, 6vw, 76px);
  color: #fff;
}

.eyebrow,
.section-kicker,
.product-badge {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 12px;
  font-size: clamp(42px, 9vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
.product-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .2s ease, background .18s ease, filter .18s ease;
  will-change: transform;
}

.button::before,
.product-cta::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(243, 91, 83, .34);
}

.button-secondary {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

.button:hover,
.product-cta:hover {
  filter: saturate(1.08);
  transform: translateY(-3px) scale(1.015);
}

.button:hover::before,
.product-cta:hover::before {
  transform: translateX(120%);
}

.button:active,
.product-cta:active,
.filter-chip:active,
.nav-menu-trigger:active {
  transform: translateY(1px) scale(.98);
}

.button:focus-visible,
.product-cta:focus-visible,
.filter-chip:focus-visible,
.category-tile:focus-visible {
  outline: 3px solid rgba(240, 161, 63, .62);
  outline-offset: 3px;
}

.disclosure {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.trend-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #fff;
}

.trend-strip a {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trend-strip a:last-child {
  border-right: 0;
}

.trend-strip a:hover {
  background: #ecf6f2;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(260px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.section-kicker,
.product-badge {
  color: var(--mint-dark);
}

.section h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.filter-bar {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: min(760px, 100%);
}

.filter-chip {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  display: grid;
  grid-template-rows: 188px minmax(0, 1fr) auto;
  height: 536px;
  min-height: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16, 35, 38, .06);
  animation: productIn .28s ease both;
  content-visibility: auto;
  contain-intrinsic-size: 444px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  border-color: rgba(45, 117, 108, .42);
  box-shadow: 0 14px 34px rgba(16, 35, 38, .14);
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

@keyframes productIn {
  from {
    opacity: .72;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-image-link {
  position: relative;
  display: grid;
  height: 188px;
  min-height: 0;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #f3f8f4 100%);
  border-bottom: 1px solid var(--line);
}

.product-image-link:hover .product-image {
  transform: scale(1.04);
}

.product-image {
  width: 100%;
  height: 152px;
  max-height: 152px;
  object-fit: contain;
  object-position: center;
  transition: transform .22s ease;
}

.deal-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 5px 8px;
  background: var(--coral);
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, .92);
  isolation: isolate;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.product-visual::before {
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
}

.product-visual::after {
  width: 132px;
  height: 132px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  transform: translate(42px, 22px);
}

.product-visual span {
  max-width: calc(100% - 36px);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.visual-cleaning {
  background: linear-gradient(135deg, #2f6f91, #57a99a);
}

.visual-air {
  background: linear-gradient(135deg, #3d766f, #9cc88a);
}

.visual-sleep {
  background: linear-gradient(135deg, #425a78, #e88d6f);
}

.visual-kitchen {
  background: linear-gradient(135deg, #b95547, #f0a13f);
}

.visual-tech {
  background: linear-gradient(135deg, #173b4a, #3d91a6);
}

.visual-travel {
  background: linear-gradient(135deg, #2c7c78, #e2b84a);
}

.visual-beauty {
  background: linear-gradient(135deg, #c84d70, #f0b289);
}

.visual-wellness {
  background: linear-gradient(135deg, #4d7760, #d9a84f);
}

.visual-gaming {
  background: linear-gradient(135deg, #26364f, #73a6b0);
}

.visual-pets {
  background: linear-gradient(135deg, #4f7b45, #d5a84c);
}

.visual-baby {
  background: linear-gradient(135deg, #4d7f95, #f0b889);
}

.visual-tools {
  background: linear-gradient(135deg, #46515f, #f0a13f);
}

.visual-auto {
  background: linear-gradient(135deg, #26384f, #d95f53);
}

.visual-fitness {
  background: linear-gradient(135deg, #2e7a67, #88c15f);
}

.visual-garden {
  background: linear-gradient(135deg, #3f7b3d, #e0b84f);
}

.visual-office {
  background: linear-gradient(135deg, #315b77, #83b0c7);
}

.visual-storage {
  background: linear-gradient(135deg, #6a5b8c, #c7a7d9);
}

.visual-smart {
  background: linear-gradient(135deg, #174d59, #58b5a7);
}

.visual-crafts {
  background: linear-gradient(135deg, #9a4c6a, #f0a13f);
}

.product-body {
  min-width: 0;
  overflow: hidden;
  padding: 15px 15px 12px;
}

.product-body h3 {
  display: -webkit-box;
  min-height: 64px;
  overflow: hidden;
  margin: 7px 0 8px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-body p:not(.product-badge) {
  display: -webkit-box;
  min-height: 62px;
  overflow: hidden;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-body ul {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 0;
  color: #334247;
  font-size: 13px;
  list-style: none;
}

.product-body li {
  position: relative;
  display: -webkit-box;
  overflow: hidden;
  padding-left: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-body li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "+";
  font-weight: 900;
}

.product-cta {
  min-height: 46px;
  margin: 0 15px 15px;
  padding: 11px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(16, 35, 38, .17);
}

.product-cta::after {
  margin-left: 8px;
  content: ">";
}

.product-cta:hover {
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(243, 91, 83, .26);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 0 15px 15px;
}

.product-actions .product-cta {
  margin: 0;
}

.product-cta-secondary {
  background: #edf5f1;
  color: var(--ink);
  border: 1px solid #d0e4dc;
  box-shadow: none;
}

.product-cta-secondary:hover {
  background: #dceee7;
  color: var(--ink);
  box-shadow: 0 10px 20px rgba(16, 35, 38, .09);
}

.category-section {
  width: min(1240px, calc(100% - 32px));
}

.text-link {
  color: var(--mint-dark);
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-tile {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16, 35, 38, .06);
}

.tile-icon,
.guide-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.category-tile .tile-icon {
  margin-bottom: 14px;
}

.category-tile span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-tile strong {
  max-width: 330px;
  font-size: 22px;
  line-height: 1.14;
}

.category-tile:hover {
  border-color: rgba(45, 117, 108, .46);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.reviews-section {
  padding-top: 22px;
}

.review-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.review-cloud span,
.review-cloud a {
  padding: 10px 12px;
  background: #edf5f1;
  border: 1px solid #d0e4dc;
  border-radius: 8px;
  color: #244a47;
  font-size: 14px;
  font-weight: 800;
}

.icon-link-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.icon-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.icon-link .guide-icon {
  align-self: start;
}

.icon-link span {
  overflow-wrap: anywhere;
}

.content-page {
  background: var(--paper);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 0;
}

.hub-shell {
  grid-template-columns: 1fr;
}

.article h1 {
  max-width: 900px;
  margin: 8px 0 14px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.title-with-icon {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.title-with-icon .guide-icon {
  width: 52px;
  height: 52px;
}

.article h2,
.article-sidebar h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-lede {
  max-width: 900px;
  margin: 0;
  color: #344448;
  font-size: 19px;
}

.article-note {
  max-width: 880px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.article-block {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.article-block:first-of-type {
  margin-top: 30px;
}

.review-product-hero {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-product-media {
  display: grid;
  height: 280px;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  background: linear-gradient(180deg, #fff 0%, #f3f8f4 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-product-media img {
  width: 100%;
  height: 248px;
  max-height: 248px;
  object-fit: contain;
  object-position: center;
}

.review-product-summary h2 {
  margin: 7px 0 10px;
}

.review-product-summary p:not(.product-badge) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.review-product-summary .product-cta {
  width: fit-content;
  margin: 16px 0 0;
}

.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-product {
  display: grid;
  grid-template-rows: 178px auto auto auto 1fr auto;
  align-content: start;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-product-image-link {
  display: grid;
  height: 178px;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(180deg, #fff 0%, #f3f8f4 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-product-image {
  width: 100%;
  height: 148px;
  max-height: 148px;
  object-fit: contain;
  object-position: center;
}

.mini-product h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.16;
}

.mini-product p {
  margin: 0;
  color: var(--muted);
}

.mini-product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-self: end;
}

.mini-product-actions .product-cta {
  min-height: 42px;
  margin: 0;
  padding: 10px;
  font-size: 13px;
}

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

.pros-cons div {
  padding: 12px;
  background: #f4f8f5;
  border-radius: 8px;
}

.pros-cons ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  margin: 8px 0 0;
  color: #35484b;
}

.pros-cons-large {
  max-width: 860px;
}

.clean-list {
  display: grid;
  max-width: 860px;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.clean-list li {
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-grid section {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.external-links p {
  max-width: 820px;
  color: var(--muted);
}

.video-review-note,
.video-direct-link,
.video-fallback p {
  max-width: 820px;
  color: var(--muted);
}

.video-review-frame {
  display: block;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  margin-top: 14px;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 35, 38, .12);
}

.video-embed-shell {
  width: 100%;
  max-width: 860px;
  margin-top: 14px;
}

.video-embed-loader {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background: #102326;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 35, 38, .12);
}

.video-embed-loader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .2s ease, opacity .2s ease;
}

.video-embed-loader:hover img,
.video-embed-loader:focus-visible img {
  opacity: .96;
  transform: scale(1.03);
}

.video-play-button {
  position: absolute;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 12px 48px;
  background: #ff5a52;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-play-button::before {
  position: absolute;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  content: "";
}

.video-direct-link {
  margin: 12px 0 0;
}

.video-direct-link a {
  color: #244a47;
  font-weight: 900;
}

.video-fallback {
  display: grid;
  max-width: 860px;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-fallback .product-cta {
  width: fit-content;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 13px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: #edf5f1;
  font-size: 13px;
  text-transform: uppercase;
}

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

.table-review-link {
  color: var(--mint-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

details {
  max-width: 840px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.link-grid a {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #244a47;
  font-weight: 800;
}

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

.link-grid-dense a {
  font-size: 14px;
}

.review-directory-nav {
  display: grid;
  gap: 18px;
}

.review-category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.review-category-strip a {
  scroll-snap-align: start;
  min-width: max-content;
  padding: 10px 12px;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}

.review-category-strip a:hover,
.review-category-strip a:focus-visible {
  background: var(--coral);
  outline: none;
  transform: translateY(-2px);
}

.review-subcategory-nav {
  display: grid;
  gap: 18px;
}

.review-subcategory-nav section {
  display: grid;
  gap: 10px;
}

.review-subcategory-nav h3 {
  margin: 0;
  font-size: 20px;
}

.review-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.review-link-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 4px 10px;
  align-items: center;
  min-height: 82px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #244a47;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.review-link-card:hover,
.review-link-card:focus-visible {
  border-color: rgba(45, 117, 108, .46);
  box-shadow: 0 10px 24px rgba(16, 35, 38, .1);
  outline: none;
  transform: translateY(-2px);
}

.review-link-image {
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  padding: 5px;
  object-fit: contain;
  background: linear-gradient(180deg, #fff 0%, #f3f8f4 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-link-card span {
  align-self: end;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
}

.review-link-card small {
  align-self: start;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.anchor-target {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden;
}

.article-sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #102326;
  color: #fff;
  border-radius: 8px;
}

.article-sidebar p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
}

.article-sidebar .button {
  width: 100%;
}

.button-dark {
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  padding: 34px clamp(16px, 4vw, 48px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  max-width: 700px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .72);
}

.footer-note {
  justify-self: end;
  font-size: 13px;
}

.email-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: end;
  justify-items: end;
  padding: 18px;
  background: rgba(16, 35, 38, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, background .22s ease;
}

.email-popup.is-visible {
  background: rgba(16, 35, 38, .28);
  opacity: 1;
  pointer-events: auto;
}

.email-popup-card {
  position: relative;
  width: min(420px, 100%);
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(16px);
  transition: transform .22s ease;
}

.email-popup.is-visible .email-popup-card {
  transform: translateY(0);
}

.email-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  background: #eef5f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.email-popup-card h2 {
  max-width: 330px;
  margin: 7px 0 8px;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: 0;
}

.email-popup-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.email-popup-form {
  display: grid;
  gap: 8px;
}

.email-popup-form label {
  font-size: 13px;
  font-weight: 900;
}

.email-popup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.email-popup-row input {
  min-width: 0;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #cbd9d4;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.email-popup-row .product-cta {
  margin: 0;
  white-space: nowrap;
}

.email-popup-note {
  margin: 2px 0 0;
  font-size: 13px;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .nav-ad {
    display: none;
  }

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

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

@media (max-width: 1060px) {
  .product-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    max-width: 100%;
  }

  .quick-nav {
    justify-self: start;
  }

  .product-card {
    min-height: 430px;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

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

  .link-grid-dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    width: 100%;
  }

  .brand-name {
    font-size: 14px;
    white-space: normal;
  }

  .quick-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 13px;
  }

  .quick-nav a,
  .nav-menu-trigger {
    justify-content: center;
    min-width: 0;
    padding: 8px 7px;
    text-align: center;
    white-space: nowrap;
  }

  .nav-drawer {
    top: 100px;
  }

  .nav-drawer.is-open {
    max-height: calc(100dvh - 100px);
  }

  .nav-drawer-inner {
    width: calc(100% - 24px);
    padding-block: 14px 16px;
  }

  .nav-drawer-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-drawer-head h2 {
    font-size: 22px;
  }

  .nav-drawer-review-link {
    width: 100%;
    justify-content: center;
  }

  .nav-category-slider {
    grid-auto-columns: minmax(244px, 86vw);
    max-height: calc(100dvh - 245px);
  }

  .nav-category-panel {
    max-height: calc(100dvh - 265px);
  }

  .nav-ad {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 24, 27, .92) 0%, rgba(9, 24, 27, .74) 55%, rgba(9, 24, 27, .42) 100%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .button,
  .product-cta {
    width: 100%;
  }

  .trend-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trend-strip a:nth-child(2n) {
    border-right: 0;
  }

  .intro-section,
  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .section-heading {
    display: grid;
    align-items: start;
  }

  .filter-bar {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .filter-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .product-grid,
  .category-grid,
  .icon-link-grid,
  .mini-product-grid,
  .mini-product-actions,
  .review-product-hero,
  .feature-grid,
  .pros-cons,
  .review-link-grid,
  .link-grid,
  .link-grid-dense {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 178px 1fr auto;
    height: auto;
    min-height: 0;
  }

  .product-image-link {
    height: 178px;
  }

  .product-image {
    height: 142px;
    max-height: 142px;
  }

  .product-body h3,
  .product-body p:not(.product-badge) {
    min-height: 0;
  }

  .review-product-summary .product-cta {
    width: 100%;
  }

  .email-popup {
    align-items: end;
    justify-items: center;
    padding: 12px;
  }

  .email-popup-row {
    grid-template-columns: 1fr;
  }

  .footer-note {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
