:root {
  --teal: #124A65;
  --clay: #C68B4A;
  --ink: #2f2a24;
}

@font-face {
  font-family: "Spline Sans";
  src: url("./assets/fonts/SplineSans-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 700;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: "Spline Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, .94vw, 18px);
}

/* main{
  padding: 0 1.5rem;
} */

.promo {
  font-family: "Spline Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(9px, .52vw, 10px);
  font-weight: 400;
  letter-spacing: 1px;
}

.main-nav {
  font-size: clamp(13px, .73vw, 16px);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230, 221, 208, .7);
  box-shadow: 0 12px 28px rgba(47, 42, 36, .06);
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.mobile-menu-button {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid #e6ddd0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 22px rgba(47, 42, 36, .08);
}

.mobile-menu-button span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .2s ease, top .24s ease;
}

.mobile-menu-button span:nth-child(1) {
  top: 16px;
}

.mobile-menu-button span:nth-child(2) {
  top: 23px;
}

.mobile-menu-button span:nth-child(3) {
  top: 30px;
}

.mobile-menu-button.is-open span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-nav {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  border: 1px solid #eee5d8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(47, 42, 36, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height .34s ease,
    opacity .24s ease,
    transform .34s ease;
}

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1e8db;
  padding: 0 18px;
  color: #534b43;
  font-size: clamp(14px, 3.75vw, 15px);
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("./assets/images/arrow-right-dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  opacity: .55;
}

.mobile-search {
  border-bottom: 1px solid #f1e8db;
  padding: 14px 16px;
}

.mobile-search input {
  width: 100%;
  height: 42px;
  border-radius: 999px;
  background: #f8f1e8;
  padding: 0 44px 0 18px;
  color: #2f2a24;
}

.mobile-search .search-results {
  position: static;
  margin-top: 10px;
}

.mobile-nav-cta {
  background: var(--clay);
  color: #fff !important;
}

.mobile-nav-cta::after {
  filter: invert(1);
  opacity: .9 !important;
}

.header-separator {
  display: block;
  width: 1px;
  height: 50px;
  margin-top: 3px;
  background: #e6ddd0;
}

em {
  color: var(--clay);
  font-style: normal;
}

.hero-title,
.section-title,
.photo-caption strong,
.stats strong,
.tile-copy strong,
.price-stack strong,
.review-grid h3,
summary,
.category-rail a,
.price-stack del,
.benefits strong {
  font-family: Cambria, Georgia, serif;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(46px, 6.25vw, 120px);
  line-height: .88;
}

.hero-title em {
  color: #fff;
  font-style: italic;
}

.hero-subtext {
  font-size: clamp(15px, 1.46vw, 20px);
  font-weight: 500;
  line-height: clamp(24px, 1.67vw, 32px);
}

.hero-cta {
  height: clamp(40px, 3.02vw, 56px);
  padding: 0 clamp(20px, 1.875vw, 36px);
  font-size: clamp(12px, .94vw, 18px);
  font-weight: 400;
}

.small-button,
.amazon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-weight: 500;
}

.small-button {
  height: 56px;
  padding: 0 40px;
  font-size: clamp(14px, .83vw, 16px);
  box-shadow: 0 12px 22px rgba(142, 88, 43, .18);
}

.amazon-button {
  height: 56px;
  padding: 0 38px;
  font-size: clamp(14px, .94vw, 18px);
  font-weight: 800;
}

.hero-cta,
.small-button,
.amazon-button,
.review-prev,
.review-next {
  transition:
    background-color .28s ease,
    color .28s ease,
    box-shadow .28s ease,
    transform .28s ease;
}

.small-button:hover,
.small-button:focus-visible,
.amazon-button:hover,
.amazon-button:focus-visible,
.review-prev:hover,
.review-prev:focus-visible,
.review-next:hover,
.review-next:focus-visible {
  background-color: #fff !important;
  color: var(--clay) !important;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background-color: #fff !important;
  color: var(--teal) !important;
}

.section-title {
  font-size: clamp(32px, 3.125vw, 60px);
  line-height: .95;
  margin-bottom: 1rem;
}


.mom-title{
  margin-bottom: 2rem;
}

.category-rail a {
  position: relative;
  font-size: clamp(13px, 1vw, 24px);
  font-style: italic;
}

.category-rail a:not(:nth-child(5n))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--clay);
}

.category-rail img,
.benefits img {
  transition: transform .28s ease;
  transform-origin: center;
}

.category-rail a:hover img,
.category-rail a:focus-visible img,
.benefits div:hover img,
.benefits div:focus-within img {
  transform: scale(1.14);
}

:where(.eyebrow) {
  margin-bottom: 18px !important;
  color: #b89f83;
  font-size: clamp(12px, .63vw, 12px);
  font-weight: 500;
  letter-spacing: 50%;
  text-transform: uppercase;
  opacity: 60%;
}

.intro-copy,
.section-note,
.product-copy,
.before-copy,
.marketplace-copy,
.review-summary p {
  font-size: clamp(15px, .94vw, 18px);
  line-height: clamp(24px, 1.56vw, 30px);
}

.photo-caption {
  background: rgba(255, 255, 255, .18);
  /* border: 1px solid rgba(255, 255, 255, .32); */
  box-shadow: 0 18px 45px rgba(56, 35, 18, .18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 40px;
}

.photo-caption strong {
  display: block;
  font-size: clamp(30px, 2.08vw, 40px);
  line-height: .95;
}

.photo-caption span {
  display: block;
  margin-top: 6px;
  font-size: clamp(14px, .94vw, 18px);
}

.stats strong {
  font-size: clamp(28px, 1.77vw, 34px);
  line-height: 1;
}

.stats div>span:not(.stat-icon) {
  margin-top: 2px;
  color: #6d6358;
  font-size: clamp(13px, .94vw, 18px);
}


.stats-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.stats-stars img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.tile-copy {
  position: absolute;
  bottom: 20px;
  left: 22px;
  max-width: calc(100% - 92px);
  color: #fff;
  /* text-shadow: 0 2px 12px rgba(32, 22, 14, .42); */
}

.tile-copy small,
.tile-copy strong,
.tile-copy em {
  display: block;
}

.tile-copy small {
  margin-bottom: 2px;
  color: var(--clay);
  font-size: clamp(12px, .78vw, 15px);
  font-weight: 500;
  /* letter-spacing: .22em; */
}

.tile-copy strong {
  font-size: clamp(19px, 1.15vw, 22px);
}

.tile-copy em {
  margin-top: 3px;
  font-size: clamp(11px, .63vw, 12px);
  line-height: 20px;
  letter-spacing: .48px;
}

.tile-copy em:first-of-type {
  color: #fff;
  opacity: 60%;
}

.tile:not(:first-child) .tile-copy em {
  color: #000;
  opacity: 60%;
}

.tile img {
  filter: brightness(0.9);
  transition:
    transform .45s ease,
    filter .45s ease;
}

.tile:hover img,
.tile:focus-visible img {
  transform: scale(1.1);
  filter: brightness(.88);
}

.product-before-wrap {
  background:
    linear-gradient(to bottom,
      #f5eee4 0%,
      #f5eee4 28%,
      rgba(245, 238, 228, .72) 33%,
      #fff 100%,
      #fff 67%);
  padding: 1rem;
}

.reviews-market-wrap {
  background:
    linear-gradient(to top,
      #f5eee4 0%,
      #f5eee4 28%,
      rgba(245, 238, 228, .72) 33%,
      #fff 67%,
      #fff 100%);
}

.product {
  display: flex;
  align-items: center;
  gap: 80px;
}

.product-image,
.product-content {
  flex: 1 1 0;
  min-width: 0;
}

.product-image {
  aspect-ratio: 768 / 613;
  width: 100%;
  height: auto;
}

@media (min-width: 1101px) {
  .product {
    --product-content-height: clamp(520px, 36vw, 650px);
    gap: clamp(42px, 4.2vw, 80px);
  }

  .product-image {
    aspect-ratio: auto;
    height: calc(var(--product-content-height) * 1.05);
    object-fit: cover;
  }

  .product-content {
    height: var(--product-content-height);
  }

  .product-copy {
    margin-top: clamp(16px, 1.25vw, 22px);
    margin-bottom: clamp(20px, 1.6vw, 28px);
  }

  .product .benefits {
    gap: clamp(20px, 2vw, 38px);
    padding-top: clamp(26px, 2.1vw, 25px);
    padding-bottom: clamp(26px, 2.1vw, 25px);
  }

  .product .benefits strong {
    font-size: clamp(18px, 1.15vw, 22px);
  }

  .product .benefits span {
    margin-top: clamp(6px, .6vw, 8px);
    font-size: clamp(13px, .73vw, 14px);
  }

  .product .buy-row {
    margin-top: clamp(28px, 2.4vw, 30px);
    gap: clamp(28px, 3.2vw, 60px);
  }

  .product .price-stack strong {
    font-size: clamp(40px, 2.5vw, 48px);
  }
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--clay);
} */

.benefits::before {
  top: -1px;
}

.benefits::after {
  bottom: -1px;
}

.benefits strong {
  display: block;
  /* color: #3d5f63; */
  font-size: clamp(18px, 1.15vw, 22px);
}

.benefits span {
  display: block;
  margin-top: 8px;
  color: #887c70;
  font-size: clamp(13px, .73vw, 14px);
  line-height: 1.45;
}

.price-stack strong {
  font-size: clamp(36px, 2.5vw, 48px);
}

.price-stack del {
  color: #a89d91;
  font-size: clamp(14px, .94vw, 18px);
  font-weight: 600;
}

.review-grid h3 {
  font-size: clamp(28px, 2.08vw, 40px);
  line-height: 1.1;
}

.review-grid p:not(.stars) {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.5;
}

.marketplace-eyebrow {
  color: #ffff;
}

.mom-eyebrow {
  margin-bottom: 11px;
  color: #fff;
  font-size: clamp(13px, .83vw, 16px);
  letter-spacing: 20%;
}

.mini-perks {
  font-size: clamp(11px, .63vw, 12px);
}

.mini-perks span {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(12px, .68vw, 13px);
}

.review-summary p {
  max-width: 300px;
  margin: 0;
  color: #232323;
}

.review-controls button {
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.review-stars img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.carousel-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
  transition: filter .28s ease;
}

.review-prev:hover .carousel-icon,
.review-prev:focus-visible .carousel-icon,
.review-next:hover .carousel-icon,
.review-next:focus-visible .carousel-icon {
  filter: invert(1);
}

.review-grid {
  display: flex;
  flex-flow: row nowrap;
  gap: 75px;
  overflow-x: auto;
  padding-top: 58px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-grid article {
  flex: 0 0 calc((100% - 150px) / 3);
  scroll-snap-align: start;
}

.stars {
  letter-spacing: .18em;
}

.reviewer span {
  color: #211E1A;
  font-size: clamp(14px, .83vw, 16px);
  font-weight: 500;
}

.reviewer small {
  font-size: clamp(11px, .63vw, 12px);
}

.platform-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(94, 67, 42, .07);
}

.platform-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  align-items: center;
}

.platform-rating {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
}

.platform-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.platform-stars img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.platform-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  justify-self: end;
  min-width: 80px;
  border-radius: 25px;
  background: #f4ede3;
  padding: 8px 16px;
  color: var(--clay);
  font-size: clamp(11px, .63vw, 12px);
  font-weight: 700;
  text-align: center;
}

.platform-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--clay);
  animation: live-dot-blink 1.2s ease-in-out infinite;
}

@keyframes live-dot-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

.platform-logo {
  max-height: 48px;
  /* width: 132px; */
  object-fit: contain;
  object-position: left;
}

.platform-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid #f6efe5;
  padding: 16px 35px 24px;
}

.platform-card-footer::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("./assets/images/arrow-right-dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  cursor: pointer;
}

.platform-card small {
  color: #000;
  font-weight: 500;
  font-size: clamp(13px, .73vw, 14px);
}

.site-footer nav,
.site-footer p {
  color: rgba(255, 255, 255, .7);
  font-size: clamp(11px, .63vw, 12px);
}

.footer-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 34px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-social-link {
  position: relative;
  display: inline-flex;
  height: 18px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(11px, .63vw, 12px);
  transition: opacity 180ms ease;
}

.footer-social-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .28);
}

.footer-social-link:hover {
  opacity: .72;
}

.footer-social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.footer-social-link img {
  display: block;
  width: 16px;
  height: 16px;
}

.site-footer nav a+a,
.site-footer nav a:last-child {
  position: relative;
}

.site-footer nav a+a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .28);
}

.site-footer nav a:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .28);
}

.footer-right p {
  justify-self: end;
  margin: 0;
}

.search::after {
  content: "⌕";
  position: absolute;
  top: 8%;
  right: 16px;
  transform: translateY(-50%);
  color: #8d857b;
  font-size: clamp(26px, 1.67vw, 32px);
  line-height: 1;
  transform: scaleX(-1);
}

.search {
  z-index: 20;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 30;
  overflow: hidden;
  max-height: 0;
  border: 1px solid #eee5d8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(47, 42, 36, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition:
    max-height .28s ease,
    opacity .18s ease,
    transform .28s ease,
    visibility 0s linear .28s;
  will-change: max-height, opacity, transform;
}

.search-results.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition:
    max-height .28s ease,
    opacity .18s ease,
    transform .28s ease,
    visibility 0s;
}

.search-result {
  display: block;
  padding: 12px 16px;
  color: #2f2a24;
  font-size: clamp(13px, .73vw, 14px);
  line-height: 1.25;
}

.search-result+.search-result {
  border-top: 1px solid #f1e8db;
}

.search-result:hover,
.search-result:focus-visible {
  background: #f8f1e8;
  outline: none;
}

.search-result span {
  display: block;
  margin-top: 3px;
  color: #8c8478;
  font-size: clamp(11px, .63vw, 12px);
}

.search-empty {
  padding: 12px 16px;
  color: #8c8478;
  font-size: clamp(13px, .73vw, 14px);
}

.slider-dots {
  width: 108px;
  justify-content: space-between;
}

.belief-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d8c3aa;
  transition: background-color .2s ease, transform .2s ease;
}

.belief-dot.is-active {
  background: var(--clay);
  transform: scale(1.16);
}

.belief-dot:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.belief-slide,
.mom-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}

.mom-slide {
  isolation: isolate;
}

.mom-slide img {
  position: relative;
  z-index: 0;
}

.belief-slide {
  transition: opacity .45s ease, visibility .45s ease;
}

.mom-slide {
  transition: opacity .7s ease, visibility .7s ease;
}

.mom-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(24, 18, 14, 0.64);
  pointer-events: none;
}

.mom-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
}

.mom-slide.is-active .mom-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .24s;
}

.belief-slide.is-active,
.mom-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.mom-slide.is-active {
  z-index: 1;
}

.tile::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background-color: var(--teal);
  background-image: url("./assets/images/arrow-top-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.mom-banner {
  aspect-ratio: 1920 / 900;
  width: 100%;
}

.mom-banner::after {
  content: none;
}

.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  z-index: 1;
  pointer-events: none;
}

.comparison-before,
.comparison-after {
  position: absolute;
  inset: 0;
}

.comparison-after {
  clip-path: inset(0 0 0 var(--position));
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.handle {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--position);
  width: 64px;
  height: 130px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 3px;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.review-grid article::before {
  content: url("./assets/images/quote-icon.png");
  position: absolute;
  left: 0;
  top: -4px;
  width: 90px;
  height: 72px;
  line-height: 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary {
  color: #62584f;
  font-size: clamp(24px, 1.56vw, 30px);
  font-weight: 400;
}

summary::before {
  content: "+";
  display: inline-flex;
  width: 24px;
  flex: 0 0 24px;
  justify-content: center;
  color: var(--clay);
  font-size: clamp(24px, 1.56vw, 30px);
  font-weight: 400;
  line-height: 1;
}

details[open] summary::before {
  content: "-";
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .34s ease;
}

.faq-answer > div {
  overflow: visible;
}

.faq-answer p {
  margin-left: 66px;
  color: #756c62;
  font-size: clamp(13px, .73vw, 14px);
  line-height: 1.65;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .24s ease, transform .24s ease;
}

details.is-open .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-answer p {
    transition: none;
  }
}

@media (max-width: 640px) {
  .faq .faq-answer p {
    margin-left: 48px;
  }
}

@media (max-width: 1599px) {
  .review-grid article {
    flex-basis: calc((100% - 95px) / 2);
  }

  .platform-rating {
    display: flex;
    flex-direction: column-reverse;
  }

  .platform-card-body {
    gap: 1.5rem;
  }
}

@media (max-width: 1299px) {
  .small-button {
    height: 56px;
    padding: 0px 20px;
  }
}

@media (max-width: 1100px) {
  .mobile-menu-button {
    display: grid;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav.is-open {
    max-height: 640px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .category-rail a::after {
    display: block;
  }

  .category-rail a:nth-child(3n)::after {
    display: none;
  }

  .review-grid {
    gap: 28px;
  }

  .review-grid article {
    flex-basis: calc((100% - 28px) / 2);
  }

  .intro-copy,
  .product-copy,
  .marketplace-copy,
  .review-summary p {
    max-width: min(100%, 620px);
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-section-gap: 24px;
    --mobile-section-pad: 48px;
    --mobile-content-gap: 28px;
  }

  .brand-logo {
    max-width: min(190px, 52vw);
  }

  .header-actions {
    gap: 10px;
  }

  .header-shop {
    display: none;
  }

  .category-rail a::after {
    display: block;
  }

  .category-rail a:nth-child(2n)::after {
    display: none;
  }

  .small-button {
    height: 56px;
    padding: 0 25px;
    font-weight: 400;
  }

  .review-grid article {
    flex-basis: 100%;
  }

  .review-summary {
    align-items: flex-start;
  }

  .review-summary p {
    max-width: 100%;
  }

  .site-footer p {
    margin: 0;
  }

  .footer-right {
    flex-direction: column;
    justify-self: auto;
    gap: 14px;
  }

  .footer-links {
    justify-content: center;
    gap: 18px;
  }

  .footer-links nav {
    gap: 18px;
  }

  .footer-social-link::after {
    right: -9px;
  }

  .site-footer nav a+a::before {
    left: -9px;
  }

  .site-footer nav a:last-child::after {
    display: none;
  }

  .review-grid article::before {
    display: none;
  }

  .category-rail a:not(:nth-child(6n))::after {
    display: none;
  }

  .slider-dots {
    margin-right: auto;
    margin-left: auto;
    width: min(108px, 100%);
  }

  .intro-copy {
    margin-bottom: 1rem;
  }

  .photo-caption {
    /* top: 50%; */
    right: auto;
    bottom: auto;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 318px;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    text-align: center;
  }

  .handle {
    width: 45px;
    height: 85px;
  }

  summary {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .promo {
    padding: 1.5rem;
  }

  .intro-grid,
  .stats,
  .collection,
  .mom-banner {
    margin-bottom: var(--mobile-section-gap);
  }

  .intro-card {
    padding-top: var(--mobile-section-pad);
    padding-bottom: var(--mobile-section-pad);
  }

  .review-grid {
    padding-top: 2rem;
  }

  .collection,
  .product {
    padding-top: var(--mobile-section-pad);
    padding-bottom: var(--mobile-section-pad);
  }

  .collection .section-title {
    margin-bottom: 0;
  }

  .collection-grid {
    margin-top: var(--mobile-content-gap);
  }

  .section-note {
    margin-top: var(--mobile-content-gap);
  }

  .mom-banner {
    min-height: clamp(460px, 118vw, 560px);
  }

  .before-after {
    padding-top: var(--mobile-section-pad);
    padding-bottom: var(--mobile-section-pad);
  }

  .before-copy {
    margin-bottom: 32px;
  }

  .reviews {
    padding-top: var(--mobile-section-pad);
    padding-bottom: var(--mobile-section-pad);
  }

  .marketplace {
    padding-top: var(--mobile-section-pad);
    padding-bottom: var(--mobile-section-pad);
  }

  .amazon-card {
    min-height: 360px;
  }

  .platforms {
    gap: 34px;
    padding-top: var(--mobile-section-pad);
    padding-bottom: var(--mobile-section-pad);
  }

  .faq {
    padding-top: var(--mobile-section-pad);
    padding-bottom: var(--mobile-section-pad);
  }

  .faq details:first-of-type {
    padding-top: 18px;
  }

  .faq summary {
    min-height: 68px;
  }

  .search::after {
    top: 29%;
    right: 40px;
  }

}
