#add-to-cart-button {
  background-color: #022b65;
  border-radius: 0px;
  padding: 15px 20px;
  font-family: "Hanken Grotesk";
  font-weight: 400;
  font-size: 16px;
}
.add-to-cart {
  margin-top: auto;
}
.cart {
  width: 98% !important;
  margin-top: 16px !important;
}
.view-more-accessories {
  background-color: transparent;
  color: #022b65;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
  position: absolute;
  right: 0;
}
.view-more-accessories .arrow-container {
  margin-left: 10px;
}
.view-more-accessories .arrow-icon {
  width: 16px;
  height: 16px;
  fill: #022b65;
  transition: transform 0.3s ease-in-out;
}
.extra-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease-in-out;
}
.extra-arrow-icon.down {
  transform: rotate(0deg);
}
.extra-arrow-icon.up {
  transform: rotate(180deg);
}
.combo-accessory-item .accessory-price {
  text-align: right;
}
.cart-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(2, 43, 101, 0.9);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  z-index: 1000;
  transition: opacity 0.5s ease;
  display: none;
}

/* Hide WooCommerce variation duplicate price block; keep only custom #base-product-price */
.single_variation .woocommerce-variation-price,
.single_variation .woocommerce-variation-price .price {
  display: none !important;
}
#base-product-price del {
  color: #022b65;
  font-weight: 700;
  font-size: 23px;
  font-family: "Hanken Grotesk";
  text-decoration: line-through;
  margin-right: 10px;
}
#base-product-price ins {
  color: #022b65;
  font-weight: bold;
  text-decoration: none !important;
}
#base-product-price {
  transition: opacity 0.2s ease;
}
#base-product-price.awero-price-loading {
  opacity: 0 !important;
}
.selected-product-preview-wrap {
  margin-top: 16px;
  margin-bottom: 12px;
}
.selected-product-preview-wrap.is-hidden {
  display: none;
}
.selected-product-preview-btn {
  border: 1px solid #022b65;
  background: transparent;
  color: #022b65;
  border-radius: 24px;
  padding: 8px 16px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  cursor: pointer;
}
.selected-product-preview-btn:hover {
  background: #022b65;
  color: #fff;
}
.selected-product-preview-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
}
.selected-product-preview-modal.is-open {
  display: block;
}
.selected-product-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.selected-product-preview-content {
  position: relative;
  max-width: 860px;
  width: calc(100% - 32px);
  margin: 4vh auto 0;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
}
.selected-product-preview-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.selected-product-preview-close {
  position: absolute;
  right: 10px;
  top: 4px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #022b65;
  cursor: pointer;
}
@media (max-width: 767px) {
  #base-product-price {
    font-size: 24px;
  }
  #base-product-price del {
    font-size: 20px;
  }
}

