/** Shopify CDN: Minification failed

Line 72:14 Expected ":"

**/
/* Hide original condition dropdowns immediately */
.product-form__input--dropdown .select__select[name*="Condition" i],
.product-form__input--dropdown .select__select[name*="condition" i] {
  display: none !important;
}

.product-form__input--dropdown .select[data-option-name="condition"] {
  display: none !important;
}

/* Show loading state during transitions */
.product-form__input--dropdown[data-dynamic-width]:not(:has(.custom-select-replacement)) {
  position: relative;
}

.product-form__input--dropdown[data-dynamic-width]:not(:has(.custom-select-replacement))::after {
  content: "Loading...";
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-radius: var(--inputs-radius, 0.4rem);
}

variant-selects {
  display: block;
}

/* Completely hide original dropdown when custom replacement exists */
.product-form__input--dropdown:has(+ .custom-select-replacement) {
  display: none !important;
}

/* Alternative fallback for browsers that don't support :has() */
.product-form__input--dropdown.replaced-with-custom {
  display: none !important;
}
/* Custom dropdown replacement styles */
.custom-select-replacement {
  position: relative;
  display: inline-block;
  font-family: inherit;
  margin-top: 0.5rem;
}

.custom-select-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-radius: var(--inputs-radius, 0.4rem);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.4;
  min-height: 4.4rem;
  box-sizing: border-box;
  border-color 0.2s ease;
  position: relative;
  
  /* Use CSS custom property for width - this will override other CSS */
  width: var(--custom-dropdown-width, 120px) !important;
  min-width: var(--custom-dropdown-width, 120px) !important;
  max-width: var(--custom-dropdown-width, 120px) !important;
  transition: width 0.2s ease !important;
}

.custom-select-display:hover {
  border-color: rgba(var(--color-foreground), 0.4);
}

.custom-select-replacement.open .custom-select-display {
  border-color: rgb(var(--color-foreground));
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgb(var(--color-foreground));
  font-weight: 400;
  margin-right: 1rem;
}

.custom-select-arrow {
  flex-shrink: 0;
  width: 1.2rem;
  height: 0.8rem;
  transition: transform 0.2s ease;
  color: rgba(var(--color-foreground), 0.6);
}

.custom-select-replacement.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgb(var(--color-foreground));
  border-top: none;
  border-bottom-left-radius: var(--inputs-radius, 0.4rem);
  border-bottom-right-radius: var(--inputs-radius, 0.4rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  min-width: 100%;
}

.custom-select-replacement.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.4;
  color: rgb(var(--color-foreground));
  transition: background-color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-option:hover {
  background-color: rgba(var(--color-foreground), 0.05);
}

.custom-select-option.selected {
  background-color: rgba(var(--color-foreground), 0.1);
  font-weight: 500;
}

.custom-select-option:last-child {
  border-bottom-left-radius: var(--inputs-radius, 0.4rem);
  border-bottom-right-radius: var(--inputs-radius, 0.4rem);
}

/* Focus styles for accessibility */
.custom-select-display:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.1rem;
}

/* Mobile responsive */
@media screen and (max-width: 749px) {
  .custom-select-replacement {
    width: 100%;
  }
  
  .custom-select-display {
    width: 100% !important;
    min-width: 100% !important;
  }
  
  .custom-select-options {
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* Hide original select completely */
.product-form__input--dropdown .select:has(+ .custom-select-replacement) {
  display: none;
}

.product--no-media .product-form__input--pill,
.product--no-media .product-form__input--swatch,
.product--no-media .product-form__input--dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product--no-media .product-form__input.product-form__input--pill,
.product--no-media .product-form__input.product-form__input--swatch {
  flex-wrap: wrap;
  margin: 0 auto 1.2rem auto;
}

.product--no-media .product-form__input--dropdown {
  flex-direction: column;
  max-width: 100%;
}

:is(.product-form__input--pill, .product-form__input--swatch) .form__label {
  margin-bottom: 0.2rem;
}

.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;
}


/* Custom styles for Pill display type */
.product-form__input--pill input[type='radio'] + label {
  border: var(--variant-pills-border-width) solid rgba(var(--color-foreground), var(--variant-pills-border-opacity));
  background-color: rgb(var(--color-background));
  color: rgba(var(--color-foreground));
  border-radius: var(--variant-pills-radius);
  color: rgb(var(--color-foreground));
  display: inline-block;
  margin: 0.7rem 0.5rem 0.2rem 0;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}

.product-form__input--pill input[type='radio'] + label:before {
  content: '';
  position: absolute;
  top: calc(var(--variant-pills-border-width) * -1);
  right: calc(var(--variant-pills-border-width) * -1);
  bottom: calc(var(--variant-pills-border-width) * -1);
  left: calc(var(--variant-pills-border-width) * -1);
  z-index: -1;
  border-radius: var(--variant-pills-radius);
  box-shadow: var(--variant-pills-shadow-horizontal-offset) var(--variant-pills-shadow-vertical-offset)
    var(--variant-pills-shadow-blur-radius) rgba(var(--color-shadow), var(--variant-pills-shadow-opacity));
}

.product-form__input--pill input[type='radio'] + label:hover {
  border-color: rgb(var(--color-foreground));
}

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

@media screen and (forced-colors: active) {
  .product-form__input--pill input[type='radio']:checked + label {
    text-decoration: underline;
  }

  .product-form__input--pill input[type='radio']:focus-visible + label {
    outline: transparent solid 1px;
    outline-offset: 2px;
  }
}

.product-form__input--pill input[type='radio']:checked + label::selection {
  background-color: rgba(var(--color-background), 0.3);
}

.product-form__input--pill input[type='radio']:disabled + label,
.product-form__input--pill input[type='radio'].disabled + label {
  border-color: rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: line-through;
}

.product-form__input--pill input[type='radio'].disabled:checked + label,
.product-form__input--pill input[type='radio']:disabled:checked + label {
  color: rgba(var(--color-background), 0.6);
}
.product-form__input--pill input[type='radio']:focus-visible + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* Fallback */
.product-form__input--pill 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);
}

/* Custom styles for Swatch display type */
.product-form__input--swatch {
  display: flex;
  flex-wrap: wrap;
}

.product-form__input--swatch .swatch-input__input + .swatch-input__label {
  --swatch-input--size: 3.6rem;

  margin: 0.7rem 1.2rem 0.2rem 0;
}

@media screen and (min-width: 750px) {
  .product-form__input--swatch .swatch-input__input + .swatch-input__label {
    --swatch-input--size: 2.8rem;
  }
}
/* End custom styles for Swatch display type */

