/** Shopify CDN: Minification failed

Line 81:12 Expected identifier but found whitespace
Line 81:17 Unexpected ";"
Line 179:4 Unexpected "/"
Line 266:2 Unexpected "/"

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








  /* .product-form__input--pill {
 
  display: flex; /* Arrange items in a row */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 7px; /* Add spacing between buttons */
  row-gap: 10px;
    position: relative;
}
.recommended-label {
  background-color: black;
  color: yellow;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  left: 5px;
}

.product-form__input--pill input[type='radio'] {
  display: none; /* Hide the radio button itself */
}

.product-form__input--pill input[type='radio'] + label {

   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  margin-bottom: 10px;
  border: 1px solid #28a745; /* Green border */
  background-color: #ffffff; /* White background */
  color: #000000; /* black text */
  border-radius: 5px; /* Rounded corners */
  display: inline-flex; /* Make them inline */
  align-items: center;
  justify-content: center;
  padding: 10px 15px; /* Better padding for buttons */
  font-size: 1.4rem;
  cursor: pointer; /* Pointer cursor */
  transition: all 0.3s ease-in-out;
  flex-grow: 1; /* Make buttons grow equally */
  text-align: center;
  min-width: 100px; /* Ensure minimum width */
  position: relative;
}

.product-form__input--pill input[type='radio']:checked + label::before {
  content: '✔'; /* Unicode tick symbol */
  size:12px;
  font-size: 12px;
  margin-top:6px;
    margin-left:-15px;
  font-weight: bold;
  color: white;
  background-color: #28a745;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -10px; /* Adjust for perfect positioning */
  left: -10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Hover effect with green border */
.product-form__input--pill input[type='radio'] + label:hover {
  background-color: rgba(40, 167, 69, 0.1); /* Light green background on hover */
  border-color: #28a745 !important; /* Green border on hover */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Checked state - Light gray background with black text and green border */
.product-form__input--pill input[type='radio']:checked + label {
  background-color: #E6E6E6 !important; /* Light gray background when selected */
  color: black !important; /* Black text when selected */
  border-color: #28a745 !important; /* Keep green border */
  border: 3px solid #28a745 !important;
  font-weight: bold !important;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);    
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-form__input--pill {
    justify-content: center; /* Center items on small screens */
    
    font-size:1.8rem;
    height:;
  }
  .product-form__input--pill input[type='radio'] + label {
    font-size: 1.8rem;
    padding: 5px 5px;
    min-width: 100%;
    flex-grow: 1; /* Ensure they grow equally on smaller screens too */
  }
}  */
  
/* another code  */

/* .product-form__input--pill {
  display: flex; /* Arrange items in a row */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 7px; /* Add spacing between buttons */
  row-gap: 10px;
}

/* Hide the radio button itself */
.product-form__input--pill input[type='radio'] {
  display: none;
}

/* Default label styling */
.product-form__input--pill input[type='radio'] + label {
  position: relative; /* Needed for absolute positioning */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  border: 1px solid #28a745; /* Green border */
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text */
  border-radius: 5px; /* Rounded corners */
  display: inline-flex; /* Make them inline */
  align-items: center;
  justify-content: center;
  padding: 10px 15px; /* Better padding for buttons */
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  flex-grow: 1;
  text-align: center;
  min-width: 100px;
}

/* Hover effect with green border */
.product-form__input--pill input[type='radio'] + label:hover {
  background-color: rgba(40, 167, 69, 0.1); /* Light green background on hover */
  border-color: #28a745 !important; /* Green border on hover */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Checked state - Light gray background with black text and green border */
.product-form__input--pill input[type='radio']:checked + label {
  background-color: #E6E6E6 !important; /* Light gray background when selected */
  color: black !important;
  border-color: #28a745 !important;
  border: 3px solid #28a745 !important;
  font-weight: bold !important;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Green tick mark on selected option */
.product-form__input--pill input[type='radio']:checked + label::before {
  content: "✔"; /* Tick mark */
  position: absolute;
  top: -12px;  /* Move it above */
  left: 10px;  /* Center it horizontally */
  width: 20px;
  height: 20px;
  background-color: #28a745; /* Green background */
  color: white; /* White tick */
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;  /* Ensures it's above everything */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-form__input--pill {
    justify-content: center; /* Center items on small screens */
    font-size: 1.8rem;
  }
  .product-form__input--pill input[type='radio'] + label {
    font-size: 1.8rem;
    padding: 5px 5px;
    min-width: 100%;
    flex-grow: 1;
  }
}
 */




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


.product-form__input--pill {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  row-gap: 10px;
  position: relative;
}

.recommended-label {
  background-color: black;
  color: yellow;
  font-size: 11px;
  font-weight: bold;
  padding: 7px 8px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  right: -2px;
  transition: transform 0.3s ease-in-out;
  animation: bounce 2s infinite ease-in-out; /* Add animation here */
}

.product-form__input--pill input[type='radio'] {
  display: none;
}

.product-form__input--pill input[type='radio'] + label {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  border: 1px solid #28a745;
  background-color: #ffffff;
  color: #000000;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  flex-grow: 1;
  text-align: center;
  min-width: 100px;
  position: relative;
}

.product-form__input--pill input[type='radio']:checked + label::before {
  content: '✔';
  size: 12px;
  font-size: 12px;
  margin-top: 6px;
  margin-left: -15px;
  font-weight: bold;
  color: white;
  background-color: #28a745;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0.1, 0.2);
}

.product-form__input--pill input[type='radio'] + label:hover {
  background-color: rgba(40, 167, 69, 0.1);
  border-color: #28a745 !important;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.product-form__input--pill input[type='radio']:checked + label {
  background-color: #E6E6E6 !important;
  color: black !important;
  border-color: #28a745 !important;
  border: 3px solid #28a745 !important;
  font-weight: bold !important;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.product-form__input--pill input[type='radio']:checked + label .recommended-label {
  background-color: green;
  color: white;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px); /* Adjust bounce height */
  }
  60% {
    transform: translateY(-3px); /* Adjust bounce height */
  }
}

@media (max-width: 768px) {
  .product-form__input--pill {
    justify-content: center;
    font-size: 1.8rem;
  }
  .product-form__input--pill input[type='radio'] + label {
    font-size: 1.8rem;
    padding: 5px 5px;
    min-width: 100%;
    flex-grow: 1;
  }
}
