/* Styling for Add to Cart button */

/* This class is special. Do not alter it in any way it will break ajax requests */
.add-to-cart-button {}

/* Edits permitted below this line */

.white-button {
    border-color: #ffffff !important;
    border-width: 2px;
    border-radius: 10px;
    color: #3c3c3c !important;
    background-color: #ffffff !important;
   padding-top: 18px !important;
    padding-right: 54px !important;
    padding-bottom: 18px !important;
    padding-left: 54px !important;
     width: fit-content;
     border-radius: 10px !important;
         font-weight: 600;
                     border: 2px solid white !important;


}

.white-button:hover {
    background-color: transparent !important;
    color: #fff !important;
            border: 2px solid white !important;

}

.orange-button {
    border-color: #ff7f00;
    border-width: 2px;
    border-radius: 10px;
    color: #ffffff;
    background-color: #ff7f00;
    padding-top: 18px !important;
    padding-right: 54px !important;
    padding-bottom: 18px !important;
    padding-left: 54px !important;
     border-radius: 10px !important;
     width: fit-content;
     box-shadow: none !important;
         border: 2px solid #ff7f00 !important;

}
.orange-button:hover {
    color: #ff7f00 !important;
    background-color: transparent !important;
             border: 2px solid #ff7f00 !important;
}

.header-button {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    font-family: Inter, sans-serif;
    border-radius: 16px 16px 16px 16px;
    background: #ff7f00;
    border: 2px solid currentColor;
    border-color: var(--global-palette1);
    box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
}

.transparent-button {
    border-color: #ffffff !important;
    border-width: 2px;
    border-radius: 10px;
    color: white !important;
    background-color: #ffffff !important;
   padding-top: 19px !important;
    padding-right: 54px !important;
    padding-bottom: 19px !important;
    padding-left: 54px !important;
     width: fit-content;
     border-radius: 10px !important;
         font-weight: 600;
                     border: 2px solid white !important;

}

.transparent-button:hover {
    background-color: #ffffff;
    color: #3c3c3c;
    border: 2px solid white !important;
}

/* Styling for Buy Now button */
.buy-now-button {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  border-radius: 16px 16px 16px 16px;
  background: #ff7f00;
  border: 2px solid currentColor;
  border-color: var(--global-palette1);
  padding: 15px 17px 15px 17px;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Secondary Button Styling */
.secondary-button-design {
  border-color: #ffffff;
  border-width: 2px;
  border-radius: 10px;
  color: #3c3c3c;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 32px;
  padding-bottom: 24px;
  padding-left: 32px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  font-family: Inter, sans-serif;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Add-to-cart message style */
.add-to-cart-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  z-index: 9999;
  display: none;
}
