/** Shopify CDN: Minification failed

Line 275:3 Expected "}" to go with "{"

**/
variant-selects {
  display: block;
}

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

.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;
}
/* Keep Dawn default button styling */
.variant-option {
  position: relative;
  display: inline-block;
}

/* Badge icon only */
.variant-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #c8f2a5;
  padding: 3px 4px;
  border-radius: 4px;
  z-index: 3;
}

.variant-icon img {
  display: block;
  width: 14px;
  height: 14px;
}

/* Do NOT override Dawn styles */
.variant-label {
  position: relative;
}

/* Hide radio input */
.variant-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Product variant pill styles */
.product-form__input--pill input[type='radio'] + label {
  border: 1px solid #2f4f3a !important;
  background-color: #f5f6f4 !important;
  color: #2f4f3a !important;
  border-radius: 4px !important;
  display: inline-block !important;
  margin: 8px 8px 0 0 !important;
  padding: 12px 22px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: 'Jost', sans-serif !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

/* Selected state */
.product-form__input--pill input[type='radio']:checked + label {
  background-color: #2f4f3a !important;
  color: #ffffff !important;
  border-color: #2f4f3a !important;
  font-family: 'Jost', sans-serif !important;
}

/* Hover effect */
.product-form__input--pill input[type='radio'] + label:hover {
  background-color: #e8ece8 !important;
}

/* Hide default radio */
.product-form__input--pill input[type='radio'] {
  display: none !important;
}


.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 */

/* =======================================================
   COMPLETE MOBILE VARIANT OPTIMIZATION (With 2x2 Grid)
   ======================================================= */
@media screen and (max-width: 749px) {
  
  /* ----------------------------------------------------
     1. TEXT BUTTONS (Product Type & Size)
     ---------------------------------------------------- */
  fieldset.product-form__input.product-form__input--pill {
    display: flex !important;
    flex-wrap: wrap !important; 
    gap: 8px !important; 
    width: 100% !important; 
    margin: 0 0 15px 0 !important;
    padding-bottom: 0 !important;
  }

  fieldset.product-form__input.product-form__input--pill input[type="radio"] + label {
    min-height: 44px !important; 
    padding: 8px 12px !important; 
    font-size: 13px !important; 
    margin: 0 !important; 
    display: inline-flex !important; 
    align-items: center !important;
    justify-content: center !important;
    flex-grow: 1 !important; /* Forces them to stretch and fill empty space */
  }

  /* ----------------------------------------------------
     2. IMAGE SWATCHES (Frames) - The True 2x2 Grid Fix
     ---------------------------------------------------- */
  fieldset.product-form__input.product-form__input--swatch {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Creates exactly 2 columns */
    gap: 12px 10px !important; 
    width: 100% !important;
    margin: 0 0 15px 0 !important;
    padding-bottom: 0 !important;
  }

  /* THE MAGIC FIX: Force the word "Frame" to span across BOTH columns */
  fieldset.product-form__input.product-form__input--swatch legend {
    grid-column: 1 / -1 !important; 
    margin-bottom: 8px !important;
    width: 100% !important;
  }

  /* Reset the margins on the labels so they fit perfectly in the grid cells */
  .product-form__input--swatch .swatch-input__input + .swatch-input__label,
  .product-form__input--swatch label {
    margin: 0 !important; 
    width: 100% !important; 
    text-align: center !important;
  }

  /* Adjust the text under the frames */
  .product-form__input--swatch label {
    font-size: 12px !important; 
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important; 
    padding-top: 6px !important;
  }