/** Shopify CDN: Minification failed

Line 116:13 Expected ":"

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

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


.custom-save-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 7px;
    border-radius: 20px;
    font-family: "Moranga";
    width: max-content;
    background: var(--grad);
    color: white;
    font-size: 13px;
    text-transform: capitalize;
}

fieldset.js.product-form__input.product-form__input--pill {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.product-form__input--pill input[type=radio]+label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 10px;
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    border: 1px solid #a0a0a063;
    width: 120px;
  position : relative;
}
.product-form__input--pill input[type='radio'] + label img{
  height : 70px;
  width : auto;
}
 .custom-option-name{
  font-size : 16px;
   font-weight : 600;
   letter-spacing : -0.3px;
    transition: all 0.5s ease;
}
 .custom-option-price{
   font-family : "Moranga";
   font-size : 14px;
   margin-top  4px;
   font-weight : 500;
 }
.product-form__input--pill input[type='radio']:checked + label {
  background-color: #F4ECE2;
   border: 1px solid #27334F;
}
.product-form__input--pill input[type='radio']:checked + label .custom-option-name{
  background: var(--grad);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  width : fit-content;
    transition: all 0.5s ease;
}
@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;
}

p.product_variants_custom_prices {
    text-align: center;
}
span.custom-option-compare_price {
    font-family: "Moranga";
    font-size: 14px;
    display: block;
    font-weight: 400;
    opacity: 0.9;
    text-decoration: line-through;
}
@media screen and (min-width: 750px) {
  .product-form__input--swatch .swatch-input__input + .swatch-input__label {
    --swatch-input--size: 2.8rem;
  }
  
}
   @media screen and (max-width: 750px){
     .product-form__input--pill input[type='radio'] + label img{
  height : 70px;
  width : auto;
}
    .product-form__input--pill input[type=radio]+label {
   
    width:calc( 33% - 0px );
    
} 
   }
/* End custom styles for Swatch display type */
