.hp-page {
  --hatch-green: 89 62% 27%;
  --green-accent: 89 62% 27%;
  --orange-accent: 24 94% 33%;
  color: #111827;
  background: #ffffff;
}

@media (min-width: 1024px) {
  #quick-comparison > .max-w-7xl {
    max-width: min(1520px, calc(100vw - 32px));
  }
}

.hp-container {
  width: min(100% - 32px, 1280px);
  max-width: calc(100vw - 32px);
  margin-inline: auto;
}

.hp-product-hero {
  background: hsl(var(--hatch-blue-bg));
  padding: 48px 0 72px;
}

.hp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.hp-breadcrumb a {
  color: #4b5563;
  text-decoration: none;
}

.hp-breadcrumb a:hover {
  color: hsl(var(--hatch-green));
}

.hp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.hp-hero-grid > * {
  min-width: 0;
}

.hp-eyebrow {
  margin: 0 0 14px;
  color: hsl(var(--hatch-green));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hp-hero-title {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(28px, 4vw, 42px);
  color: #111827;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hp-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hp-primary-button,
.hp-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.hp-primary-button {
  color: #ffffff;
  background: hsl(var(--hatch-purple));
  box-shadow: 0 14px 30px hsl(var(--hatch-purple) / 0.24);
}

.hp-secondary-button {
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.hp-primary-button:hover,
.hp-secondary-button:hover {
  transform: translateY(-2px);
}

.hp-product-visual {
  min-width: 0;
  overflow: visible;
  padding: 12px;
  margin: -12px;
}

.hp-visual-frame {
  overflow: hidden;
  max-width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgb(15 23 42 / 0.14);
}

.hp-visual-frame img {
  display: block;
  width: 100%;
  height: min(46vw, 480px);
  min-height: 360px;
  object-fit: cover;
  object-position: center 18%;
}

.hp-rest-plus-page .hp-visual-frame img {
  background: #f8fafc;
  object-fit: cover;
  object-position: center 18%;
}

.hp-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  min-width: 0;
  max-width: 100%;
}

.hp-rest-plus-page .hp-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
}

.hp-thumb {
  overflow: hidden;
  height: 92px;
  min-width: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.hp-rest-plus-page .hp-thumb {
  flex: initial;
  scroll-snap-align: none;
}

.hp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hp-rest-plus-page .hp-thumb img[src*="hatch-rest-plus-2nd-gen"] {
  object-fit: cover;
  object-position: center 20%;
  background: #ffffff;
}

.hp-thumb.is-active,
.hp-thumb:hover {
  border-color: hsl(var(--hatch-green));
  transform: translateY(-1px);
}

.hp-buy-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  margin-bottom: 44px;
}

.hp-tabs {
  position: sticky;
  top: 80px;
  z-index: 30;
  border-bottom: 1px solid #e5e7eb;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(12px);
}

.hp-tabs-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  overflow: visible;
  padding: 12px 0;
  scrollbar-width: none;
}

.hp-tabs-inner::-webkit-scrollbar {
  display: none;
}

.hp-tabs-inner::-webkit-scrollbar-track {
  background: transparent;
}

.hp-tabs-inner::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: hsl(var(--hatch-green) / 0.38);
  background-clip: content-box;
}

.hp-tabs-inner::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--hatch-green) / 0.62);
  background-clip: content-box;
}

.hp-tabs a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 10px 16px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.hp-tabs a.is-active {
  color: #ffffff;
  background: hsl(var(--hatch-green));
}

@media (hover: hover) and (pointer: fine) {
  .hp-tabs a:hover {
    color: hsl(var(--hatch-green));
    background: hsl(var(--hatch-green) / 0.12);
  }
}

.hp-section {
  padding: 82px 0;
  border-bottom: 1px solid #f3f4f6;
}

.hp-section-blue {
  background: hsl(var(--light-blue-bg));
}

.hp-section h2 {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hp-section p {
  color: #374151;
  font-size: 18px;
  line-height: 1.8;
}

.hp-section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.hp-note-card {
  border-left: 6px solid hsl(var(--hatch-green));
  border-radius: 18px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
}

.hp-note-card h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 1.9vw, 27px);
  font-weight: 900;
}

.hp-note-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.hp-note-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #eef2f7;
  padding-top: 12px;
}

.hp-note-card dt {
  color: #6b7280;
  font-weight: 800;
}

.hp-note-card dd {
  margin: 0;
  color: #111827;
  font-weight: 900;
}

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

.hp-feature {
  min-height: 260px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.06);
}

.hp-feature span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: hsl(var(--hatch-green));
  font-weight: 900;
}

.hp-feature h3 {
  margin: 24px 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.hp-feature p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.hp-review-overview-heading {
  max-width: none;
  width: 100%;
  margin-bottom: 26px;
}

.hp-review-fact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 36px;
}

.hp-review-fact-grid .hp-feature {
  min-height: 0;
  padding: 24px;
}

.hp-review-fact-grid .hp-feature h3 {
  margin-top: 20px;
  font-size: 20px;
}

.hp-review-fact-grid .hp-feature p {
  font-size: 15px;
}

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

.hp-related-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.06);
}

.hp-related-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 18%;
}

.hp-related-card h3 {
  margin: 22px 22px 8px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.hp-related-card p {
  margin: 0 22px 18px;
  font-size: 15px;
  line-height: 1.6;
}

.hp-related-card a {
  display: inline-flex;
  margin: 0 22px 24px;
  color: hsl(var(--hatch-green));
  font-weight: 900;
  text-decoration: none;
}

.hp-commerce-hero .hp-hero-grid {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.hp-commerce-hero .hp-hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: clamp(16px, 2vw, 26px);
  padding-block: clamp(12px, 1.8vw, 26px);
}

.hp-commerce-hero .hp-hero-copy > * {
  margin-top: 0;
  margin-bottom: 0;
}

.hp-commerce-hero .hp-hero-copy .hp-sale-badge {
  align-self: flex-start;
}

.hp-commerce-hero .hp-hero-copy .hp-hero-actions {
  margin-top: 4px;
}

.hp-sale-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #4f7f1f;
  color: #ffffff;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

.hp-stars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  color: #b45309;
  font-size: 18px;
  font-weight: 900;
}

.hp-stars span {
  min-width: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hp-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.hp-product-meta span {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 12px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 900;
}

.hp-price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.hp-price-line del {
  color: #475569;
  font-size: 20px;
  font-weight: 800;
}

.hp-price-line strong {
  color: hsl(var(--green-accent));
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hp-price-line span {
  color: #b91c1c;
  font-size: 14px;
  font-weight: 900;
}

.hp-list-clean {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hp-list-clean li {
  position: relative;
  padding-left: 26px;
  color: #374151;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.hp-list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: hsl(var(--hatch-green));
}

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

.hp-offer-card {
  display: grid;
  gap: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 26px rgb(15 23 42 / 0.07);
}

.hp-offer-card h3,
.hp-offer-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.hp-offer-card strong {
  color: hsl(var(--green-accent));
  font-size: 30px;
  font-weight: 900;
}

.hp-offer-card span {
  color: #475569;
  font-weight: 800;
}

.hp-related-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hp-related-grid-five .hp-related-card img {
  height: 150px;
  object-fit: cover;
  padding: 0;
  background: #f8fafc;
}

.hp-related-grid-five .hp-related-card h3 {
  font-size: 18px;
}

.hp-product-tabs-section {
  padding: 82px 0;
  border-bottom: 1px solid #f3f4f6;
}

.hp-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 48px 84px;
  align-items: start;
}

.hp-copy-stack {
  display: grid;
  gap: 28px;
}

.hp-copy-stack h2,
.hp-product-tabs-section h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 900;
}

.hp-product-tabs-section h2[id],
.hp-section h2[id] {
  scroll-margin-top: 168px;
}

.hp-product-tabs-section[id],
.hp-section[id],
.ha-related-reviews-section[id],
.hp-review-copy-section h2[id],
.hp-section-heading h2[id],
.hp-section-heading h3[id] {
  scroll-margin-top: 176px;
}

.hp-copy-stack h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(21px, 1.9vw, 27px);
  font-weight: 900;
}

.hp-copy-stack p {
  margin: 0;
  color: #374151;
  font-size: 18px;
  line-height: 1.8;
}

.hp-description-image {
  overflow: hidden;
  margin: 6px 0 4px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
}

.hp-description-image picture {
  display: block;
}

.hp-description-image img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.hp-description-image figcaption {
  border-top: 1px solid #eef2f7;
  padding: 14px 18px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

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

.hp-feature-list li {
  border-bottom: 1px solid #eef2f7;
  padding: 12px 0;
  color: #374151;
  font-weight: 800;
}

.hp-spec-table {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.06);
}

.hp-spec-table dl {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  margin: 0;
}

.hp-spec-table dl div {
  display: contents;
}

.hp-spec-table dt,
.hp-spec-table dd {
  border-bottom: 1px solid #eef2f7;
  padding: 18px 22px;
}

.hp-spec-table dt {
  background: #f8fafc;
  color: #475569;
  font-weight: 900;
}

.hp-spec-table dd {
  margin: 0;
  color: #111827;
  font-weight: 900;
}

.hp-spec-table div:last-child dt,
.hp-spec-table div:last-child dd {
  border-bottom: 0;
}

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

.hp-video-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hp-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgb(15 23 42 / 0.1);
}

.hp-video-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.hp-video-card img[src*="hatch-rest-plus-2nd-gen"],
.ha-related-review-image img[src*="hatch-rest-plus-2nd-gen"] {
  object-position: center;
}

.hp-rest-plus-photo-grid,
.hp-product-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 0;
}

.hp-rest-plus-photo-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hp-product-photo-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hp-rest-plus-photo-grid figure,
.hp-rest-plus-wide-figure,
.hp-product-photo-grid figure,
.hp-product-wide-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.06);
}

.hp-rest-plus-photo-grid img,
.hp-rest-plus-wide-figure img,
.hp-product-photo-grid img,
.hp-product-wide-figure img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hp-rest-plus-photo-grid img,
.hp-product-photo-grid img {
  height: 220px;
}

.hp-rest-plus-wide-figure,
.hp-product-wide-figure {
  margin-top: 28px;
}

.hp-rest-plus-wide-figure img,
.hp-product-wide-figure img {
  height: clamp(320px, 42vw, 560px);
}

.hp-rest-plus-photo-grid figcaption,
.hp-rest-plus-wide-figure figcaption,
.hp-product-photo-grid figcaption,
.hp-product-wide-figure figcaption {
  border-top: 1px solid #eef2f7;
  padding: 13px 16px 15px;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.hp-photo-carousel {
  position: relative;
  margin: 30px 0 0;
}

.hp-photo-carousel-track {
  display: flex;
  gap: 20px;
  margin: 0 -16px;
  overflow-x: auto;
  padding: 16px 16px 32px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hp-photo-carousel-track::-webkit-scrollbar {
  display: none;
}

.hp-photo-carousel-track figure {
  flex: 0 0 min(340px, 82vw);
  overflow: hidden;
  margin: 0;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.06);
  scroll-snap-align: start;
}

.hp-photo-carousel-track picture {
  display: block;
}

.hp-photo-carousel-track img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.hp-photo-carousel-track figcaption {
  border-top: 1px solid #eef2f7;
  padding: 13px 16px 15px;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.hp-photo-carousel-arrow {
  position: absolute;
  top: calc(50% - 10px);
  z-index: 2;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: hsl(var(--hatch-green));
  box-shadow: 0 14px 28px rgb(15 23 42 / 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hp-photo-carousel-arrow:hover {
  background: hsl(var(--hatch-green) / 0.9);
  transform: translateY(-50%) scale(1.04);
}

.hp-photo-carousel-arrow:disabled {
  cursor: default;
  opacity: 0.35;
  transform: translateY(-50%);
}

.hp-photo-carousel-arrow-left {
  left: -8px;
}

.hp-photo-carousel-arrow-right {
  right: -8px;
}

@media (min-width: 900px) {
  .hp-photo-carousel-track figure {
    flex-basis: calc((100% - 40px) / 3);
  }

  .hp-photo-carousel-track img {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .hp-photo-carousel-arrow-left {
    left: -10px;
  }

  .hp-photo-carousel-arrow-right {
    right: -10px;
  }
}

.hp-video-card span {
  display: block;
  padding: 18px 20px 22px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}

.hp-review-summary {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.hp-review-score {
  border-radius: 22px;
  background: #f2fdf5;
  padding: 30px;
  text-align: center;
}

.hp-review-score strong {
  display: block;
  color: hsl(var(--green-accent));
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.hp-review-score span {
  color: #475569;
  font-weight: 900;
}

.hp-review-bars {
  display: grid;
  gap: 12px;
}

.hp-review-bar {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(80px, 1fr) minmax(58px, max-content);
  gap: 10px;
  align-items: center;
  color: #374151;
  font-weight: 800;
}

.hp-review-bar > span:first-child {
  min-width: 0;
  line-height: 1.28;
}

.hp-review-bar > span:last-child {
  text-align: right;
  white-space: nowrap;
}

.hp-review-bar i {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
}

.hp-review-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: hsl(var(--hatch-green));
}

.hp-review-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.hp-review-controls button {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 14px;
  color: #4b5563;
  font-weight: 900;
}

.hp-review-controls button:first-child {
  color: #ffffff;
  background: hsl(var(--hatch-green));
  border-color: hsl(var(--hatch-green));
}

.hp-review-list {
  display: grid;
  gap: 18px;
}

.hp-review-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 14px 30px rgb(15 23 42 / 0.06);
}

.hp-review-card h3 {
  margin: 8px 0 4px;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.hp-review-card time {
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

.hp-review-card p {
  margin: 16px 0 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.75;
}

.hp-review-form {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #f8fafc;
  padding: 26px;
}

.hp-review-form h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.hp-review-form input,
.hp-review-form textarea,
.hp-review-form select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 14px;
  color: #111827;
  font: inherit;
}

.hp-review-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 52px;
  background-image:
    linear-gradient(45deg, transparent 50%, #475569 50%),
    linear-gradient(135deg, #475569 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 18px) 50%;
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
}

.hp-review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hp-floating-offer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
  border-top: 1px solid #e5e7eb;
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 -8px 26px rgb(15 23 42 / 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
  backdrop-filter: blur(14px);
}

.hp-floating-offer.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hp-floating-offer.is-docked {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: auto;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hp-floating-inner {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px 0;
}

.hp-floating-inner img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.hp-floating-inner > .ha-related-review-image {
  width: 48px;
  height: 48px;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.hp-floating-inner h2,
.hp-floating-inner h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #111827;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.hp-floating-inner span {
  color: hsl(var(--green-accent));
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.hp-floating-inner .hp-primary-button {
  min-height: 42px;
  padding: 11px 18px;
  white-space: nowrap;
}

.hp-faq-list {
  display: grid;
  gap: 14px;
}

#section-reviews .hp-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.hp-faq-item {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgb(15 23 42 / 0.06);
}

.hp-faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.hp-faq-item summary::-webkit-details-marker {
  display: none;
}

.hp-faq-answer {
  overflow: hidden;
  height: 0;
}

.hp-faq-item[open] .hp-faq-answer {
  height: auto;
}

.hp-faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 17px;
}

#quick-comparison {
  padding-bottom: 0;
}

.ha-review-card-body {
  max-width: none;
  padding: 0 24px 28px;
}

.ha-review-card-details {
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
}

.ha-review-card-details summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: hsl(var(--green-accent));
  background: #f9fafb;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.ha-review-card-details summary:hover {
  background: #f3f4f6;
}

.ha-review-card-details summary::-webkit-details-marker {
  display: none;
}

.ha-review-card-details svg {
  transition: transform 180ms ease;
}

.ha-review-card-details[open] summary svg {
  transform: rotate(180deg);
}

.ha-understanding-items {
  position: relative;
  display: grid;
  gap: 32px;
}

.ha-understanding-items::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 22px;
  width: 4px;
  border-radius: 999px;
  background: hsl(var(--hatch-green));
  content: "";
  pointer-events: none;
}

.ha-understanding-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.ha-understanding-number {
  position: relative;
  z-index: 1;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: hsl(var(--hatch-green));
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 24px hsl(var(--hatch-green) / 0.24);
}

.ha-understanding-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.08);
}

.ha-understanding-card h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 760px) {

  .ha-understanding-items {
    gap: 22px;
  }

  .ha-understanding-items::before {
    left: 20px;
  }

  .ha-understanding-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ha-understanding-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .ha-understanding-card {
    padding: 20px 18px;
  }

  .ha-understanding-card h3 {
    font-size: 20px;
  }
}

.ha-table-wrap {
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid #dbe3ef;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgb(15 23 42 / 0.08);
}

.ha-table-wrap table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.ha-table-wrap th,
.ha-table-wrap td {
  border-bottom: 1px solid #edf2f7;
  padding: 16px 36px;
  text-align: left;
  vertical-align: top;
  color: #374151;
  font-size: 15px;
  line-height: 1.45;
}

.ha-table-wrap th {
  color: #111827;
  background: #f2fdf5;
  font-weight: 900;
}

.ha-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

:root {
  --hp-review-section-rhythm: 82px;
  --hp-review-media-inner-offset: 64px;
  --hp-review-media-after-table-offset: 42px;
}

.hp-review-copy-section {
  position: relative;
  display: grid;
  gap: 18px;
  padding: var(--hp-review-section-rhythm) 0;
  background: transparent;
}

.hp-review-copy-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: #dbe3ef;
  content: "";
  pointer-events: none;
}

.hp-section[data-cms-block="related-products"] .hp-section-heading {
  max-width: none;
}

.hp-section[data-cms-block="related-products"] .hp-section-heading > h2,
.hp-product-tabs-section .hp-section-heading > h2,
.hp-product-tabs-section .hp-review-copy-section > h2,
.hp-restore-review-section .hp-section-heading > h2,
.hp-restore-review-section .hp-review-copy-section > h2,
#section-additional-information .hp-section-heading > h2,
#section-additional-information .hp-review-copy-section > h2,
#section-videos .hp-section-heading > h2,
#section-reviews .hp-section-heading > h2,
h2.hp-subsection-title {
  margin: 0 0 12px;
  border-left: 5px solid hsl(var(--hatch-green));
  padding-left: 14px;
  color: #111827;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 900;
}

h3.hp-subsection-title,
.hp-restore-review-section .hp-review-copy-section > h3,
#section-additional-information .hp-section-heading > h3,
#section-additional-information .hp-review-copy-section > h3,
#section-videos .hp-section-heading > h3,
#section-reviews .hp-section-heading > h3,
.hp-review-copy-section > h3 {
  margin: 0 0 12px;
  border-left: 5px solid hsl(var(--hatch-green));
  padding-left: 12px;
  color: #111827;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.15;
  font-weight: 900;
}

.hp-section-heading > .hp-subsection-title {
  margin-bottom: 0;
}

.hp-review-copy-section > ul,
.hp-review-copy-section > ol {
  display: grid;
  gap: 14px;
  margin: 8px 0;
  border: 1px solid rgb(211 232 197);
  border-radius: 24px;
  padding: 20px;
  list-style: none;
  background: #f2fdf5;
}

.hp-review-copy-section > ul:last-child,
.hp-review-copy-section > ol:last-child,
.hp-review-copy-section > .ha-table-wrap:last-child,
.hp-review-copy-section > .hp-understanding-stack:last-child {
  margin-bottom: 0;
}

.hp-review-copy-section > ul > li,
.hp-review-copy-section > ol > li {
  position: relative;
  margin: 0;
  border: 1px solid rgb(220 236 208);
  border-radius: 18px;
  padding: 16px 18px 16px 58px;
  color: #374151;
  background: #ffffff;
  font-size: 17px;
  line-height: 1.65;
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.04);
}

.hp-review-copy-section > ul > li::before,
.hp-review-copy-section > ol > li::before {
  position: absolute;
  top: 17px;
  left: 20px;
  color: hsl(var(--gold-accent));
  content: "\2605";
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.hp-review-copy-section > ul > li strong,
.hp-review-copy-section > ol > li strong,
.hp-review-copy-section > ul > li a,
.hp-review-copy-section > ol > li a {
  color: hsl(var(--hatch-green));
  font-weight: 900;
}

.hp-basics-spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.hp-basics-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.hp-basics-copy > ol,
.hp-basics-copy > ul {
  display: grid;
  gap: 14px;
  margin: 8px 0;
  border: 1px solid rgb(211 232 197);
  border-radius: 24px;
  padding: 20px;
  list-style: none;
  background: #f2fdf5;
}

.hp-basics-copy > ol > li,
.hp-basics-copy > ul > li {
  position: relative;
  margin: 0;
  border: 1px solid rgb(220 236 208);
  border-radius: 18px;
  padding: 16px 18px 16px 58px;
  color: #374151;
  background: #ffffff;
  font-size: 17px;
  line-height: 1.65;
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.04);
}

.hp-basics-copy > ol > li::before,
.hp-basics-copy > ul > li::before {
  position: absolute;
  top: 17px;
  left: 20px;
  color: hsl(var(--gold-accent));
  content: "\2605";
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.hp-basics-copy > ol > li strong,
.hp-basics-copy > ul > li strong,
.hp-basics-copy > ol > li a,
.hp-basics-copy > ul > li a {
  color: hsl(var(--hatch-green));
  font-weight: 900;
}

.hp-core-specs-card {
  min-width: 0;
  border: 1px solid #dbe3ef;
  border-left: 6px solid hsl(var(--hatch-green));
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgb(15 23 42 / 0.08);
}

.hp-core-specs-card h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.15;
  font-weight: 900;
}

.hp-core-specs-card .ha-table-wrap {
  margin: 0;
  border-radius: 18px;
  box-shadow: none;
}

.hp-core-specs-card .ha-table-wrap table {
  min-width: 0;
}

.hp-core-specs-card .ha-table-wrap th,
.hp-core-specs-card .ha-table-wrap td {
  padding: 12px 14px;
  font-size: 14px;
}

.hp-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

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

.hp-decision-grid-3-2 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hp-decision-grid-3-2 > .hp-decision-panel {
  grid-column: span 2;
}

.hp-decision-grid-3-2 > .hp-decision-panel:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.hp-decision-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.hp-review-copy-section > .hp-list-intro,
.hp-decision-panel > .hp-list-intro {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 7px 14px;
  color: #ffffff;
  background: hsl(var(--hatch-green));
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.hp-review-copy-section > .hp-list-intro-bad,
.hp-decision-panel > .hp-list-intro-bad {
  background: hsl(var(--hatch-red));
}

.hp-review-copy-section > .hp-list-intro-warn,
.hp-decision-panel > .hp-list-intro-warn {
  background: hsl(var(--orange-accent));
}

.hp-decision-panel > ul {
  display: grid;
  flex: 1 1 auto;
  gap: 14px;
  margin: 0;
  border: 1px solid rgb(211 232 197);
  border-radius: 24px;
  padding: 20px;
  list-style: none;
  background: #f2fdf5;
}

.hp-decision-panel > ul > li {
  position: relative;
  margin: 0;
  border: 1px solid rgb(220 236 208);
  border-radius: 18px;
  padding: 16px 18px 16px 58px;
  color: #374151;
  background: #ffffff;
  font-size: 17px;
  line-height: 1.65;
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.04);
}

.hp-decision-panel > ul > li::before {
  position: absolute;
  top: 17px;
  left: 20px;
  color: hsl(var(--gold-accent));
  content: "\2605";
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.hp-review-copy-section > .hp-decision-list-good > li::before,
.hp-decision-panel > .hp-decision-list-good > li::before {
  color: hsl(var(--hatch-green));
  content: "\2713";
}

.hp-review-copy-section > .hp-decision-list-bad,
.hp-decision-panel > .hp-decision-list-bad {
  border-color: #fecaca;
  background: #fff5f5;
}

.hp-review-copy-section > .hp-decision-list-bad > li,
.hp-decision-panel > .hp-decision-list-bad > li {
  border-color: #fee2e2;
}

.hp-review-copy-section > .hp-decision-list-bad > li::before,
.hp-decision-panel > .hp-decision-list-bad > li::before {
  color: hsl(var(--hatch-red));
  content: "\00d7";
}

.hp-review-copy-section > .hp-decision-list-warn,
.hp-decision-panel > .hp-decision-list-warn {
  border-color: #fed7aa;
  background: #fffbeb;
}

.hp-review-copy-section > .hp-decision-list-warn > li,
.hp-decision-panel > .hp-decision-list-warn > li {
  border-color: #fde68a;
}

.hp-review-copy-section > .hp-decision-list-warn > li::before,
.hp-decision-panel > .hp-decision-list-warn > li::before {
  color: hsl(var(--orange-accent));
  content: "!";
}

@media (max-width: 760px) {
  .hp-basics-spec-grid {
    grid-template-columns: 1fr;
  }

  .hp-core-specs-card {
    padding: 18px;
  }

  .hp-decision-grid {
    grid-template-columns: 1fr;
  }

  .hp-decision-grid-3-2 > .hp-decision-panel,
  .hp-decision-grid-3-2 > .hp-decision-panel:nth-last-child(-n + 2) {
    grid-column: auto;
  }
}

.hp-review-copy-section > .hp-callout {
  margin: 2px 0 0;
  border: 1px solid rgb(211 232 197);
  border-left: 6px solid hsl(var(--hatch-green));
  border-radius: 18px;
  padding: 18px 20px;
  background: #f2fdf5;
  color: #1f2937;
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.05);
}

.hp-review-copy-section > .hp-callout-rule,
.hp-review-copy-section > .hp-callout-bottom,
.hp-basics-copy > .hp-callout-source {
  margin: 22px 0 0;
  border: 1px solid rgb(211 232 197);
  border-left: 6px solid hsl(var(--hatch-green));
  border-radius: 18px;
  padding: 18px 20px;
  color: #1f2937;
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.05);
}

.hp-review-copy-section > .hp-callout strong {
  color: hsl(var(--hatch-green));
  font-weight: 900;
}

.hp-review-copy-section > .hp-callout-source {
  border-color: #dbeafe;
  border-left-color: hsl(var(--hatch-purple));
  background: #f8fafc;
}

.hp-review-copy-section > .hp-callout-source strong {
  color: hsl(var(--hatch-purple));
}

.hp-review-copy-section > .hp-callout-take,
.hp-review-copy-section > .hp-callout-rule {
  border-color: #fed7aa;
  border-left-color: hsl(var(--orange-accent));
  background: #fffbeb;
}

.hp-review-copy-section > .hp-callout-take strong,
.hp-review-copy-section > .hp-callout-rule strong {
  color: hsl(var(--orange-accent));
}

.hp-review-copy-section > .hp-callout-bottom {
  border-color: rgb(211 232 197);
  border-left-color: hsl(var(--hatch-green));
  background: linear-gradient(135deg, #f2fdf5 0%, #ffffff 100%);
}

.hp-review-copy-section + .hp-review-copy-section,
.hp-copy-stack > .hp-review-copy-section + .hp-review-copy-section {
  margin-top: 0;
}

.hp-review-copy-section + .hp-description-image,
.hp-review-copy-section + .hp-product-photo-grid,
.hp-review-copy-section + .hp-rest-plus-photo-grid,
.hp-review-copy-section + .hp-photo-carousel,
.hp-review-copy-section + .hp-rest-plus-wide-figure,
.hp-review-copy-section + .hp-product-wide-figure {
  margin-top: var(--hp-review-section-rhythm);
}

.hp-review-copy-section:has(+ .hp-description-image),
.hp-review-copy-section:has(+ .hp-product-photo-grid),
.hp-review-copy-section:has(+ .hp-rest-plus-photo-grid),
.hp-review-copy-section:has(+ .hp-photo-carousel),
.hp-review-copy-section:has(+ .hp-rest-plus-wide-figure),
.hp-review-copy-section:has(+ .hp-product-wide-figure) {
  padding-bottom: 0;
}

.hp-description-image + .hp-review-copy-section,
.hp-product-photo-grid + .hp-review-copy-section,
.hp-rest-plus-photo-grid + .hp-review-copy-section,
.hp-photo-carousel + .hp-review-copy-section,
.hp-rest-plus-wide-figure + .hp-review-copy-section,
.hp-product-wide-figure + .hp-review-copy-section {
  margin-top: var(--hp-review-section-rhythm);
}

.hp-restore-overview-layout + .hp-description-image,
.hp-restore-overview-layout + .hp-product-photo-grid,
.hp-restore-overview-layout + .hp-rest-plus-photo-grid,
.hp-restore-overview-layout + .hp-photo-carousel,
.hp-restore-overview-layout + .hp-rest-plus-wide-figure,
.hp-restore-overview-layout + .hp-product-wide-figure {
  margin-top: var(--hp-review-section-rhythm);
}

.hp-copy-stack > * + .hp-description-image,
.hp-copy-stack > .hp-review-copy-section + .hp-product-photo-grid,
.hp-copy-stack > .hp-review-copy-section + .hp-rest-plus-photo-grid,
.hp-copy-stack > .hp-review-copy-section + .hp-photo-carousel,
.hp-copy-stack > .hp-review-copy-section + .hp-rest-plus-wide-figure,
.hp-copy-stack > .hp-review-copy-section + .hp-product-wide-figure {
  margin-top: var(--hp-review-section-rhythm);
}

.hp-copy-stack > .hp-description-image + .hp-review-copy-section,
.hp-copy-stack > .hp-product-photo-grid + .hp-review-copy-section,
.hp-copy-stack > .hp-rest-plus-photo-grid + .hp-review-copy-section,
.hp-copy-stack > .hp-photo-carousel + .hp-review-copy-section,
.hp-copy-stack > .hp-rest-plus-wide-figure + .hp-review-copy-section,
.hp-copy-stack > .hp-product-wide-figure + .hp-review-copy-section {
  margin-top: var(--hp-review-section-rhythm);
}

.hp-copy-stack > .hp-description-image,
.hp-copy-stack > .hp-product-photo-grid,
.hp-copy-stack > .hp-rest-plus-photo-grid,
.hp-copy-stack > .hp-photo-carousel,
.hp-copy-stack > .hp-rest-plus-wide-figure,
.hp-copy-stack > .hp-product-wide-figure {
  margin-bottom: 0;
}

.hp-review-longform {
  gap: 0;
  margin-top: var(--hp-review-section-rhythm);
}

.hp-section > .hp-container > .hp-review-longform:first-child,
.hp-product-tabs-section > .hp-container > .hp-review-longform:first-child {
  margin-top: 0;
}

.hp-review-longform > .hp-review-copy-section:last-child {
  padding-bottom: 0;
}

.hp-review-copy-section .hp-review-figure {
  margin-top: var(--hp-review-media-inner-offset);
  margin-bottom: var(--hp-review-media-inner-offset);
}

.hp-review-copy-section > .hp-description-image,
.hp-review-copy-section > .hp-product-photo-grid,
.hp-review-copy-section > .hp-rest-plus-photo-grid,
.hp-review-copy-section > .hp-photo-carousel,
.hp-review-copy-section > .hp-rest-plus-wide-figure,
.hp-review-copy-section > .hp-product-wide-figure {
  margin-top: var(--hp-review-media-inner-offset);
  margin-bottom: var(--hp-review-media-inner-offset);
}

.hp-review-copy-section > .ha-table-wrap + .hp-description-image,
.hp-review-copy-section > .ha-table-wrap + .hp-product-photo-grid,
.hp-review-copy-section > .ha-table-wrap + .hp-rest-plus-photo-grid,
.hp-review-copy-section > .ha-table-wrap + .hp-photo-carousel,
.hp-review-copy-section > .ha-table-wrap + .hp-rest-plus-wide-figure,
.hp-review-copy-section > .ha-table-wrap + .hp-product-wide-figure {
  margin-top: var(--hp-review-media-after-table-offset);
}

.hp-review-copy-section > .hp-description-image:last-child,
.hp-review-copy-section > .hp-product-photo-grid:last-child,
.hp-review-copy-section > .hp-rest-plus-photo-grid:last-child,
.hp-review-copy-section > .hp-photo-carousel:last-child,
.hp-review-copy-section > .hp-rest-plus-wide-figure:last-child,
.hp-review-copy-section > .hp-product-wide-figure:last-child,
.hp-review-copy-section .hp-review-figure:last-child {
  margin-bottom: 0;
}

.hp-product-photo-grid picture {
  display: block;
}

.hp-restore-review-section .hp-container {
  width: min(100% - 32px, 1280px);
  max-width: calc(100vw - 32px);
}

.hp-restore-review-section .hp-section-heading,
#section-additional-information .hp-section-heading,
#section-videos .hp-section-heading,
#section-reviews .hp-section-heading {
  max-width: none;
}

.hp-restore-overview-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  margin-bottom: 0;
}

.hp-dreamegg-page .hp-dreamegg-overview-layout {
  grid-template-columns: minmax(0, 838fr) minmax(360px, 408fr);
  align-items: stretch;
}

.hp-dreamegg-page .hp-dreamegg-overview-layout > .hp-copy-stack,
.hp-dreamegg-page .hp-dreamegg-overview-layout > .hp-note-card {
  height: 100%;
}

.hp-text-card-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.hp-text-card-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hp-text-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  border: 1px solid #dbe3ef;
  border-top: 5px solid hsl(var(--hatch-green));
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.07);
}

.hp-text-card h3 {
  margin: 0;
  color: #111827;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 900;
}

.hp-text-card p {
  margin: 0;
}

#daily-use + .hp-text-card-grid .hp-text-card {
  padding: 44px;
}

.hp-warning-note {
  display: grid;
  gap: 12px;
  border: 1px solid #fed7aa;
  border-left: 6px solid hsl(var(--orange-accent));
  border-radius: 18px;
  padding: 16px;
  background: #fffbeb;
  color: #374151;
}

.hp-warning-note > strong {
  color: hsl(var(--orange-accent));
  font-weight: 900;
}

.hp-warning-note ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-warning-note li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.hp-warning-note li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: hsl(var(--orange-accent));
  content: "!";
  font-weight: 900;
}

.hp-review-faq-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.hp-restore-overview-layout .hp-copy-stack,
.hp-restore-overview-layout .hp-description-image,
.hp-restore-overview-layout .hp-note-card {
  width: 100%;
}

.hp-restore-overview-layout .hp-note-card {
  align-self: start;
}

.hp-rest-plus-page .hp-restore-overview-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 48px 74px;
  align-items: stretch;
}

.hp-rest-plus-page .hp-restore-overview-layout .hp-note-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  max-width: none;
}

.hp-rest-plus-page .hp-restore-overview-layout .hp-description-image {
  grid-column: 1 / -1;
  margin-top: 0;
}

.hp-rest-plus-page .hp-basics-spec-grid {
  grid-template-columns: minmax(0, 1fr);
}

.hp-rest-plus-page .hp-rest-plus-overview-copy {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hp-rest-plus-page .hp-rest-plus-overview-copy p + p {
  margin-top: 16px;
}

.hp-rest-plus-page.hp-dreamegg-page .hp-dreamegg-overview-layout {
  grid-template-columns: minmax(0, 838fr) minmax(360px, 408fr);
  column-gap: 84px;
  align-items: stretch;
}

.hp-rest-plus-page.hp-dreamegg-page .hp-dreamegg-overview-layout .hp-rest-plus-overview-copy {
  align-self: stretch;
  justify-content: center;
}

.hp-rest-plus-page.hp-dreamegg-page .hp-dreamegg-overview-layout .hp-note-card {
  align-self: stretch;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 12px 14px;
}

.hp-rest-plus-page.hp-dreamegg-page .hp-dreamegg-overview-layout .hp-note-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.hp-rest-plus-page.hp-dreamegg-page .hp-dreamegg-overview-layout .hp-feature-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.hp-rest-plus-page.hp-dreamegg-page .hp-dreamegg-overview-layout .hp-feature-list li {
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 8px 10px;
  background: #fbfdff;
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .hp-rest-plus-page .hp-restore-overview-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .hp-rest-plus-page .hp-restore-overview-layout .hp-note-card,
  .hp-rest-plus-page .hp-restore-overview-layout .hp-description-image {
    grid-column: auto;
  }

  .hp-rest-plus-page .hp-restore-overview-layout .hp-note-card {
    align-self: auto;
  }
}

.hp-rest-plus-page .hp-basics-spec-grid {
  gap: clamp(20px, 3vw, 32px);
}

.hp-rest-plus-page .hp-basics-copy {
  max-width: none;
}

.hp-rest-plus-page .hp-basics-copy > .hp-callout-source,
.hp-rest-plus-page .hp-review-copy-section > .hp-callout-rule,
.hp-rest-plus-page .hp-review-copy-section > .hp-callout-bottom {
  margin: 22px 0 0;
  border: 1px solid rgb(211 232 197);
  border-left: 6px solid hsl(var(--hatch-green));
  border-radius: 18px;
  padding: 18px 20px;
  background: #f2fdf5;
  color: #1f2937;
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.05);
}

.hp-rest-plus-page .hp-basics-copy > .hp-callout-source {
  border-color: #dbeafe;
  border-left-color: hsl(var(--hatch-purple));
  background: #f8fafc;
}

.hp-rest-plus-page .hp-basics-copy > .hp-callout-source strong {
  color: hsl(var(--hatch-purple));
  font-weight: 900;
}

.hp-rest-plus-page .hp-review-copy-section > .hp-callout-rule {
  border-color: #fed7aa;
  border-left-color: hsl(var(--orange-accent));
  background: #fffbeb;
}

.hp-rest-plus-page .hp-review-copy-section > .hp-callout-rule strong {
  color: hsl(var(--orange-accent));
  font-weight: 900;
}

.hp-rest-plus-page .hp-review-copy-section > .hp-callout-bottom strong {
  color: hsl(var(--hatch-green));
  font-weight: 900;
}

.hp-rest-plus-page #section-reviews .hp-review-list {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.hp-rest-plus-page#section-reviews .hp-review-list,
section.hp-rest-plus-page#section-reviews .hp-review-list {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.hp-rest-plus-page #section-reviews .hp-review-list + .hp-review-copy-section,
.hp-rest-plus-page#section-reviews .hp-review-list + .hp-review-copy-section,
section.hp-rest-plus-page#section-reviews .hp-review-list + .hp-review-copy-section {
  margin-top: clamp(26px, 4vw, 42px);
}

.hp-review-fullwidth {
  width: 100%;
}

.hp-review-fullwidth .hp-review-copy-section:first-child {
  padding-top: 0;
}

.hp-review-fullwidth .hp-review-copy-section:first-child::before {
  display: none;
}

.hp-review-fullwidth > .hp-review-copy-section:last-child,
.hp-product-tabs-section > .hp-container > .hp-review-copy-section:last-child {
  padding-bottom: 0;
}

.hp-understanding-stack {
  position: relative;
  display: grid;
  gap: 28px;
  margin: 22px 0;
}

.hp-understanding-line {
  position: absolute;
  left: 24px;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 999px;
  background: hsl(var(--hatch-green));
}

.hp-understanding-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.hp-understanding-number {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--hatch-green));
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgb(122 177 63 / 0.24);
}

.hp-understanding-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 28px);
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.08);
}

.hp-understanding-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
  font-weight: 900;
}

.hp-understanding-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.hp-understanding-card p + p {
  margin-top: 14px;
}

.hp-review-faq-heading {
  margin-top: 52px;
}

.hp-source-questions-block {
  width: 100%;
  margin-top: clamp(46px, 6vw, 72px);
}

.hp-source-questions-heading {
  width: 100%;
  max-width: none;
  margin-bottom: 26px;
  text-align: left;
}

.hp-source-questions-panel {
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
  box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
}

.hp-source-question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  width: 100%;
}

.hp-source-question-item {
  border-radius: 12px;
  padding-right: 18px;
  padding-left: 18px;
}

.hp-source-question-item .tc-faq-summary {
  min-height: 58px;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.hp-source-question-item .tc-faq-answer {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
}

.hp-source-domain-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid #fed7aa;
  border-left: 6px solid hsl(var(--orange-accent));
  border-radius: 18px;
  padding: 16px 18px;
  background: #fffbeb;
  color: #374151;
  font-size: 15px;
  line-height: 1.5;
}

.hp-source-domain-strip strong {
  color: #111827;
  font-weight: 900;
}

.hp-source-domain-strip span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: #ffffff;
  color: #4b5563;
  font-weight: 800;
}

.ha-related-reviews-section {
  padding: 82px 0;
  background: hsl(var(--hatch-blue-bg));
}

.ha-related-reviews-inner {
  width: min(100% - 32px, 1280px);
  max-width: calc(100vw - 32px);
  margin: 0 auto;
}

.ha-related-reviews-inner h2 {
  margin: 0 0 42px;
  border-left: 5px solid hsl(var(--hatch-green));
  padding-left: 14px;
  color: #111827;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.ha-related-reviews-carousel {
  position: relative;
}

.ha-related-reviews-track {
  display: flex;
  gap: 24px;
  padding: 16px 16px 32px;
  scrollbar-width: none;
}

.ha-related-review-card {
  display: block;
  overflow: hidden;
  width: 320px;
  flex: 0 0 320px;
  border-radius: 20px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.08);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ha-related-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgb(15 23 42 / 0.13);
}

.ha-related-review-image {
  height: 192px;
  overflow: hidden;
  background: #f8fafc;
}

.ha-related-review-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.ha-related-review-card:hover .ha-related-review-image img {
  transform: scale(1.05);
}

.ha-related-review-body {
  padding: 24px;
}

.ha-related-review-body p {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
}

.ha-related-review-body h3 {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 180ms ease;
}

.ha-related-review-card:hover h3 {
  color: hsl(var(--hatch-green));
}

.ha-related-reviews-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: hsl(var(--hatch-green));
  box-shadow: 0 14px 28px rgb(15 23 42 / 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.ha-related-reviews-arrow:hover {
  background: hsl(var(--hatch-green) / 0.9);
  transform: translateY(-50%) scale(1.04);
}

.ha-related-reviews-arrow:disabled {
  cursor: default;
  opacity: 0.35;
  transform: translateY(-50%);
}

.ha-related-reviews-arrow-left {
  left: -24px;
}

.ha-related-reviews-arrow-right {
  right: -24px;
}

@media (max-width: 760px) {
  .ha-related-reviews-section {
    padding: 64px 0;
  }

  .ha-related-reviews-inner {
    width: calc(100% - 32px);
  }

  .ha-related-reviews-inner h2 {
    margin-bottom: 34px;
    font-size: 30px;
  }

  .ha-related-review-card {
    width: 286px;
    flex-basis: 286px;
  }

  .ha-related-reviews-arrow-left {
    left: -12px;
  }

  .ha-related-reviews-arrow-right {
    right: -12px;
  }
}

.hp-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hp-reveal,
  .hp-primary-button,
  .hp-secondary-button,
  .hp-thumb {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hp-hero-grid,
  .hp-commerce-hero .hp-hero-grid,
  .hp-content-layout {
    grid-template-columns: 1fr;
  }

  .hp-feature-grid,
  .hp-offer-grid,
  .hp-related-grid-five,
  .hp-video-grid,
  .hp-rest-plus-photo-grid,
  .hp-product-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hp-container {
    width: calc(100% - 32px);
  }

  .hp-product-hero {
    padding: 32px 0 54px;
  }

  .hp-hero-title,
  .hp-hero-copy h1 {
    font-size: 40px;
  }

  .hp-visual-frame img {
    min-height: 250px;
    height: 290px;
  }

  .hp-buy-strip {
    margin-top: -22px;
    margin-bottom: 34px;
  }

  .hp-tabs {
    top: 80px;
  }

  .hp-tabs-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    overflow: visible;
    padding-block: 10px;
  }

  .hp-tabs a {
    flex: 0 1 auto;
    min-width: 0;
    padding: 8px 9px;
    font-size: clamp(10px, 2.45vw, 12px);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .hp-commerce-hero .hp-hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hp-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 196px;
    contain: layout paint;
  }

  .hp-thumb {
    contain: layout paint;
  }

  @supports (content-visibility: auto) {
    #section-description {
      content-visibility: auto;
      contain-intrinsic-size: auto 22000px;
    }

    .hp-commerce-hero .hp-hero-copy,
    .hp-buy-strip {
      content-visibility: auto;
      contain-intrinsic-size: auto 760px;
    }

    .hp-buy-strip {
      contain-intrinsic-size: auto 320px;
    }

    .hp-review-longform {
      content-visibility: auto;
      contain-intrinsic-size: auto 16000px;
    }

    .hp-review-copy-section,
    .ha-related-reviews-section,
    .hp-photo-carousel {
      content-visibility: auto;
      contain-intrinsic-size: auto 860px;
    }
  }

  .hp-stars span {
    flex-basis: 100%;
  }

  .hp-section {
    padding: 62px 0;
  }

  .hp-feature-grid,
  .hp-related-grid,
  .hp-offer-grid,
  .hp-related-grid-five,
  .hp-video-grid,
  .hp-text-card-grid-four,
  .hp-review-faq-split,
  .hp-rest-plus-photo-grid,
  .hp-product-photo-grid,
  .hp-understanding-item,
  .hp-review-summary {
    grid-template-columns: 1fr;
  }

  .hp-rest-plus-photo-grid img,
  .hp-product-photo-grid img {
    height: 260px;
  }

  #section-reviews .hp-faq-list,
  .hp-source-question-list {
    grid-template-columns: 1fr;
  }

  .hp-understanding-stack {
    gap: 18px;
  }

  .hp-understanding-line {
    display: none;
  }

  .hp-understanding-item {
    gap: 12px;
  }

  .hp-understanding-number {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hp-spec-table dl {
    grid-template-columns: 1fr;
  }

  .hp-spec-table dt {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .hp-spec-table dd {
    padding-top: 6px;
  }

  .hp-floating-inner {
    grid-template-columns: 42px minmax(0, 1fr) auto !important;
    gap: 4px 10px;
    min-height: 60px;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  }

  .hp-floating-inner img {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }

  .hp-floating-inner > .ha-related-review-image {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }

  .hp-floating-inner h2,
  .hp-floating-inner h3 {
    grid-column: 2;
    min-width: 0;
    font-size: 14px;
    line-height: 1.18;
  }

  .hp-floating-inner span {
    grid-column: 2;
    justify-self: start;
    max-width: 100%;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.15;
    text-overflow: ellipsis;
  }

  .hp-floating-inner .hp-primary-button {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    width: auto;
    min-width: 104px;
    min-height: 38px;
    padding: 10px 12px;
    font-size: 12px;
    justify-content: center;
  }

  .hp-product-tabs-section h2[id],
  .hp-section h2[id],
  .hp-product-tabs-section[id],
  .hp-section[id],
  .ha-related-reviews-section[id],
  .hp-review-copy-section h2[id],
  .hp-section-heading h2[id],
  .hp-section-heading h3[id] {
    scroll-margin-top: 238px;
  }
}

.hp-section + .hp-product-tabs-section,
.hp-product-tabs-section + .hp-product-tabs-section {
  padding-top: 82px;
}

.hp-section + .hp-product-tabs-section > .hp-container > .hp-review-copy-section:first-child,
.hp-product-tabs-section + .hp-product-tabs-section > .hp-container > .hp-review-copy-section:first-child {
  padding-top: 0;
}

.hp-section + .hp-product-tabs-section > .hp-container > .hp-review-copy-section:first-child::before,
.hp-product-tabs-section + .hp-product-tabs-section > .hp-container > .hp-review-copy-section:first-child::before {
  display: none;
}

.hp-tabs-inner,
.hp-tabs[aria-label="Product review sections"] .hp-tabs-inner {
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  overflow: visible;
  scrollbar-width: none;
}

.hp-tabs-inner::-webkit-scrollbar,
.hp-tabs[aria-label="Product review sections"] .hp-tabs-inner::-webkit-scrollbar {
  display: none;
}

.hp-tabs a,
.hp-tabs[aria-label="Product review sections"] a {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .hp-tabs-inner,
  .hp-tabs[aria-label="Product review sections"] .hp-tabs-inner {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    overflow: visible;
    padding: 10px 0;
    scroll-snap-type: none;
  }

  .hp-tabs a,
  .hp-tabs[aria-label="Product review sections"] a {
    flex: 0 1 auto;
    min-width: 0;
    padding: 8px 9px;
    font-size: clamp(10px, 2.45vw, 12px);
    line-height: 1;
    text-align: center;
    scroll-snap-align: none;
  }
}

@media (max-width: 390px) {
  .hp-tabs-inner,
  .hp-tabs[aria-label="Product review sections"] .hp-tabs-inner {
    gap: 5px;
  }

  .hp-tabs a,
  .hp-tabs[aria-label="Product review sections"] a {
    padding: 7px 7px;
    font-size: 9.5px;
  }
}

@media (min-width: 761px) {
  .hp-tabs-inner,
  .hp-tabs[aria-label="Product review sections"] .hp-tabs-inner {
    width: min(calc(100vw - 12px), 1760px);
    max-width: calc(100vw - 12px);
    gap: 3px 4px;
    padding: 9px 0;
  }

  .hp-tabs a,
  .hp-tabs[aria-label="Product review sections"] a {
    padding: 7px 7px;
    font-size: 12px;
    line-height: 1.05;
  }
}

@media (min-width: 1360px) {
  .hp-tabs a,
  .hp-tabs[aria-label="Product review sections"] a {
    padding: 7px 8px;
    font-size: 12.5px;
  }
}
