/** Shopify CDN: Minification failed

Line 132:19 Expected identifier but found whitespace
Line 132:20 Unexpected "linear-gradient("

**/
variant-selects {
  display: block;
}
variant-selects input:is([type=checkbox], [type=radio]):is(:disabled, .disabled) + label {
  cursor: pointer;
}

.product-form__input {
  /* Custom styles for Pill display type */
}
.product-form__input input[type=radio] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}
.product-form__input input[type=radio]:not(.disabled):not(.visually-disabled) + label > .label-unavailable {
  display: none;
}

/* Dropdown swatches */
.product-form__input--dropdown {
  --swatch-input--size: 2rem;
  margin-bottom: 1.6rem;
}
.product-form__input--dropdown .dropdown-swatch {
  position: absolute;
  inset-inline-start: 1.6rem;
  top: calc(50% - var(--swatch-input--size) / 2);
  width: var(--swatch-input--size);
  height: var(--swatch-input--size);
  z-index: 1;
}
.product-form__input--dropdown .dropdown-swatch + select {
  padding-inline-start: calc(2.4rem + var(--swatch-input--size));
}

/* =========================================================
   BUTTON VARIANTS (REWORKED)
   - Default: NO background, NO border
   - Selected: border only
   - Circle style: vertical oval (taller than wide)
   - Sold out: horizontal line through button (text stays visible)
========================================================= */

.product-form__input--button {
  --variant-pills-border-width: 1px;
  --variant-pills-radius: 9999px;
}

/* Base label */
.product-form__input--button input[type=radio] + label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin: 0;

  /* baseline sizing */
  min-height: var(--buttons-height);
  min-width: var(--buttons-height);

  padding: 0 1.2rem;

  transition: border-color var(--duration-default) ease, box-shadow var(--duration-default) ease;
  color: rgb(var(--color-foreground));

  /* IMPORTANT: default = clean */
  background: transparent;
  border: var(--variant-pills-border-width) solid transparent;
  border-radius: var(--variant-pills-radius, var(--buttons-radius));
}

/* Hover stays clean (no fill, no border) */
.product-form__input--button input[type=radio] + label:hover {
  background: transparent;
  border-color: transparent;
  color: rgb(var(--color-foreground));
}

/* Selected = border only */
.product-form__input--button input[type=radio]:checked + label {
  background: transparent;
  border-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
}

/* Selection highlight */
.product-form__input--button input[type=radio]:checked + label::selection {
  background-color: rgba(var(--color-background), 0.3);
}

/* SOLD OUT (disabled) — ONLY the line */
.product-form__input--button input[type="radio"]:disabled + label,
.product-form__input--button input[type="radio"].disabled + label {
  color: rgb(var(--color-foreground));  /* not faded */
  border-color: transparent !important; /* no border */
  cursor: not-allowed;

  /* horizontal strike */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 1.2rem) 1px;
}

/* Sold out hover: keep it the same */
.product-form__input--button input[type="radio"]:disabled + label:hover,
.product-form__input--button input[type="radio"].disabled + label:hover {
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border-color: transparent !important;
}

/* If a sold-out option is ALSO checked, still ONLY the line (no border) */
.product-form__input--button input[type="radio"]:disabled:checked + label,
.product-form__input--button input[type="radio"].disabled:checked + label {
  border-color: transparent !important;
}


  /* Straight line left → right (does NOT cover text) */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 1.2rem) 1px;
}

/* If disabled + checked, keep strike subtle */
.product-form__input--button input[type="radio"]:disabled:checked + label,
.product-form__input--button input[type="radio"].disabled:checked + label {
  color: rgba(var(--color-foreground), 0.35);
}

/* Focus ring */
.product-form__input--button input[type=radio]:focus-visible + label,
.product-form__input--button input[type=radio].focused + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
              0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* Square style */
.product-form__input--button-square {
  --swatch-radius: 0;
  --variant-pills-radius: 0;
}
.product-form__input--button-square input[type=radio] + label,
.product-form__input--button-square input[type=radio] + label > .swatch-color {
  border-radius: 0;
}
.product-form__input--button-square input[type=radio] + label:not([data-swatch-type=variant_image],
[data-swatch-type=color_swatch],
[data-swatch-type=shopify_swatch],
[data-swatch-type=text]) {
  padding: 0 0.8rem;
}

/* Circle style -> VERTICAL OVAL */
.product-form__input--button-circle {
  --swatch-radius: 9999px;
  --variant-pills-radius: 9999px;

  /* tweak these two for your exact look */
  --variant-oval-height: 4.8rem; /* taller */
  --variant-oval-width: 3.4rem;  /* narrower */
}

/* Force vertical oval dimensions */
.product-form__input--button-circle input[type=radio] + label {
  min-height: var(--variant-oval-height);
  min-width: var(--variant-oval-width);
  padding: 0 0.6rem;
}

/* Standard style */
.product-form__input--button-standard {
  --swatch-radius: var(--small-blocks-radius);
  --variant-pills-radius: var(--small-blocks-radius);
}

/* =========================================================
   COLOR / SWATCH
========================================================= */

.product-form__input--color .swatch-color,
.product-form__input--swatch .swatch-color {
  background: var(--swatch-background);
  background-position: var(--swatch-focal-point, 50%);
  background-size: cover;
  min-width: calc(var(--swatch-size) - 0.2rem);
  min-height: calc(var(--swatch-size) - 0.2rem);
  margin: 0.1rem;
  border-radius: var(--swatch-radius);
  position: relative;
}
.product-form__input--color .swatch-color:before,
.product-form__input--color .swatch-color:after,
.product-form__input--swatch .swatch-color:before,
.product-form__input--swatch .swatch-color:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: all var(--duration-default);
}
.product-form__input--color .swatch-color:before,
.product-form__input--swatch .swatch-color:before {
  opacity: 0;
  box-shadow: 0 0 0 0.5rem rgb(var(--color-background)), 0 0 0 0.6rem var(--active-shadow-color);
}
.product-form__input--color .swatch-color:after,
.product-form__input--swatch .swatch-color:after {
  box-shadow: 0px 0px 0px 0.1rem rgb(var(--color-border));
}
.product-form__input--color input[type=radio]:checked + label .swatch-color,
.product-form__input--swatch input[type=radio]:checked + label .swatch-color {
  --active-shadow-color: rgb(var(--color-foreground));
}
.product-form__input--color input[type=radio]:checked + label .swatch-color:before,
.product-form__input--swatch input[type=radio]:checked + label .swatch-color:before {
  opacity: 1;
}
.product-form__input--color input[type=radio]:is(.disabled) + label,
.product-form__input--swatch input[type=radio]:is(.disabled) + label {
  opacity: 1;
}
.product-form__input--color input[type=radio]:is(.disabled) + label .swatch-color,
.product-form__input--swatch input[type=radio]:is(.disabled) + label .swatch-color {
  opacity: 0.5;
}
.product-form__input--color input[type=radio]:is(.disabled) + label .swatch-color:before,
.product-form__input--swatch input[type=radio]:is(.disabled) + label .swatch-color:before {
  background: linear-gradient(
    to bottom left,
    transparent calc(50% - 0.5px),
    var(--color-foreground-lighten-19) calc(50% - 0.5px) calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  opacity: 1;
  box-shadow: none;
}
.product-form__input--color input[type=radio]:is(.disabled):checked + label .swatch-color:before,
.product-form__input--swatch input[type=radio]:is(.disabled):checked + label .swatch-color:before {
  inset: -0.5rem;
  box-shadow: 0 0 0 0.1rem var(--color-foreground-lighten-19);
}
.product-form__input--swatch {
  display: flex;
  flex-wrap: wrap;
}

/* Forced colors accessibility */
@media screen and (forced-colors: active) {
  .product-form__input--button input[type=radio]:checked + label {
    text-decoration: underline;
  }
  .product-form__input--button input[type=radio]:focus-visible + label {
    outline: transparent solid 1px;
    outline-offset: 2px;
  }
}
