/** Shopify CDN: Minification failed

Line 501:2 Expected ":"

**/
/* FW-2026 Product PDP — scoped under .fw-2026 */
.fw-2026 {
  --fw-max-width: 1600px;
  --fw-info-width: 35%;
  --fw-gallery-width: 65%;
  --fw-transition: 250ms ease;
  --fw-title-size: 2.8rem;
  --fw-price-size: 2.8rem;
  --fw-label-size: 1.1rem;
  --fw-button-height: 5.6rem;
  --fw-swatch-size: 4.4rem;
  --fw-button-bg: var(--fw-button-color, var(--color-primary, #d60829));
  --fw-button-hover: var(--fw-button-hover-color, #b50722);
  --fw-button-radius: var(--fw-btn-radius, 0);
  --fw-text: #121212;
  --fw-muted: #8a8a8a;
  --fw-border: #121212;
  --fw-unavailable: #b3b3b3;
  --fw-bg: #ffffff;
  color: var(--fw-text);
  background: var(--fw-bg);
}

@media screen and (min-width: 750px) {
  .fw-2026 {
    --fw-title-size: 3.4rem;
    --fw-price-size: 3.6rem;
  }
}

@media screen and (min-width: 990px) {
  .fw-2026 {
    --fw-title-size: 5.2rem;
    --fw-price-size: 4.4rem;
  }
}

.fw-2026__container {
  max-width: var(--fw-max-width);
  margin: 0 auto;
  padding: 0 1.6rem;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .fw-2026__container {
    padding: 0 3.2rem;
  }
}

/* ---- Hero: full-width slider + overlay info (Swix reference) ---- */
.fw-2026__hero {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.fw-2026__gallery-layer {
  position: relative;
  width: 100%;
  background: #f5f5f5;
}

.fw-2026__hero-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  /* max-width: var(--fw-max-width); */
  margin: 0 auto;
  padding: 1.6rem 1.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  pointer-events: none;
}

.fw-2026__hero-overlay > * {
  pointer-events: auto;
}

.fw-2026__info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  text-align: left;
}

.fw-2026__info-top,
.fw-2026__info-bottom {
  width: 100%;
}

.fw-2026__info-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fw-2026__info-bottom {
  background: #fff;
  padding: 1.6rem;
  margin: 0 -0.4rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.8rem), calc(100% - 1.8rem) 100%, 0 100%);
}


.fw-2026__color-desktop {
  display: none;
}

.fw-2026__color-mobile {
  display: block;
  margin-bottom: 1.6rem;
  display: none;
}

@media screen and (min-width: 750px) {
  .fw-2026__hero-overlay {
    padding: 2.4rem 2.4rem 3.2rem;
  }
}

@media screen and (min-width: 990px) {
  .fw-2026__hero {
    min-height: min(100vh, calc(100dvh - var(--header-height, 8rem)));
    display: block;
  }

  .fw-2026__gallery-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .fw-2026__gallery-layer .fw-2026-gallery,
  .fw-2026__gallery-layer .fw-2026-gallery__viewer,
  .fw-2026__gallery-layer .fw-2026-gallery__slider,
  .fw-2026__gallery-layer .fw-2026-gallery__viewport,
  .fw-2026__gallery-layer .fw-2026-gallery__list,
  .fw-2026__gallery-layer .fw-2026-gallery__item,
  .fw-2026__gallery-layer .fw-2026-gallery__media {
    height: 100%;
    min-height: 100%;
  }

  .fw-2026__gallery-layer .fw-2026-gallery__media {
    aspect-ratio: auto;
    max-height: none;
  }

  .fw-2026__gallery-layer .fw-2026-gallery__media img,
  .fw-2026__gallery-layer .fw-2026-gallery__media video,
  .fw-2026__gallery-layer .fw-2026-gallery__media model-viewer {
    max-height: none;
    height: calc(100% - 120px);
    margin: 60px 0;
  }

  .fw-2026__hero-overlay {
    position: relative;
    z-index: 3;
    min-height: min(100vh, calc(100dvh - var(--header-height, 8rem)));
    display: grid;
    grid-template-columns: minmax(var(--fw-info-min-width, 24rem), var(--fw-info-width, 35%)) 1fr auto;
    align-items: stretch;
    gap: 2.4rem;
    padding: 2.4rem 2.4rem 4rem;
    pointer-events: none;
  }

  .fw-2026__hero-overlay > .fw-2026__info {
    grid-column: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
    align-self: stretch;
    /* Empty mid-column must not block gallery prev arrow under the overlay */
    pointer-events: none;
    width: 100%;
    min-width: var(--fw-info-min-width, 600px);
    box-sizing: border-box;
    min-height: 900px;
  }

  .fw-2026__info-top,
  .fw-2026__info-bottom {
    pointer-events: auto;
  }

  .fw-2026__info-top {
    flex: 0 0 auto;
    padding-top: 0.8rem;
  }

  .fw-2026__info-bottom {
    flex: 0 0 auto;
    margin-top: auto;
    background: transparent;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .fw-2026__variants-info {
    background: #fff;
    padding: 1.2rem 1.6rem 1.6rem;
  }

  .fw-2026__info-bottom .fw-2026__block {
    margin-bottom: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 0 100%);
  }

  .fw-2026__color-desktop {
    display: flex;
    grid-column: 3;
    align-self: start;
    justify-self: end;
    padding-top: 1.6rem;
    pointer-events: auto;
    position: sticky;
    top: 8rem;
  }

  .fw-2026:has(.fw-2026__color-desktop) .fw-2026__color-mobile {
    display: none;
  }

  .fw-2026__hero--media-left .fw-2026__hero-overlay {
    grid-template-columns: auto 1fr minmax(var(--fw-info-min-width, 24rem), var(--fw-info-width, 35%));
  }

  .fw-2026__hero--media-left .fw-2026__info {
    grid-column: 3;
  }

  .fw-2026__hero--media-left .fw-2026__color-desktop {
    grid-column: 1;
    justify-self: start;
  }
  .fw-2026__info-bottom .fw-2026-swatches {
    display: none;
  }
}

@media screen and (max-width: 989px) {
  .fw-2026__color-desktop {
    display: none !important;
  }

  /* Mobile: gallery on top, then overlay content below */
  .fw-2026__hero {
    display: flex;
    flex-direction: column;
  }

  .fw-2026__gallery-layer {
    order: 1;
  }

  .fw-2026__hero-overlay {
    order: 2;
  }
}

.fw-2026__variant-selects {
  display: contents;
}

/* Breadcrumb */
.fw-2026__breadcrumb {
  font-size: 1.2rem;
  color: #2b2926;
  margin: 0 0 2.2rem;
  padding-left: 1rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-self: stretch;
  box-sizing: border-box;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  /* -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; */
}

/* .fw-2026__breadcrumb::-webkit-scrollbar {
  height: 4px;
}

.fw-2026__breadcrumb::-webkit-scrollbar-thumb {
  background: rgba(43, 41, 38, 0.35);
  border-radius: 4px;
} */

.fw-2026__breadcrumb a {
  color: inherit;
  text-decoration: none;
  flex: 0 0 auto;
}

.fw-2026__breadcrumb a:hover {
  text-decoration: underline;
}

.fw-2026__breadcrumb-sep {
  flex: 0 0 auto;
  margin: 0 0.4rem;
}

.fw-2026__breadcrumb [aria-current='page'] {
  flex: 0 0 auto;
}

/* Title & price — match Swix reference scale */
.fw-2026__title {
  margin: 0 0 0rem;
  font-family: var(--font-swix, var(--font-heading-family), sans-serif);
  font-size: var(--fw-title-size);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #2b2926;
}

.fw-2026__title a {
  color: inherit;
  text-decoration: none;
}

.fw-2026__sku {
  margin: 0rem 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--fw-muted);
}

.fw-2026__block--title {
  margin-bottom: 0.4rem;
}

.fw-2026__price {
  margin: 0 0 0;
  font-family: var(--font-swix, var(--font-heading-family), sans-serif);
  font-size: var(--fw-price-size);
  font-weight: 700;
  line-height: 1.1;
}

.fw-2026__price .price,
.fw-2026__price .price-item {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: -0.01em;
}

.fw-2026__price .price__container {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem 1.2rem;
}

.fw-2026__price .price-item--sale,
.fw-2026__price .price:not(.price--on-sale) .price-item--regular,
.fw-2026__price .price:not(.price--show-badge) .price-item--last:last-of-type {
  color: var(--fw-button-bg, #d60829);
  font-weight: 500;
}

.fw-2026__price .price--on-sale .price-item--regular {
  color: #8a8a8a;
  font-size: 0.55em;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.55;
}

.fw-2026__price .badge,
.fw-2026__price .price__badge-sale,
.fw-2026__price .price__badge-sold-out {
  display: none !important;
}

/* Labels */
.fw-2026__label {
  display: inline-block;
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #2b2926;
}

.fw-2026__size-guide {
  display: inline-block;
  margin: 0 0 2rem;
  font-size: 1.3rem;
  color: #2b2926;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  float: right;
}

.fw-2026__size-guide:hover {
  opacity: 0.7;
}

.fw-2026__block {
  margin-bottom: 1.6rem;
}

.fw-2026__info-top .fw-2026__block {
  margin-bottom: -8px;
}

.fw-2026__info-bottom .fw-2026__block:last-child,
.fw-2026__block--buy {
  margin-bottom: 0;
}

.fw-2026__shipping {
  margin: 1.2rem 0 0;
  font-size: 1.3rem;
  color: var(--fw-text);
  text-align: left;
}

/* Rating */
.fw-2026-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0 2rem;
  flex-wrap: wrap;
}

.fw-2026-rating__stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--fw-text);
}

.fw-2026-rating__star {
  width: 2.1rem;
  height: 2.1rem;
}

.fw-2026-rating__star--empty {
  opacity: 0.25;
}

.fw-2026-rating__count {
  font-size: 1.6rem;
  color: #2b2926;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.fw-2026-rating__count:hover {
  opacity: 0.7;
}

/* Gallery — horizontal carousel (Swix reference), full-width hero */
.fw-2026-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
}

.fw-2026-gallery__viewer {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 20px;
-t  /* padding-bottom: 40px; */
  background: #f5f5f5;
}

.fw-2026-gallery__slider {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  background: #f5f5f5;
}

.fw-2026-gallery__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.fw-2026-gallery__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 350ms ease;
  will-change: transform;
}

.fw-2026-gallery__item {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw-2026-gallery__media {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: 1 / 1;
}

@media screen and (min-width: 990px) {
  .fw-2026-gallery__media {
    aspect-ratio: auto;
  }
}

.fw-2026-gallery__media img,
.fw-2026-gallery__media video,
.fw-2026-gallery__media model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(80vh, 900px);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  border: 0;
}

@media screen and (min-width: 990px) {
  .fw-2026-gallery__media img,
  .fw-2026-gallery__media video,
  .fw-2026-gallery__media model-viewer {
    max-height: none;
  }
}

.fw-2026-gallery__zoom-wrap {
  overflow: hidden;
  cursor: auto;
  width: 100%;
  height: 100%;
}

.fw-2026-gallery--zoom .fw-2026-gallery__zoom-wrap:hover img {
  transform: scale(1.08);
  transition: transform var(--fw-transition);
}

.fw-2026-gallery__zoom-wrap img {
  transition: transform var(--fw-transition);
  transform-origin: center center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Overlay side arrows — matches Swix reference PDP */
.fw-2026-gallery__controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.fw-2026-gallery__nav {
  pointer-events: auto;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 1.6rem 1.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--fw-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 300ms ease;
  line-height: 0;
  z-index: 1;
}

.fw-2026-gallery__nav--prev {
  margin-inline-start: 0.4rem;
}

.fw-2026-gallery__nav--next {
  margin-inline-end: 0.4rem;
}

.fw-2026-gallery__nav:hover:not(:disabled) {
  opacity: 0.7;
  background: transparent;
  color: var(--fw-text);
}

.fw-2026-gallery__nav:disabled {
  /* opacity: 0.25; */
  cursor: default;
  pointer-events: none;
  color: #2b292652;
}

.fw-2026-gallery__nav:focus-visible {
  outline: 2px solid var(--fw-border);
  outline-offset: 4px;
}

.fw-2026-gallery__nav-icon {
  width: 3.2rem;
  height: auto;
  display: block;
}

@media screen and (min-width: 750px) {
  .fw-2026-gallery__nav-icon {
    width: 6.4rem;
  }
}

@media screen and (min-width: 990px) {
  .fw-2026-gallery__nav-icon {
    width: 9.6rem;
  }

  .fw-2026-gallery__nav {
    padding: 1.6rem 1.6rem;
  }
}

.fw-2026-gallery__thumbs {
  display: none;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fw-2026-gallery--thumbs .fw-2026-gallery__thumbs {
  display: flex;
}

.fw-2026-gallery__thumb {
  width: 5.6rem;
  height: 5.6rem;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--fw-transition), border-color var(--fw-transition);
}

.fw-2026-gallery__thumb[aria-current='true'],
.fw-2026-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--fw-border);
}

.fw-2026-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Color swatches — desktop vertical on gallery right; red active dot */
.fw-2026-swatches {
  display: flex;
  gap: 1.2rem;
}

.fw-2026-swatches--vertical {
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  padding-top: 0.8rem;
  gap: 1.6rem;
  max-height: 320px;
  min-height: 100px;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  mask-image: linear-gradient(180deg, transparent, #000 calc(0% + 1.5rem), #000 calc(100% - 1.5rem), transparent);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.fw-2026-swatches--vertical::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.fw-2026-swatches--horizontal {
  flex-direction: row;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.fw-2026-swatches__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.fw-2026-swatches__option,
.fw-2026-swatches__link {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.fw-2026-swatches--vertical .fw-2026-swatches__option,
.fw-2026-swatches--vertical .fw-2026-swatches__link {
  flex-direction: row;
  justify-content: flex-end;
  gap: 1.2rem;
}

.fw-2026-swatches__label {
  display: block;
  width: 72px;
  height: 72px;
  /* Circle with pointed top-right corner (Swix swatch shape) */
  /* border-radius: 50% 0 50% 50%; */
  /* border: 1px solid rgba(0, 0, 0, 0.08); */
  box-sizing: border-box;
  cursor: pointer;
  /* background: var(--swatch-bg, #ddd) center / cover no-repeat; */
  transition: transform var(--fw-transition), opacity var(--fw-transition);
}

.fw-2026-swatches__label:hover {
  transform: scale(1.06);
}

.fw-2026-swatches__dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--fw-button-bg, #d60829);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity var(--fw-transition);
}

.fw-2026-swatches__input:checked ~ .fw-2026-swatches__dot,
.fw-2026-swatches__link.is-active .fw-2026-swatches__dot {
  opacity: 1;
}

.fw-2026-swatches__input:focus-visible + .fw-2026-swatches__label,
.fw-2026-swatches__link:focus-visible .fw-2026-swatches__label {
  outline: 2px solid var(--fw-border);
  outline-offset: 2px;
}

.fw-2026-swatches__input.disabled + .fw-2026-swatches__label,
.fw-2026-swatches__label.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Size selector */
.fw-2026-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  border: 0;
  margin: 0;
  padding: 0;
}


.fw-2026__size-block {
  background: #fff;
  padding: 1.2rem 0rem 1.6rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%);
}

.fw-2026-sizes__legend {
  width: 100%;
  padding: 0;
}

.fw-2026-sizes__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.fw-2026-sizes__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.4rem;
  height: 4.4rem;
  padding: 0 1.6rem;
  border: 1px solid var(--fw-border);
  border-radius: 9999px;
  background: transparent;
  color: var(--fw-text);
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--fw-transition), color var(--fw-transition), border-color var(--fw-transition);
  position: relative;
    
}

.fw-2026-sizes__input:checked + .fw-2026-sizes__label {
  background: var(--fw-text);
  color: var(--fw-bg);
  border-color: var(--fw-text);
}

.fw-2026-sizes__input:focus-visible + .fw-2026-sizes__label {
  outline: 2px solid var(--fw-border);
  outline-offset: 2px;
}

.fw-2026-sizes__input.disabled + .fw-2026-sizes__label {
  color: var(--fw-unavailable);
  border-color: #d0d0d0;
  cursor: not-allowed;
}

.fw-2026-sizes__input.disabled + .fw-2026-sizes__label::after {
  content: '';
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: var(--fw-unavailable);
  transform: rotate(-20deg);
  pointer-events: none;
}

/* Quantity */
.fw-2026__quantity {
  margin-bottom: 1.6rem;
}

.fw-2026__quantity .quantity {
  width: auto;
}

/* Buy button */
.fw-2026 .product-form__submit.fw-2026__atc,
.fw-2026__atc {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  min-height: var(--fw-button-height);
  height: var(--fw-button-height);
  padding: 0 5.4rem 0 1.8rem;
  border: 0;
  border-radius: 0;
  background: var(--fw-button-bg);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--fw-transition), opacity var(--fw-transition);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%);
}

.fw-2026__atc-label {
  flex: 0 1 auto;
  text-align: left;
  width: auto;
}

.fw-2026__atc-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform var(--fw-transition);
  line-height: 0;
  position: absolute;
  right: 1.6rem;
}

.fw-2026__atc-arrow svg {
  display: block;
  width: 2.8rem;
  height: auto;
}

.fw-2026__atc:hover:not([disabled]) {
  background: var(--fw-button-hover);
}

.fw-2026__atc:hover:not([disabled]) .fw-2026__atc-arrow {
  transform: translateX(4px);
}

.fw-2026__atc .loading__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  flex-shrink: 0;
  z-index: 2;
}

.fw-2026__atc.loading {
  background: #e8e8e8;
  color: #121212;
  pointer-events: none;
  justify-content: center;
}

.fw-2026__atc.loading:hover:not([disabled]) {
  background: #e8e8e8;
}

.fw-2026__atc.loading .fw-2026__atc-label,
.fw-2026__atc.loading .fw-2026__atc-arrow {
  opacity: 0;
  visibility: hidden;
}

.fw-2026__atc.loading .loading__spinner:not(.hidden) {
  display: block;
}

.fw-2026__atc.loading .loading__spinner .path {
  stroke: #121212;
}

.fw-2026 .shopify-payment-button {
  margin-top: 1rem;
}

/* Sticky mobile ATC */
.fw-2026-sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 1.2rem 1.6rem calc(1.2rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #eee;
  transform: translateY(110%);
  transition: transform var(--fw-transition);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.fw-2026-sticky-atc.is-visible {
  transform: translateY(0);
}

@media screen and (min-width: 990px) {
  .fw-2026-sticky-atc {
    display: none !important;
  }
}

.fw-2026-sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: var(--fw-max-width);
  margin: 0 auto;
}

.fw-2026-sticky-atc__meta {
  flex: 1;
  min-width: 0;
}

.fw-2026-sticky-atc__title {
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.fw-2026-sticky-atc__price {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.2rem 0 0;
}

.fw-2026-sticky-atc__btn {
  flex: 0 0 auto;
  min-width: 14rem;
  width: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

/* Hide default Dawn form chrome inside FW */
.fw-2026 .product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fw-2026 .product-form__error-message-wrapper {
  margin-bottom: 1rem;
}

.fw-2026 variant-selects {
  display: block;
}

.fw-2026 .product-form__input--pill,
.fw-2026 .product-form__input--swatch {
  /* Non-size/color options fallback */
  margin-bottom: 1.6rem;
}

.fw-2026 .product-form__input--pill input[type='radio'] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fw-2026 .product-form__input--pill label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.4rem;
  height: 4.4rem;
  padding: 0 1.6rem;
  border: 1px solid var(--fw-border);
  border-radius: 999px;
  background: transparent;
  color: var(--fw-text);
  font-size: 1.3rem;
  cursor: pointer;
  margin: 0 0.8rem 0.8rem 0;
}

.fw-2026 .product-form__input--pill input[type='radio']:checked + label {
  background: var(--fw-text);
  color: var(--fw-bg);
}

.fw-2026 .product-form__input--pill input[type='radio'].disabled + label {
  color: var(--fw-unavailable);
  border-color: #d0d0d0;
  position: relative;
}

.fw-2026 .product-form__input--pill input[type='radio'].disabled + label::after {
  content: '';
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: var(--fw-unavailable);
  transform: rotate(-20deg);
}
.fw-2026-sticky-atc__btn span.fw-2026__atc-arrow {
    display: none;
}

/* Sticky ATC body offset */
@media screen and (max-width: 989px) {
  body:has(.fw-2026-sticky-atc) {
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 990px) and (max-width: 1279px) {
  .fw-2026__hero {
    min-height: min(760px, calc(100dvh - var(--header-height, 8rem)));
  }

  .fw-2026__hero-overlay {
    min-height: min(760px, calc(100dvh - var(--header-height, 8rem)));
    grid-template-columns: minmax(var(--fw-info-min-width, 28rem), var(--fw-info-width, 35%)) 1fr auto;
    gap: 1.6rem;
    padding: 2rem 2.4rem 2.8rem;
  }

  .fw-2026__title {
    line-height: 1.07;
  }

  .fw-2026__price {
    font-size: clamp(3rem, 2vw, var(--fw-price-size));
  }

  .fw-2026__breadcrumb {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .fw-2026__variants-info {
    padding: 1rem 1.2rem 1.4rem;
  }
}

@media screen and (max-width: 749px) {
  .fw-2026__price .price, .fw-2026__price .price-item {
    font-size: 3rem;
  }
}