.product-switcher {
  grid-template-columns: repeat(2, minmax(0, 26rem));
  align-items: start;
  justify-content: center;
  gap: clamp(var(--hw-space-8), 7vw, var(--hw-space-16));
}

.product-choice,
.product-choice:hover,
.product-choice:active {
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  align-items: center;
  justify-content: flex-start;
  gap: var(--hw-space-5);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transform: none;
}

.product-choice {
  --disc-offset: 0rem;
}

.product-choice--home {
  --disc-offset: 1.25rem;
}

.product-choice__disc {
  display: grid;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  place-items: center;
  padding: var(--hw-space-8);
  border: 1px solid color-mix(in srgb, var(--hw-pine) 28%, transparent);
  border-radius: 50%;
  background: var(--hw-surface);
  box-shadow: 0 22px 48px rgb(27 58 46 / 9%);
  transform: translateY(var(--disc-offset));
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-choice--home .product-choice__disc {
  background: linear-gradient(145deg, var(--hw-mist), var(--hw-surface));
}

.product-choice h2 {
  margin: 0;
  font-size: clamp(3.25rem, 5vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.product-choice > .product-choice__description {
  max-width: 21rem;
  margin: var(--hw-space-2) 0 0;
  color: var(--hw-text-muted);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.5;
}

.product-choice:hover .product-choice__disc {
  border-color: color-mix(in srgb, var(--hw-pine) 52%, transparent);
  box-shadow: 0 28px 58px rgb(27 58 46 / 13%);
  transform: translateY(calc(var(--disc-offset) - 4px));
}

.product-choice:active .product-choice__disc {
  box-shadow: 0 16px 34px rgb(27 58 46 / 11%);
  transform: translateY(var(--disc-offset));
}

.product-choice:focus-visible {
  outline: none;
}

.product-choice:focus-visible .product-choice__disc {
  outline: 3px solid var(--hw-focus);
  outline-offset: 5px;
}

@media (max-width: 38rem) {
  .product-switcher {
    grid-template-columns: minmax(0, 22rem);
    gap: var(--hw-space-12);
  }

  .product-choice--home {
    --disc-offset: 0rem;
  }
}
