/** Shopify CDN: Minification failed

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

**/
.card-wrapper {
  color: inherit;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.card {
  text-decoration: none;
  text-align: var(--text-alignment);
}

.card:not(.ratio) {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card.card--horizontal {
  --text-alignment: left;
  --image-padding: 0rem;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.card--horizontal.ratio:before {
  padding-bottom: 0;
}

.card--card.card--horizontal {
  padding: 1.2rem;
}

.card--card.card--horizontal.card--text {
  column-gap: 0;
}

.card--card {
  height: 100%;
}

.card--card,
.card--standard .card__inner {
  position: relative;
  box-sizing: border-box;
  border-radius: var(--border-radius);
  border: var(--border-width) solid
    rgba(var(--color-foreground), var(--border-opacity));
}

.card--card:after,
.card--standard .card__inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(var(--border-width) * 2 + 100%);
  height: calc(var(--border-width) * 2 + 100%);
  top: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
    var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity));
}

/* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
.card--card.gradient,
.card__inner.gradient {
  transform: perspective(0);
}

/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
.card__inner.color-scheme-1 {
  background: transparent;
}

.card .card__inner .card__media {
  overflow: hidden;
  /* Fix for Safari border bug on hover */
  z-index: 0;
  border-radius: calc(
    var(--border-radius) - var(--border-width) - var(--image-padding)
  );
}

.card--card .card__inner .card__media {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card--standard.card--text {
  background-color: transparent;
}

.card-information {
  text-align: var(--text-alignment);
}

.card__media,
.card .media {
  bottom: 0;
  position: absolute;
  top: 0;
}

.card .media {
  width: 100%;
}

.card__media {
  margin: var(--image-padding);
  width: calc(100% - 2 * var(--image-padding));
}

.card .card__inner .card__media--carousel-active {
  /* .card .card__inner .card__media sets z-index:0, which traps the carousel's
     own stacking context below .card__heading a::after (the invisible
     full-card click target, z-index:1) — raise it above that here so the
     arrow buttons are actually clickable instead of triggering card navigation.
     Note: the progress bar used to live inside here, but .card__media creates
     its own stacking context (it has an explicit z-index), so nothing inside
     it can ever out-rank .variant-selector-overlay (a sibling at z-index:
     999999) no matter how high its own z-index goes — that's why the progress
     bar now lives outside .card__media instead, as a true sibling. */
  z-index: 2;
}

.card__media-carousel {
  display: block;
  position: absolute;
  inset: 0;
}

.card__media-carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.card__media-carousel-track::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.card__media-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.card__media-carousel-slide img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.card__media-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: #080808;
  opacity: 0.55;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.card__media-carousel-arrow:hover,
.card__media-carousel-arrow:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.85);
}

.card__media-carousel-arrow .icon {
  width: 7px;
  height: 7px;
}

.card__media-carousel-arrow--prev {
  left: 8px;
}

.card__media-carousel-arrow--prev .icon {
  transform: rotate(90deg);
}

.card__media-carousel-arrow--next {
  right: 8px;
}

.card__media-carousel-arrow--next .icon {
  transform: rotate(-90deg);
}

.card__media-carousel-arrow[hidden] {
  display: none;
}

.card__media-carousel-progress {
  /* Lives as a sibling of .card__media (not nested inside <card-media-carousel>)
     so its z-index competes directly against .variant-selector-overlay
     (999999) instead of being trapped inside .card__media's own stacking
     context, which nothing nested inside it could ever out-rank. Insets
     match .card__media's own margin so it lines up with the image's edges. */
  position: absolute;
  left: var(--image-padding);
  right: var(--image-padding);
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1000000;
  pointer-events: none;
}

.card__media-carousel-progress-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% / var(--carousel-slide-count, 1));
  background: rgba(60, 60, 60, 0.75);
  transform: translateX(calc(var(--carousel-progress-index, 0) * 100%));
  transition: transform 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .card__media-carousel-track {
    scroll-behavior: auto;
  }
}

.card--standard .card__media {
  margin: var(--image-padding);
}

.card__inner {
  width: 100%;
}

.card--media .card__inner .card__content {
  position: relative;
  padding: calc(var(--image-padding) + 1rem);
}

.card__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) max-content minmax(0, 1fr);
  padding: 1rem;
  width: 100%;
  flex-grow: 1;
}

.card__content--auto-margins {
  grid-template-rows: minmax(0, auto) max-content minmax(0, auto);
}

.card__information {
  grid-row-start: 2;
  padding: 1.3rem 1rem;
}

.card:not(.ratio) > .card__content {
  grid-template-rows: max-content minmax(0, 1fr) max-content auto;
}

.card-information .card__information-volume-pricing-note {
  margin-top: 0.6rem;
  line-height: calc(0.5 + 0.4 / var(--font-body-scale));
  color: rgba(var(--color-foreground), 0.75);
}

.card__information-volume-pricing-note--button,
.card__information-volume-pricing-note--button.quantity-popover__info-button--icon-with-label {
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-align: var(--text-alignment);
  min-width: auto;
}

.card__information-volume-pricing-note--button:hover {
  text-decoration: underline;
}

.card__information-volume-pricing-note--button
  + .global-settings-popup.quantity-popover__info {
  transform: initial;
  top: auto;
  bottom: 4rem;
  max-width: 20rem;
  width: calc(95% + 2rem);
}

.card__information-volume-pricing-note--button
  + .global-settings-popup.quantity-popover__info
  span:first-of-type {
  padding-right: 0.3rem;
}

.card__information-volume-pricing-note--button-right
  + .global-settings-popup.quantity-popover__info {
  right: 0;
  left: auto;
}

.card__information-volume-pricing-note--button-center
  + .global-settings-popup.quantity-popover__info {
  left: 50%;
  transform: translate(-50%);
}

.card__information-volume-pricing-note--button
  + .global-settings-popup.quantity-popover__info
  .quantity__rules {
  text-align: left;
}

@media screen and (min-width: 990px) {
  .grid--6-col-desktop .card__content quick-add-bulk .quantity {
    width: auto;
  }

  .grid--6-col-desktop .card__content quick-add-bulk .quantity__button {
    width: calc(3rem / var(--font-body-scale));
  }

  .grid--6-col-desktop
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    left: 50%;
    transform: translate(-50%);
    width: calc(100% + var(--border-width) + 3.5rem);
  }

  .grid--6-col-desktop
    .card--standard
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    width: calc(100% + var(--border-width) + 1rem);
  }
}

@media screen and (max-width: 749px) {
  .grid--2-col-tablet-down .card__content quick-add-bulk .quantity__button {
    width: calc(3.5rem / var(--font-body-scale));
  }

  .grid--2-col-tablet-down
    .card--card
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info,
  .grid--2-col-tablet-down
    .card--standard
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    left: 50%;
    transform: translate(-50%);
  }

  .grid--2-col-tablet-down
    .card--standard
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    width: 100%;
  }

  .grid--2-col-tablet-down
    .card--card
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    width: calc(100% + var(--border-width) + 4rem);
  }

  .grid--2-col-tablet-down .card__content quick-add-bulk .quantity {
    width: auto;
  }
}

.card-information quantity-popover volume-pricing {
  margin-top: 0;
}

@media screen and (max-width: 989px) {
  .card-information quantity-popover .quantity__rules ~ volume-pricing {
    margin-top: 0;
  }

  .card-information quantity-popover volume-pricing {
    margin-top: 4.2rem;
  }
}

@media screen and (min-width: 750px) {
  .card__information {
    padding-bottom: 1.7rem;
    padding-top: 1.7rem;
  }
}

.card__badge {
  align-self: flex-end;
  grid-row-start: 3;
  justify-self: flex-start;
}

.card__badge.top {
  align-self: flex-start;
  grid-row-start: 1;
}

.card__badge.right {
  justify-self: flex-end;
}

.card:not(.card--horizontal) > .card__content > .card__badge {
  margin: 1.3rem;
}

.card__media .media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.card__inner:not(.ratio) > .card__content {
  height: 100%;
}

.card__heading {
  margin-top: 0;
  margin-bottom: 0;
}

.card__heading:last-child {
  margin-bottom: 0;
}

.card--horizontal .card__heading,
.card--horizontal .price__container .price-item,
.card--horizontal__quick-add {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

.card--horizontal
  .card-information
  > *:not(.visually-hidden:first-child)
  + *:not(.rating):not(.card__information-volume-pricing-note) {
  margin-top: 0;
}

.card--horizontal__quick-add:before {
  box-shadow: none;
}

@media only screen and (min-width: 750px) {
  .card--horizontal .card__heading,
  .card--horizontal .price__container .price-item,
  .card--horizontal__quick-add {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

.card--card.card--media > .card__content {
  margin-top: calc(0rem - var(--image-padding));
}

.card--standard.card--text a::after,
.card--card .card__heading a::after {
  bottom: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
  top: calc(var(--border-width) * -1);
}

.card__heading a::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.card__heading a:after {
  outline-offset: 0.3rem;
}

.card__heading a:focus:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus:not(:focus-visible):after {
  box-shadow: none;
  outline: 0;
}

.card__heading a:focus {
  box-shadow: none;
  outline: 0;
}

@media screen and (min-width: 990px) {
  .card .media.media--hover-effect > img:only-child,
  .card-wrapper .media.media--hover-effect > img:only-child {
    transition: transform var(--duration-long) ease;
  }

  .card:hover .media.media--hover-effect > img:first-child:only-child,
  .card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
    transform: scale(1.03);
  }

  .card-wrapper:hover
    .media.media--hover-effect
    > img:first-child:not(:only-child) {
    opacity: 0;
  }

  .card-wrapper:hover .media.media--hover-effect > img + img {
    opacity: 1;
    transition: transform var(--duration-long) ease;
    transform: scale(1.03);
  }

  .underline-links-hover:hover a {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }
}

.card--standard.card--media .card__inner .card__information,
.card--standard.card--text:not(.card--horizontal)
  > .card__content
  .card__heading:not(.card__heading--placeholder),
.card--standard:not(.card--horizontal) > .card__content .card__badge,
.card--standard.card--text.article-card > .card__content .card__information,
.card--standard > .card__content .card__caption {
  display: none;
}

.card--standard:not(.card--horizontal) .placeholder-svg {
  width: 100%;
}

.card--standard > .card__content {
  padding: 0;
}

.card--standard > .card__content .card__information {
  padding-left: 0;
  padding-right: 0;
}

.card--card.card--media .card__inner .card__information,
.card--card.card--text .card__inner,
.card--card.card--media > .card__content .card__badge {
  display: none;
}

.card--horizontal .card__badge,
.card--horizontal.card--text .card__inner {
  display: none;
}

.card--extend-height {
  height: 100%;
}

.card--extend-height.card--standard.card--text,
.card--extend-height.card--media {
  display: flex;
  flex-direction: column;
}

.card--extend-height.card--standard.card--text .card__inner,
.card--extend-height.card--media .card__inner {
  flex-grow: 1;
}

.card .icon-wrap {
  margin-left: 0.8rem;
  white-space: nowrap;
  transition: transform var(--duration-short) ease;
  overflow: hidden;
}

.card-information > * + * {
  margin-top: 0.5rem;
}

.card-information {
  width: 100%;
}

.card-information > * {
  line-height: calc(1 + 0.4 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
}

.card-information > .price {
  color: rgb(var(--color-foreground));
}

.card--horizontal .card-information > .price {
  color: rgba(var(--color-foreground), 0.75);
}

.card-information > .rating {
  margin-top: 0.4rem;
}

/* Specificity needed due to the changes below */
.card-information
  > *:not(.visually-hidden:first-child)
  + quantity-popover:not(.rating):not(.card__information-volume-pricing-note),
.card-information
  .card__information-volume-pricing-note.card__information-volume-pricing-note--button {
  margin-top: 0;
}

.card-information
  > *:not(.visually-hidden:first-child)
  + *:not(.rating):not(.card__information-volume-pricing-note) {
  margin-top: 0.7rem;
}

.card-information .caption {
  letter-spacing: 0.07rem;
}

.card-article-info {
  margin-top: 1rem;
}

/* Card Shapes */

.card--shape .card__content {
  padding-top: 0;
}

.card--shape.card--standard:not(.card--text) .card__inner {
  border: 0;
  /* Border is not currently compatible with image shapes for standard cards. */
  background-color: transparent;
  filter: drop-shadow(
    var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
      var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity))
  );
}

.card--shape.card--standard:not(.card--text) .card__inner:after {
  display: none;
}

.grid__item:nth-child(2n) .shape--blob {
  clip-path: polygon(var(--shape--blob-2));
}

.grid__item:nth-child(3n) .shape--blob {
  clip-path: polygon(var(--shape--blob-3));
}

.grid__item:nth-child(4n) .shape--blob {
  clip-path: polygon(var(--shape--blob-4));
}

.grid__item:nth-child(5n) .shape--blob {
  clip-path: polygon(var(--shape--blob-5));
}

.grid__item:nth-child(7n) .shape--blob {
  clip-path: polygon(var(--shape--blob-6));
}

.grid__item:nth-child(8n) .shape--blob {
  clip-path: polygon(var(--shape--blob-1));
}

/* Card Shape Hover Rules */

@media (prefers-reduced-motion: no-preference) {
  .product-card-wrapper .shape--round {
    transition: clip-path var(--duration-long) ease;
  }

  .product-card-wrapper:hover .shape--round {
    clip-path: ellipse(47% 47% at 50% 50%);
  }

  .product-card-wrapper .shape--blob {
    transition: clip-path var(--duration-long) ease-in-out;
  }

  .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-5));
  }

  .grid__item:nth-child(2n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-6));
  }

  .grid__item:nth-child(3n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-1));
  }

  .grid__item:nth-child(4n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-2));
  }

  .grid__item:nth-child(5n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-3));
  }

  .grid__item:nth-child(7n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-4));
  }

  .grid__item:nth-child(8n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-5));
  }
}

.variant-selector-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffffb3;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 999999;
  /* Safety net: the size/colour row-div refactor dropped the width caps
     that used to live on .size-options and .card-colour-swatches, and
     since both are flex:0 0 auto (no shrink) siblings in a nowrap row,
     a card with several sizes AND several colours could claim more
     combined width than the card itself, spilling content past the
     card's right edge onto the page. Caps are reinstated below; this
     clips anything that still doesn't fit rather than letting it escape. */
  overflow: hidden;
}
.card:hover .variant-selector-overlay {
  opacity: 1;
}
.variant-selector-overlay:has(.card-colour-swatches) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 6px;
  column-gap: 10px;
  /* Real-device testing (2026-09-08) showed the width caps below (100px +
     134px + gaps) can still exceed a narrow mobile card's actual available
     width for products with both several sizes AND several colours (e.g.
     Kirra, ~5 sizes + 8 colours) — content was getting clipped/pushed to
     the card edge even with overflow:hidden containing it. flex-wrap here
     lets sizes and colours drop onto their own separate lines instead of
     ever fighting for the same line — safe/additive, since anything that
     already fits side-by-side is unaffected. */
}
/* Rows are built as explicit, separate containers in the markup
   (.size-options__row / .card-colour-swatches__row — see card-product.liquid)
   rather than a flex-wrap + width-cap trick: a previous attempt forcing the
   wrap via a flex-basis:100% spacer inside one flex-wrap container proved
   unreliable in practice (the split point didn't always land where the
   markup put it). Stacking real row elements in a column removes that
   ambiguity — each row is just its own one-line flex row. */
.variant-selector-overlay .size-options {
  display: flex;
  flex-direction: column;
  /* Also governs desktop's flattened single-row layout (see the
     display:contents override below) — main axis is vertical here
     (column) but becomes horizontal there (row), so this one property
     covers both. */
  justify-content: center;
  gap: 4px;
  /* Mobile-only cap (reset to none on desktop below) so this side can't
     grow wide enough to push .card-colour-swatches off the card — see
     the overflow:hidden note on .variant-selector-overlay above. Sized
     for ~2 short size labels; longer runs wrap onto their own row anyway
     via .size-options__row, so this only affects how wide any single
     row can get. */
  max-width: 100px;
}
.variant-selector-overlay:has(.card-colour-swatches) .size-options {
  justify-content: flex-start;
}
.size-options__row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.variant-selector-overlay:has(.card-colour-swatches) .size-options__row {
  justify-content: flex-start;
}
.card-colour-swatches {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Pushes this block to the right within the outer overlay row whether
     it's sharing a line with .size-options (replaces the old
     justify-content:space-between on the parent, which stopped working
     once that parent needed flex-wrap) or has wrapped onto its own line
     (where it'd otherwise sit flush left with everything else). */
  margin-left: auto;
  /* Same dual-purpose reasoning as .size-options above, for the desktop
     flattened row. */
  justify-content: flex-end;
  /* Same 10px gap as between swatches within a row (.card-colour-
     swatches__row), so the vertical gap between rows matches the
     horizontal gap between colours. */
  gap: 10px;
  flex: 0 0 auto;
  /* Mobile-only cap (reset to none on desktop below) — same overflow
     reasoning as .size-options' max-width above. Sized for exactly 5
     swatches (5 x 14px dot + 4 x 10px gap), matching the max row length
     .card-colour-swatches__row ever renders (2026-09-08: max per row
     dropped from 6 to 5, see card-product.liquid). */
  max-width: 110px;
}
.card-colour-swatches__row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.card-colour-swatches .swatch-item {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  outline: 1px solid rgba(0, 0, 0, 0.35);
  outline-offset: 1px;
  cursor: pointer;
  transition: outline-color 0.2s ease;
  pointer-events: auto;
}
.card-colour-swatches .swatch-item--selected,
.card-colour-swatches .swatch-item:hover {
  outline-color: #080808;
}

/* Dim + block interaction while a swatch click's card-swatch-render fetch
   (assets/card-product.js) is in flight, swapping this card to a sibling
   colour's product. Removed automatically on success since the whole
   <card-product> element gets replaced; only matters on slow connections. */
card-product.is-swapping {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.variant-selector-overlay .size-option {
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  transition: all 0.2s ease;
  pointer-events: auto;
}
.variant-selector-overlay .size-option:hover {
  text-decoration: underline;
}
.variant-selector-overlay .size-option:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}
.product-card-wrapper .card__inner product-form {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.product-card-wrapper .card:hover .card__inner product-form {
  opacity: 1;
}
.product-card-wrapper .card__inner product-form .quick-add__submit {
  border-radius: 0;
  font-size: 12px;
  height: auto;
  padding: 10px;
  pointer-events: auto;
}
.product-card-wrapper .card__inner product-form .quick-add__submit:hover span {
  text-decoration: underline;
}
@media (min-width: 750px) {
  .product-card-wrapper .card--card .card__inner .quick-add {
    display: none;
  }
  /* The 2-row split (sizes at 5+, colours at 7+) is a mobile-only space
     constraint — desktop cards are wide enough to show everything in one
     row. The rows are separate elements in the markup (.size-options__row /
     .card-colour-swatches__row), so on desktop we flatten them: switch the
     parent back to a single flex row and make each row wrapper
     `display: contents` so its children become direct flex items of that
     row again, regardless of how many row groups card-product.liquid
     rendered. */
  .variant-selector-overlay .size-options,
  .card-colour-swatches {
    flex-direction: row;
    max-width: none;
  }
  .size-options__row,
  .card-colour-swatches__row {
    display: contents;
  }
}
@media (max-width: 749px) {
  .variant-selector-overlay {
    display: none;
    padding: 8px;
  }
  .variant-selector-overlay .size-options {
    gap: 8px;
  }
  .variant-selector-overlay .size-option {
    font-size: 10px;
    color: rgb(var(--color-foreground));
    -webkit-appearance: none;
    appearance: none;
  }
  .product-card-wrapper .card__inner product-form .quick-add__submit {
    font-size: 10px;
  }
