/** Shopify CDN: Minification failed

Line 122:16 Expected identifier but found "!"
Line 219:48 Expected identifier but found "*"
Line 247:0 Unexpected "}"

**/
.evan_product_title {
  margin: 0px !important;
}

.evan_subtitle_main_product {
  font-family: Satoshi !important;
  font-size: 18px; /* Slightly smaller font size for subtitles */
  margin: 0px;
  color: #a3a4ac;
}

.evan__price {
  font-family: SatoshiBold !important;
  font-size: 28px !important;
  margin: 0px !important;
}

.evan__price .price--large {
  font-size: inherit; /* Ensure it inherits the size from the parent */
  font-family: inherit; /* Ensure it inherits the font from the parent */
}

.evan__product__description {
  margin: 0px !important;
  padding: 0px !important;
  font-family: Satoshi !important;
  font-size: 16px !important;
  color: #666666;
}

.evan__product__description p {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.evan__variants {
  border-top: 1px solid #e5e5e5; /* Top line */
  border-bottom: 1px solid #e5e5e5; /* Bottom line */
  padding-top: 13px;
  padding-bottom: 9px;
  font-family: Satoshi !important;
  color: #666666;
}

.evan__shopify__variants {
  border-bottom: 1px solid #e5e5e5; /* Bottom line */
  padding-top: 8px;
  padding-bottom: 9px;
  font-family: Satoshi !important;
  color: #666666;
}

.evan__form__label {
  font-family: Satoshi !important;
  color: #666666;
  font-size: 14px !important;
}

.evan__quantity__label {
  font-family: Satoshi !important;
  color: #666666;
}

.evan__delivery {
  font-family: Satoshi !important;
  color: #00ffff;
  font-size: 12px !important;
  font-weight: 200; /* Slightly bolder text for better readability */
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none !important;
  border-radius: 15px;
  padding: 5px;
  color: white !important;
  background-color: #F0F0F0; /* White background */
  overflow: hidden;
  width: 120px; /* Adjust width as needed */
}

.quantity::after {
    box-shadow: none !important;
    border: none !important;
    content: none !important; /* Removes any generated content */
    display: none !important; /* Hides the pseudo-element */
}


.quantity__button {
  width: 30px;
  height: 30px;
  background: #F0F0F0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 30px !important;
  font-weight: 700 !important;
}

.quantity__button:hover {
  background-color: #f0f0f0; /* Subtle hover effect */
}

.quantity__input {
  width: 40px; /* Adjust to fit */
  text-align: center;
  border: none;
  outline: none;
  color: black; !important; /* Sets the input text color to white */
  background-color: #F0F0F0; /* Optional: adjust background for contrast */
  font-size: 12px !important;
  font-weight: 1000 !important;
  color: black;
  font-family: Satoshi !important;
}

.quantity__input:focus {
  background-color: transparent; /* No background */
  border: none; /* No border */
  box-shadow: none; /* Removes any focus-related shadows */
  outline: none; /* Removes the default browser outline */
}

.evan_variant_flex-container {
  display: flex;
  gap: 10px; /* Space between items */
  margin: 10px 0px;
}

.evan_variant_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  font-size: 14px;
  font-family: Satoshi !important;
  color: black;
  background-color: #F0F0F0;
  border-radius: 10px;
  /* border: 1px solid white; /* Cyan border */
  /* border-radius: 25px; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (max-width: 768px) {
  .evan_variant_tag {
    font-size: 9.5px; /* Adjust font size for mobile screens */
  }
}

.evan_variant_tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* hide paypal  */
.shopify-payment-button {
  display: none !important;
}

@media (max-width: 768px) {
  .evan_product_title h1 {
    font-size: 18px !important;
  }

  .evan_subtitle_main_product {
    font-size: 14px; /* Slightly smaller font size for subtitles */
  }

  .evan__price {
    font-size: 18px !important;
  }

  .evan__product__description {
    font-size: 14px !important;
  }

  .evan__form__label {
    font-size: 12px !important;
  }

  .quantity {
    font-size: 12px !important;
  }

  .quantity__input {
    font-size: 12px !important;
  }

  .quantity__button {
    font-size: 12px !important;
  }

  .product-form__submit.button.button--full-width.button--secondary {
    font-size: 14px !important;
  }
}

.product-form__submit.button.button--full-width.button--primary {
  font-family: Satoshi !important;
  color: white; /* Black text */
  text-align: center; /* Center-align text */
  background-color: #dc2051; /* Fully transparent background */
  /* border: 1px solid white; /* Cyan border */ */
  position: relative; /* For adding highlights */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background 0.5s, transform 0.2s; /* Smooth hover effects */
}

.product-form__submit.button.button--full-width.button--primary::after {
  content: ""; /* Ensure no unwanted content */
  box-shadow: none; /* Remove any box shadow applied */
  border: none; /* Remove any border if applied */
  display: none; /* Hide the pseudo-element entirely */
}

.product-form__submit.button.button--full-width.button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px; /* Thin highlight at the top */
  background: rgba(255, 255, 255, 0.5); /* Subtle white highlight */
  border-radius: 50px;
  display: none; /* Hide pseudo-elements */
}

/* .product-form__submit.button.button--full-width.button--primary:hover {
  color: black;
  background-color: white; /* Slightly darker cyan on hover */
} */

.product-form__submit.button.button--full-width.button--secondary:active {
  transform: translateY(1px); /* Slight press effect */
  box-shadow: 0 4px 10px rgba(0, 240, 255, 0.3); /* Softer shadow */
}

.evan__buy__desktop__container {
  display: flex;
}

.evan__buy__mobile__container {
  display: none;
  margin-top: 5px !important;
  margin-bottom: 0px !important;
}

.slider-counter.caption {
    font-family: Satoshi !important;
}

@media (max-width: 768px) {
  /* .evan__buy__desktop__container {
    display: none;
  } */

  .evan__buy__mobile__container {
    margin-top: 8px !important;
    display: flex;
  }
}

.evan_quantity_selector_wrapper {
  display: inline-block;
  width: fit-content; /* Shrink-wrap the content */
  vertical-align: top; /* Aligns to the top if one is taller */
  margin-right: 15px;
  flex: 0 0 auto;
}

.evan-buy-buttons {
  display: inline-block;
  width: auto; /* Adjust based on content */
  vertical-align: top; /* Aligns to the top if one is taller */
  flex: 1 1 auto;
  /* min-width: 300px; */
}

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

.evan__gold {
  background-color: gold !important;
  color: black !important;
}

.evan__silver {
  background-color: #C0C0C0 !important;
  color: black !important;
}

.evan__bronze {
  background-color: #CD7F32 !important;
  color: white !important;
}

