/*
 * Home component for the 2026 redesign.
 * Scoped to the front page and token-driven; no shared chrome styles here.
 */

html:has(body.home),
body.home {
  overflow-x: hidden;
}

.home .site-main,
.kanto-home {
  background: var(--k-cream-bg);
}

.kanto-home {
  display: flex;
  flex-direction: column;
  color: var(--k-ink);
  max-width: 100%;
  overflow-x: hidden;
}

.kanto-home a {
  color: inherit;
  text-decoration: none;
}

.kanto-home a:focus,
.kanto-home button:focus,
.kanto-home a:focus-visible,
.kanto-home button:focus-visible {
  outline: 2px solid var(--k-zalo-blue);
  outline-offset: 3px;
}

.home-section {
  margin-block: var(--k-space-4);
}

.home-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--k-space-3);
  margin-block-end: var(--k-space-3);
}

.home-section__heading {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--k-space-2);
}

.home-section__title {
  margin: 0;
  color: var(--k-ink);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.home-section__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  flex: none;
  color: var(--k-accent-text);
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-section__link::after {
  content: " ->";
}

.home-section__link:hover {
  color: var(--k-accent-strong);
}

.home-button {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.home-button--dark {
  padding-inline: 1.125rem;
  color: var(--k-surface);
  background: var(--k-ink);
}

.kanto-home .home-button.home-button--dark {
  color: var(--k-surface);
}

.home-button--yellow {
  padding-inline: 1.25rem;
  color: var(--k-ink);
  background: var(--k-brand-yellow);
}

.kanto-home .home-button.home-button--yellow,
.kanto-home .home-button.home-button--ghost {
  color: var(--k-ink);
}

.home-button--ghost {
  padding-inline: 1rem;
  color: var(--k-ink);
  background: color-mix(in srgb, var(--k-ink) 10%, transparent);
}

.home-button--zalo span[aria-hidden="true"] {
  width: 1rem;
  aspect-ratio: 1;
  border-radius: .3125rem;
  background: var(--k-zalo-blue);
}

.scrollx {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: var(--k-space-2);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--k-space-3);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  contain: layout paint;
  -webkit-overflow-scrolling: touch;
}

.scrollx::-webkit-scrollbar {
  display: none;
}

.scrollx > * {
  scroll-snap-align: start;
}

.home-hero {
  padding-block: var(--k-space-3) var(--k-space-1);
}

.home-hero__card {
  position: relative;
  display: grid;
  min-height: 20.25rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--k-grad-hero);
  box-shadow: var(--k-shadow);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 16.5rem;
  padding: 1.375rem 1.25rem 1.25rem;
}

.home-hero__eyebrow {
  display: inline-flex;
  margin: 0;
  padding: .375rem .75rem;
  border-radius: 999px;
  color: var(--k-brand-yellow);
  background: var(--k-ink);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-hero__title {
  margin: .8125rem 0 .5rem;
  color: var(--k-ink);
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.home-hero__title-line {
  display: block;
}

.home-hero__title-line--mobile {
  display: none;
}

.home-hero__text {
  max-width: 15rem;
  margin: 0 0 var(--k-space-3);
  color: color-mix(in srgb, var(--k-ink) 82%, var(--k-brand-yellow));
  font-size: 1rem;
  line-height: 1.45;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5625rem;
}

.home-hero__visual {
  position: absolute;
  right: -1.25rem;
  bottom: -.625rem;
  z-index: 1;
  width: min(44vw, 10rem);
}

.home-hero__visual picture,
.home-hero__image {
  display: block;
  width: 100%;
}

.home-hero__image {
  height: auto;
  object-fit: contain;
  animation: home-float 5.5s ease-in-out infinite;
}

.home-hero__mark {
  position: absolute;
  top: -2.25rem;
  right: .5rem;
  width: 3.125rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--k-surface);
  box-shadow: 0 .5rem 1.5rem rgb(30 24 18 / 14%);
}

.home-hero__mark::after {
  content: "";
  position: absolute;
  inset: .875rem;
  border-radius: inherit;
  background: var(--k-brand-pink);
}

.home-categories {
  margin-block-start: var(--k-space-4);
}

.home-category-strip {
  padding-block: .125rem;
}

.home-category-card {
  --tile-bg: var(--k-surface);
  display: flex;
  width: 4.875rem;
  flex: 0 0 4.875rem;
  flex-direction: column;
  align-items: center;
  gap: .4375rem;
  color: var(--k-ink);
  text-align: center;
}

.home-category-card__image {
  display: grid;
  width: 3.875rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 1.25rem;
  background: var(--tile-bg);
}

.home-category-card__img,
.home-need-card__img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.home-category-card__name {
  min-height: 2.4em;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-category-card__count {
  display: none;
}

.home-category-card--tone-0 {
  --tile-bg: color-mix(in srgb, var(--k-brand-yellow) 24%, var(--k-surface));
}

.home-category-card--tone-1 {
  --tile-bg: color-mix(in srgb, var(--k-zalo-blue) 12%, var(--k-surface));
}

.home-category-card--tone-2 {
  --tile-bg: color-mix(in srgb, var(--k-trust-green) 14%, var(--k-surface));
}

.home-category-card--tone-3 {
  --tile-bg: color-mix(in srgb, var(--k-brand-pink) 10%, var(--k-surface));
}

.home-category-card--tone-4 {
  --tile-bg: color-mix(in srgb, var(--k-ink) 7%, var(--k-surface));
}

.home-trust {
  margin-block: var(--k-space-3);
}

.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}

.home-trust__item {
  min-width: 0;
  padding: .625rem .5rem;
  border-radius: .875rem;
  background: color-mix(in srgb, var(--k-surface) 74%, var(--k-cream-bg));
  text-align: center;
}

.home-trust__item strong,
.home-trust__item span {
  display: block;
}

.home-trust__item strong {
  color: var(--k-ink);
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.2;
}

.home-trust__item span {
  margin-block-start: .125rem;
  color: var(--k-muted);
  font-size: .6875rem;
  line-height: 1.25;
}

.home-trust__item--desktop {
  display: none;
}

.home-countdown {
  display: inline-flex;
  align-items: center;
  gap: .1875rem;
  flex: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.home-countdown__unit {
  display: inline-grid;
  min-width: 1.625rem;
  min-height: 1.625rem;
  place-items: center;
  border-radius: .375rem;
  color: var(--k-surface);
  background: var(--k-ink);
  font-size: .8125rem;
  font-weight: 800;
  line-height: 1;
}

.home-countdown__separator {
  display: inline-block;
  color: var(--k-ink);
  font-size: .875rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 47.999rem) {
  .home-hero__card {
    min-height: 21.5rem;
  }

  .home-hero__copy {
    max-width: 15.25rem;
    padding: 1.375rem 1.125rem 1rem;
  }

  .home-hero__eyebrow {
    font-size: .625rem;
  }

  .home-hero__title {
    margin-block: .75rem .4rem;
    font-size: 1.6875rem;
    line-height: 1.04;
  }

  .home-hero__title-line--desktop {
    display: none;
  }

  .home-hero__title-line--mobile {
    display: block;
  }

  .home-hero__text {
    display: none;
  }

  .home-hero__actions {
    gap: .5rem;
  }

  .home-hero__visual {
    right: -.125rem;
    bottom: .375rem;
    width: min(52vw, 11.75rem);
  }

  .home-hero__mark {
    top: -2rem;
    right: .25rem;
    width: 2.875rem;
  }

  .home-countdown {
    gap: .125rem;
  }

  .home-countdown__unit {
    min-width: 1.25rem;
    min-height: 1.25rem;
    padding-inline: .3125rem;
    border-radius: .3125rem;
    font-size: .6875rem;
  }
}

.home-product-grid {
  padding-block: .125rem;
}

.home-product-card {
  display: flex;
  width: 10.5rem;
  flex: 0 0 10.5rem;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--k-card-border) 72%, var(--k-surface));
  border-radius: 1.125rem;
  background: var(--k-surface);
}

.home-product-card__media {
  position: relative;
  display: grid;
  height: 8.75rem;
  place-items: center;
  background: color-mix(in srgb, var(--k-surface) 88%, var(--k-cream-bg));
}

.home-product-card__image {
  width: min(82%, 8.125rem);
  max-height: 7.375rem;
  object-fit: contain;
}

.home-product-card__badge {
  position: absolute;
  top: .5625rem;
  left: .5625rem;
  z-index: 1;
  padding: .1875rem .4375rem;
  border-radius: .5rem;
  color: var(--k-surface);
  background: var(--k-accent-strong);
  font-size: .6875rem;
  font-weight: 800;
  line-height: 1.2;
}

.home-product-card__badge--green {
  background: color-mix(in srgb, var(--k-trust-green) 58%, var(--k-ink));
}

.home-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: .75rem .75rem .8125rem;
}

.home-product-card__brand,
.home-post-card__eyebrow {
  display: block;
  color: var(--k-accent-text);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-product-card__title {
  display: -webkit-box;
  min-height: 2.25rem;
  margin: .25rem 0 .3125rem;
  overflow: hidden;
  color: var(--k-ink);
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-card__title a:hover,
.home-post-card__title a:hover {
  color: var(--k-accent-strong);
}

.home-product-card__title a,
.home-post-card__title a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
}

.home-product-card__rating {
  display: flex;
  min-height: 1.125rem;
  align-items: center;
  gap: .25rem;
  color: var(--k-muted);
  font-size: .6875rem;
  line-height: 1;
}

.home-product-card__stars {
  position: relative;
  display: inline-block;
  color: color-mix(in srgb, var(--k-card-border) 82%, var(--k-surface));
  letter-spacing: 0;
}

.home-product-card__stars::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--rating);
  overflow: hidden;
  color: var(--k-brand-yellow);
}

.home-product-card__sold {
  display: grid;
  gap: .25rem;
  margin-block: .25rem .375rem;
}

.home-product-card__sold-bar {
  display: block;
  height: .375rem;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--k-card-border) 70%, var(--k-surface));
}

.home-product-card__sold-bar span {
  display: block;
  width: var(--sold-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--k-brand-yellow) 62%, var(--k-brand-pink)), var(--k-brand-pink));
}

.home-product-card__sold-text {
  color: var(--k-accent-text);
  font-size: .6875rem;
  font-weight: 800;
  line-height: 1.2;
}

.home-product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .5rem;
  margin-block-start: auto;
}

.home-product-card__price {
  min-width: 0;
  color: var(--k-ink);
  font-size: .9375rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-product-card__price del {
  display: block;
  color: var(--k-muted);
  font-size: .75rem;
  font-weight: 500;
}

.home-product-card__price ins {
  text-decoration: none;
}

.home-product-card__cart {
  display: inline-grid;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: .875rem;
  color: var(--k-ink);
  background: var(--k-brand-yellow);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}

.home-product-card__cart:hover,
.home-button--yellow:hover {
  background: var(--k-yellow-dark);
}

.home-combo__card {
  position: relative;
  display: grid;
  min-height: 16.5rem;
  overflow: hidden;
  border-radius: 1.375rem;
  padding: 1.25rem;
  color: var(--k-surface);
  background: var(--k-grad-combo);
}

.home-combo__copy {
  position: relative;
  z-index: 1;
  max-width: 15.5rem;
}

.home-combo__eyebrow {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  opacity: .88;
  text-transform: uppercase;
}

.home-combo__title {
  margin: .4375rem 0 .375rem;
  font-size: 1.3125rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.home-combo__copy p {
  margin: 0 0 var(--k-space-3);
  font-size: 1rem;
  line-height: 1.45;
  opacity: .92;
}

.home-combo__card .home-button {
  position: relative;
  z-index: 1;
  width: fit-content;
  align-self: end;
}

.home-combo__image {
  position: absolute;
  right: -1.75rem;
  bottom: -1rem;
  width: 8.25rem;
  height: auto;
  opacity: .95;
}

.home-needs {
  margin-block-start: var(--k-space-4);
}

.home-needs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6875rem;
  margin-block-start: var(--k-space-3);
}

.home-need-card {
  position: relative;
  min-height: 7.5rem;
  overflow: hidden;
  border-radius: 1.125rem;
  padding: .875rem;
  color: var(--k-ink);
  background: var(--tile-bg, var(--k-surface));
}

.home-need-card__name,
.home-need-card__count {
  position: relative;
  z-index: 1;
  display: block;
}

.home-need-card__name {
  max-width: 6rem;
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-need-card__count {
  margin-block-start: .1875rem;
  color: var(--k-muted);
  font-size: .6875rem;
  line-height: 1.2;
}

.home-need-card__image {
  position: absolute;
  right: .375rem;
  bottom: .375rem;
  display: grid;
  width: 4.625rem;
  aspect-ratio: 1;
  place-items: center;
}

.home-better__card {
  position: relative;
  min-height: 10.625rem;
  overflow: hidden;
  border-radius: 1.375rem;
  background: var(--k-ink);
}

.home-better__image,
.home-better__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-better__fallback {
  background: var(--k-ink);
}

.home-better__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(30 24 18 / 8%), rgb(30 24 18 / 76%));
}

.home-better__copy {
  position: absolute;
  right: 1.25rem;
  bottom: 1.125rem;
  left: 1.25rem;
  z-index: 1;
  color: var(--k-surface);
}

.home-better__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.home-better__title span {
  color: var(--k-brand-yellow);
}

.home-better__title em {
  display: block;
  margin-block-start: .125rem;
  font-size: .9375rem;
  font-style: italic;
  font-weight: 500;
}

.home-better__copy p {
  max-width: 26rem;
  margin: .5rem 0 0;
  font-size: 1rem;
  line-height: 1.45;
}

.home-reviews__widget {
  overflow: hidden;
  border: 1px solid var(--k-card-border);
  border-radius: 1.125rem;
  padding: 1.375rem 1.125rem 1.25rem;
  background: var(--k-surface);
}

.home-reviews__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--k-space-2);
  margin-block-end: .875rem;
}

.home-reviews__title {
  margin: 0;
  color: var(--k-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.018em;
  line-height: 1.25;
}

.home-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .4375rem;
  margin: .375rem 0 0;
  color: var(--k-muted);
  font-size: .6875rem;
  line-height: 1.35;
}

.home-reviews__summary strong {
  color: var(--k-ink);
  font-size: .9375rem;
  font-weight: 800;
}

.home-reviews__summary-stars,
.home-review-card__stars {
  color: var(--k-brand-yellow);
  letter-spacing: .0625rem;
}

.home-review-grid {
  gap: .75rem;
  margin-inline: -1.125rem;
  padding: .125rem 1.125rem .25rem;
  list-style: none;
}

.home-review-card {
  display: flex;
  width: 14.375rem;
  flex: 0 0 14.375rem;
  flex-direction: column;
  gap: .5625rem;
  scroll-snap-align: start;
  border-radius: .875rem;
  padding: .9375rem 1rem;
  background: color-mix(in srgb, var(--k-cream-bg) 54%, var(--k-surface));
}

.home-review-card__person {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.home-review-card__avatar {
  display: grid;
  width: 2rem;
  flex: 0 0 2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--k-ink);
  background: var(--k-brand-yellow);
  font-size: .75rem;
  font-weight: 800;
}

.home-review-card__avatar--tone-1 {
  color: var(--k-surface);
  background: var(--k-brand-pink);
}

.home-review-card__avatar--tone-2 {
  color: var(--k-surface);
  background: var(--k-trust-green);
}

.home-review-card__avatar--tone-3 {
  color: var(--k-surface);
  background: var(--k-zalo-blue);
}

.home-review-card__person > div {
  min-width: 0;
}

.home-review-card__person strong,
.home-review-card__person time,
.home-review-card__person a {
  display: block;
}

.home-review-card__person strong {
  overflow: hidden;
  color: var(--k-ink);
  font-size: .78125rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-review-card__person time,
.home-review-card__person a {
  overflow: hidden;
  color: var(--k-muted);
  font-size: .625rem;
  line-height: 1.35;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-review-card__person a:hover,
.home-review-card__person a:focus-visible {
  color: var(--k-brand-pink);
  text-decoration: underline;
}

.home-review-card__stars {
  font-size: .6875rem;
  line-height: 1;
}

.home-review-card__stars-empty {
  color: var(--k-card-border);
}

.home-review-card__content {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--k-ink);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-review-card__media {
  display: flex;
  gap: .4375rem;
}

.home-review-card__media-item {
  position: relative;
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  place-items: center;
  overflow: hidden;
  border-radius: .5625rem;
  color: var(--k-surface);
  background: var(--k-ink);
}

.home-review-card__media-item:focus-visible {
  outline: .1875rem solid var(--k-brand-pink);
  outline-offset: .125rem;
}

.home-review-card__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-review-card__media-play {
  display: grid;
  width: 1.0625rem;
  height: 1.0625rem;
  place-items: center;
  border-radius: 50%;
  color: var(--k-ink);
  background: var(--k-surface);
  font-size: .5rem;
  line-height: 1;
}

.home-review-card__media-overflow {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--k-surface);
  background: color-mix(in srgb, var(--k-ink) 78%, transparent);
  font-size: .8125rem;
  font-weight: 800;
}

.home-review-card__footer {
  display: flex;
  align-items: center;
  margin-block-start: auto;
}

.home-review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: color-mix(in srgb, var(--k-trust-green) 48%, var(--k-ink));
  font-size: .625rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-review-card__verified svg {
  width: .75rem;
  height: .75rem;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2.5;
}

.home-posts {
  order: 1;
}

.home-reviews {
  order: 2;
  margin-block-end: var(--k-space-2);
}

.home-posts {
  margin-block-end: var(--k-space-5);
}

.home-posts__grid {
  display: grid;
  gap: .875rem;
}

.home-post-card {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
}

.home-post-card__media {
  display: block;
  aspect-ratio: 88 / 68;
  overflow: hidden;
  border-radius: .875rem;
  background: color-mix(in srgb, var(--k-surface) 75%, var(--k-cream-bg));
}

.home-post-card__media img,
.home-post-card__media .home-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-post-card__title {
  margin: .25rem 0 0;
  color: var(--k-ink);
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-media-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 28%, color-mix(in srgb, var(--k-brand-yellow) 42%, transparent), transparent 35%),
    linear-gradient(135deg, color-mix(in srgb, var(--k-brand-pink) 12%, var(--k-surface)), color-mix(in srgb, var(--k-zalo-blue) 10%, var(--k-surface)));
}

@keyframes home-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-.5rem);
  }
}

@media (min-width: 48rem) {
  .home-reviews {
    order: 1;
    margin-block-end: var(--k-space-3);
  }

  .home-posts {
    order: 2;
  }

  .home-section {
    margin-block: var(--k-space-5);
  }

  .home-section__title {
    font-size: 1.375rem;
  }

  .home-hero__card {
    min-height: 18.75rem;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
  }

  .home-hero__copy {
    max-width: 25rem;
    padding: var(--k-space-5);
  }

  .home-hero__title {
    font-size: 2.75rem;
  }

  .home-hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    height: 100%;
    min-height: 18.75rem;
    display: grid;
    place-items: center;
  }

  .home-hero__visual picture {
    width: min(86%, 28rem);
  }

  .home-hero__mark {
    top: 1.5rem;
    right: 2rem;
  }

  .home-category-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .875rem;
    overflow: visible;
  }

  .home-category-card {
    width: auto;
    min-height: 9rem;
    flex: initial;
    justify-content: center;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--k-card-border) 70%, var(--k-surface));
    border-radius: 1rem;
    background: var(--k-surface);
  }

  .home-category-card__image {
    width: 4.75rem;
    border-radius: 1rem;
  }

  .home-category-card__name {
    min-height: 0;
    color: var(--k-accent-text);
    font-size: .8125rem;
  }

  .home-category-card__count {
    display: block;
    color: var(--k-muted);
    font-size: .6875rem;
    line-height: 1.2;
  }

  .home-trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .875rem;
  }

  .home-trust__item {
    padding: 1rem 1.125rem;
    text-align: start;
  }

  .home-trust__item strong {
    font-size: 1rem;
  }

  .home-trust__item span {
    font-size: .75rem;
  }

  .home-trust__item--desktop {
    display: block;
  }

  .home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.125rem;
    overflow: visible;
  }

  .home-product-card {
    width: auto;
    flex: initial;
  }

  .home-product-card__media {
    height: 12.5rem;
  }

  .home-product-card__image {
    width: min(84%, 10.9375rem);
    max-height: 11.25rem;
  }

  .home-combo__card {
    min-height: 12.5rem;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--k-space-4);
    padding: var(--k-space-5);
  }

  .home-combo__copy {
    max-width: 45rem;
  }

  .home-combo__title {
    font-size: 1.875rem;
  }

  .home-combo__copy p {
    max-width: 34rem;
    margin-block-end: 0;
  }

  .home-combo__image {
    right: 8.5rem;
    bottom: -1.75rem;
    width: 10rem;
  }

  .home-needs {
    display: none;
  }

  .home-better__card {
    min-height: 16.25rem;
  }

  .home-better__card::after {
    background: linear-gradient(90deg, rgb(30 24 18 / 82%), rgb(30 24 18 / 12%));
  }

  .home-better__copy {
    top: 0;
    right: auto;
    bottom: 0;
    left: var(--k-space-5);
    display: flex;
    max-width: 28rem;
    flex-direction: column;
    justify-content: center;
  }

  .home-better__title {
    font-size: 2.125rem;
  }

  .home-better__title em {
    display: inline;
    font-size: 1.5rem;
  }

  .home-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .home-review-card {
    width: auto;
    flex: initial;
    min-width: 0;
    padding: 1.125rem 1.25rem;
  }

  .home-reviews__widget {
    border-radius: 1.25rem;
    padding: 2.25rem 2.5rem;
  }

  .home-reviews__header {
    align-items: flex-end;
    margin-block-end: 1.375rem;
  }

  .home-reviews__title {
    font-size: 1.375rem;
  }

  .home-reviews__summary {
    margin-block-start: .5rem;
    font-size: .78125rem;
  }

  .home-reviews__summary strong {
    font-size: 1.125rem;
  }

  .home-review-card__avatar {
    width: 2.375rem;
    flex-basis: 2.375rem;
    font-size: .8125rem;
  }

  .home-review-card__person {
    gap: .625rem;
  }

  .home-review-card__person strong {
    font-size: .84375rem;
  }

  .home-review-card__person time,
  .home-review-card__person a {
    font-size: .6875rem;
  }

  .home-review-card__stars {
    font-size: .75rem;
  }

  .home-review-card__content {
    -webkit-line-clamp: 3;
  }

  .home-review-card__media-item {
    width: 3.5rem;
    height: 3.5rem;
    flex-basis: 3.5rem;
    border-radius: .625rem;
  }

  .home-review-card__media-play {
    width: 1.25rem;
    height: 1.25rem;
    font-size: .5625rem;
  }

  .home-review-card__verified {
    font-size: .65625rem;
  }

  .home-posts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
  }

  .home-post-card {
    display: block;
  }

  .home-post-card__media {
    aspect-ratio: 16 / 9;
    margin-block-end: .75rem;
  }

  .home-post-card__title {
    font-size: .9375rem;
  }
}

@media (min-width: 64rem) {
  .home-section {
    margin-block: 2.375rem;
  }

  .home-hero {
    padding-block-start: var(--k-space-4);
  }

  .home-hero__card {
    min-height: 18.75rem;
    border-radius: 1.375rem;
  }

  .home-hero__copy {
    padding: 2.625rem 0 2.625rem 2.75rem;
  }

  .home-hero__eyebrow {
    font-size: .75rem;
  }

  .home-hero__title {
    margin-block: 1rem .5rem;
    font-size: 3.125rem;
  }

  .home-hero__text {
    max-width: 21.25rem;
    margin-block-end: 1.375rem;
    font-size: .9375rem;
  }

  .home-button {
    font-size: .9375rem;
  }

  .home-button--dark {
    padding-inline: 1.625rem;
  }

  .home-button--ghost {
    padding-inline: 1.5rem;
  }

  .home-section__title {
    font-size: 1.5rem;
  }

  .home-category-strip {
    gap: .875rem;
  }

  .home-category-card {
    min-height: 8.75rem;
    padding: 1.125rem;
  }

  .home-product-card__title {
    font-size: .875rem;
  }

  .home-product-card__price {
    font-size: 1.0625rem;
  }
}

@media (min-width: 90rem) {
  .home-hero__card {
    min-height: 19.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kanto-home *,
  .kanto-home *::before,
  .kanto-home *::after {
    animation: none;
    scroll-behavior: auto;
    transition: none;
  }
}
