/** Shopify CDN: Minification failed

Line 83:0 Expected "}" to go with "{"

**/
/* PDP alternates chip selector — mirrors the site's existing variant picker
   layout and typography (label + chips on one row on desktop, stacked on
   mobile), so the two components feel like the same component to a shopper.

   Source of truth for spacing/typography (verified live against Discovery 27):
     .variant-picker-product        margin-top: 6.2rem   (mobile: 3rem)
     .option-wrapper                display: flex; align-items: center; gap: 1.6rem
     .option_name                   font-size: 1.4rem; font-weight: 400
     .product-form__input--pill     display: flex; gap: 1.2rem; flex-wrap: wrap

   PDP only — collection cards do not render this component. */

.pdp-alternates {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  margin-bottom: 0;
}

.pdp-alternates__heading {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--color-black, rgb(33, 33, 33));
  margin: 0;
  flex-shrink: 0;
}

.pdp-alternates__list {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.pdp-alternates__chip {
  display: inline-block;
  padding: 1.2rem 2.9rem;
  border: 1px solid rgba(33, 33, 33, 0.18);
  border-radius: 0;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  line-height: 2.2rem;
  color: var(--color-black, rgb(33, 33, 33));
  background-color: white;
  transition: border-color var(--duration-short, 0.15s) ease;
  cursor: pointer;
  text-transform: none;
  text-align: center;
}

.pdp-alternates__chip:hover {
  border-color: rgb(33, 33, 33);
}

.pdp-alternates__chip--active {
  border: 1px solid rgb(33, 33, 33);
  cursor: default;
  pointer-events: none;
}

/* Mobile: stack label above chips, tighter top margin like variants get */
@media screen and (max-width: 768px) {
  .pdp-alternates {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 3rem;
  }
