/* Buy button link on single product pages */
body.single-product p.cart a.button.alt {
  background-color: #ffc207 !important;
  color: #000 !important;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
}

body.single-product p.cart a.button.alt:hover,
.woocommerce .single-product .cart .single_add_to_cart_button:hover {
  background-color: #d17b09 !important;
  color: #fff !important;
}

/* Sale badge on product archive pages */
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
  background-color: #d17b09 !important; /* orange */
  color: #fff !important;
  font-weight: bold !important;
  text-transform: uppercase;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50% !important;
  text-align: center;
  font-size: 0.9em;
  display: inline-block;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.woocommerce ul.products li.product .onsale:hover,
.woocommerce-page ul.products li.product .onsale:hover {
  background-color: #ffc207 !important; /* yellow */
  color: #000 !important;
}

/* Sale badge on single product page */
body.single-product span.onsale {
  background-color: #d17b09 !important; /* orange */
  color: #fff !important;
  font-weight: bold !important;
  text-transform: uppercase;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50% !important;
  text-align: center;
  font-size: 0.9em;
  display: inline-block;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

body.single-product span.onsale:hover {
  background-color: #ffc207 !important; /* yellow */
  color: #000 !important;
}

/* Price colors on product archive pages */
.woocommerce ul.products li.product .price {
  color: #295d7f !important; /* main blue */
  font-weight: normal;
}

.woocommerce ul.products li.product .price ins {
  color: #295d7f !important; /* warm orange */
  font-weight: bold;
}

.woocommerce ul.products li.product .price del {
  color: #6b8cb6 !important; /* lighter blue */
  font-weight: normal;
}

/* Price colors on single product pages */
body.single-product p.price,
body.single-product p.price .woocommerce-Price-amount.amount,
body.single-product p.price .woocommerce-Price-currencySymbol {
  color: #295d7f !important; /* main blue */
  font-weight: normal !important;
}

body.single-product p.price del,
body.single-product p.price del .woocommerce-Price-amount.amount,
body.single-product p.price del .woocommerce-Price-currencySymbol {
  color: #295d7f !important; /* same blue */
  font-weight: normal !important;
  text-decoration: line-through !important;
}

body.single-product p.price ins,
body.single-product p.price ins .woocommerce-Price-amount.amount,
body.single-product p.price ins .woocommerce-Price-currencySymbol {
  color: #295d7f !important; /* warm orange */
  font-weight: normal !important;
  text-decoration: none !important;
}
