/** Shopify CDN: Minification failed

Line 328:15 Expected identifier but found whitespace
Line 328:16 Unexpected "rgba("

**/
variant-selects {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
}

.product-form__input {
  flex: 0 0 100%;
  display: grid;
  grid-template-areas: 'input';
  align-items: center;
  position: relative;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.product-form__input--pill .product-form__label {
  display: block;
  margin-bottom: 1.5rem;
}

/* Custom variant option styles */
.product-variant-option {
  display: block;
  margin-bottom: 15px;
  width: 100%;
}

/* Add a class to explicitly set height for all variants */
.product-variant-option:first-child .variant-option-label,
.product-variant-option:not(:first-child) .variant-option-label,
.variant-option-label {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  min-height: 55px; /* Consistent height for all variants */
  height: 55px; /* Fixed height for all variants */
  font-size: 16px;
  background-color: #FFFFFF;
  cursor: pointer;
  box-sizing: border-box; /* Ensure padding is included in height */
  overflow: hidden; /* Prevent overflow */
}

/* Adjust variant name to allow space for badge */
.variant-name {
  font-weight: 500;
  color: #333; /* Ensure text is not white */
  margin-right: 15px; /* Space between name and badge/price */
  text-align: left; /* Ensure text alignment is left */
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%; /* Allow text to fill available space */
}

/* Ensure price column is properly sized */
.variant-price-direct {
  font-weight: 600;
  color: #006651; /* Darker variant of #008060 */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 90px; /* Increased to accommodate comparison prices */
  height: 38px; /* Consistent height for price container */
  justify-content: center; /* Center contents vertically */
  white-space: nowrap; /* Prevent price wrapping */
  flex-shrink: 0; /* Prevent price from shrinking */
}

/* When there's no comparison price, center the single price vertically */
.variant-price-direct:not(:has(.variant-price-compare)) {
  justify-content: center;
}

.variant-price-sale {
  color: #C00000; /* Red for sale prices */
  font-weight: 600;
  font-size: 15px;
}

.variant-price-compare {
  font-size: 13px;
  color: #666;
  font-weight: normal;
  text-decoration: line-through;
  margin-top: 2px;
}

/* Style for radio buttons */
.product-form__input--pill > fieldset input[type='radio'] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  appearance: auto;
}

/* Selected variant styles - with stronger selectors to ensure they apply */
.product-form__input--pill > fieldset input[type='radio']:checked + .variant-option-label,
label.variant-option-label:has(input[type='radio']:checked) {
  background-color: rgba(0, 128, 96, 0.05) !important; /* #008060 with low opacity */
  border-color: #007558 !important; /* Slightly darker than #008060 */
  box-shadow: 0 0 0 1px rgba(0, 128, 96, 0.1) !important;
  border-left: 3px solid #006651 !important; /* Darker variant of #008060, 3px thick */
  border-style: solid !important;
}

/* Hover styles - with stronger selectors */
.product-form__input--pill > fieldset input[type='radio']:hover + .variant-option-label,
label.variant-option-label:hover {
  border-color: rgba(0, 128, 96, 0.6) !important; /* #008060 with medium opacity */
  box-shadow: 0 4px 8px rgba(0, 128, 96, 0.1) !important; /* #008060 with low opacity */
}

/* Disabled/unavailable styles */
.product-form__input--pill > fieldset input[type='radio'].disabled + .variant-option-label {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
  background-color: #f8f8f8;
  border-color: #e5e5e5;
}

/* Original variant styles kept for compatibility */
.product-form__input--pill > fieldset label {
  position: relative;
  cursor: pointer;
}

.product-form__input--pill > fieldset input[type='radio'] + label {
  cursor: pointer;
  background-color: #FFFFFF;
  min-height: 55px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

.product-form__input--pill > fieldset input[type='radio']:checked + label {
  background-color: rgba(0, 128, 96, 0.05); /* #008060 with low opacity */
  border-color: #007558; /* Slightly darker than #008060 */
  box-shadow: 0 0 0 1px rgba(0, 128, 96, 0.1);
  border-left: 4px solid #006651; /* Darker variant of #008060 */
}

.product-form__input--pill > fieldset input[type='radio']:hover + label {
  border-color: rgba(0, 128, 96, 0.6); /* #008060 with medium opacity */
  box-shadow: 0 4px 8px rgba(0, 128, 96, 0.1); /* #008060 with low opacity */
}

.product-form__input--pill > fieldset input[type='radio'].disabled + label {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
  background-color: #f8f8f8;
  border-color: #e5e5e5;
}

.product-form__input--pill 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;
}

.product-form__input--dropdown {
  --swatch-input--size: 2rem;
  margin-bottom: 1.6rem;
}

.product-form__input--dropdown .dropdown-swatch + select {
  padding-left: calc(2.4rem + var(--swatch-input--size));
}

.product-form__input--dropdown .dropdown-swatch {
  position: absolute;
  left: 1.6rem;
  top: calc(50% - var(--swatch-input--size) / 2);
  width: var(--swatch-input--size);
  height: var(--swatch-input--size);
  z-index: 1;
}

/* 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: 10px;
  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;
  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: 10px;
  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 */

/* Add specific styles for disabled elements */
.variant-option-label.sold-out {
  opacity: 0.7;
  background-color: #f8f8f8 !important;
  border-color: #e5e5e5 !important;
}

.variant-price-direct.unavailable,
.sold-out .variant-price-direct {
  color: #999;
  text-decoration: line-through;
}

/* Additional styling to ensure our colors are applied */
.product-variant-option label:has(input[type='radio']:checked) {
  background-color: rgba(0, 128, 96, 0.05) !important; /* #008060 with low opacity */
  border-color: #007558 !important; /* Slightly darker than #008060 */
  border-left: 3px solid #006651 !important; /* Darker variant of #008060, 3px thick */
}

/* Ensure these styles are applied even with our new structure */
fieldset.product-form__input--pill input[type='radio']:checked + .variant-option-label,
fieldset.product-form__input--pill input[type='radio']:checked ~ .variant-option-label,
fieldset.product-form__input--pill label:has(input[type='radio']:checked) {
  background-color: rgba(0, 128, 96, 0.05) !important; /* #008060 with low opacity */
  border-color: #007558 !important; /* Slightly darker than #008060 */
  box-shadow: 0 0 0 1px rgba(0, 128, 96, 0.1) !important;
  border-left: 3px solid #006651 !important; /* Darker variant of #008060, 3px thick */
  border-style: solid !important;
}

/* Ensure hover styles are applied */
fieldset.product-form__input--pill input[type='radio']:hover ~ .variant-option-label
  border-color: rgba(0, 128, 96, 0.6) !important; /* #008060 with medium opacity */
  box-shadow: 0 4px 8px rgba(0, 128, 96, 0.1) !important; /* #008060 with low opacity */
}

/* Custom radio styling */
.product-variant-option input[type="radio"] {
  appearance: auto;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #008060;
  vertical-align: middle;
}

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

/* Add this to ensure all variants use the same box model calculations */
.product-form__input--pill fieldset {
  padding: 0;
  margin: 0;
}

/* Fix any inconsistencies for first and last items */
.product-form__input--pill > fieldset .product-variant-option:first-child,
.product-form__input--pill > fieldset .product-variant-option:last-child {
  margin-bottom: 15px;
}

.variant-price {
  font-weight: 600;
  color: #006651; /* Darker variant of #008060 */
}

/* Style the discount badge */
.discount-badge {
  background-color: #C00000;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 24px;
  flex-shrink: 0; /* Prevent badge from shrinking */
}

/* Fix overall flexbox layout */
.variant-option-label > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  overflow: hidden; /* Prevent overflow */
}
