/* AsanWP single product Type 3 purchase card */
.single-product-wrapper.style-3 .product-detail-side {
  align-self: flex-start;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper.style-3 .product-detail.with-side > .product-detail-side {
    width: 20rem;
  }

}

.single-product-wrapper.style-3 .awp-type3-purchase-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--color-gray200);
  border-radius: .875rem;
  background: #f8f9fa;
}

.awp-type3-purchase-card__info {
  margin: 0;
  padding: 0;
}

.awp-type3-purchase-card__row {
  display: grid;
  grid-template-columns: 2.875rem minmax(0, 1fr);
  align-items: center;
  gap: .625rem;
  min-height: 2.9rem;
  padding: .45rem 0;
}

.awp-type3-purchase-card__row + .awp-type3-purchase-card__row {
  border-top: 1px solid var(--color-gray100);
}

.awp-type3-purchase-card__row > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: .625rem;
  background: var(--color-gray50);
  color: var(--color-gray700);
  font-size: 1.2rem;
}

.awp-type3-purchase-card__row > div {
  min-width: 0;
}

.awp-type3-purchase-card__label,
.awp-type3-purchase-card__value {
  display: block;
  line-height: 1.45;
}

.awp-type3-purchase-card__label {
  margin-bottom: .1rem;
  font-size: .65rem;
  color: var(--color-gray500);
}

.awp-type3-purchase-card__value {
  overflow: hidden;
  font-size: .775rem;
  font-weight: 600;
  color: var(--color-text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.awp-type3-purchase-card__seller a:hover {
  color: var(--theme-primary-hover-color);
}

.awp-type3-purchase-card__stock.in-stock > i,
.awp-type3-purchase-card__stock.available-on-backorder > i {
  color: var(--color-green600);
}

.awp-type3-purchase-card__stock.out-of-stock > i {
  color: var(--color-red600);
}

.awp-type3-purchase-card__shipping > i {
  background: color-mix(in srgb, var(--awp-shipping-class-color, var(--color-blue600)) 10%, transparent);
  color: var(--awp-shipping-class-color, var(--color-blue600));
}

.awp-type3-purchase-card__price-block {
  margin-top: .65rem;
  padding-top: .875rem;
  border-top: 1px solid var(--color-gray200);
}

.awp-type3-purchase-card__price-label {
  margin-bottom: .25rem;
  font-size: .7rem;
  color: var(--color-gray500);
}

.awp-type3-purchase-card__price-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .625rem;
}

.awp-type3-purchase-card__price .product-price {
  display: block;
  margin: 0;
}

.awp-type3-purchase-card__price .product-price .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .2rem .45rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-text);
}

.awp-type3-purchase-card__price .product-price .price del {
  order: 2;
  font-size: .7rem;
  font-weight: 500;
  color: var(--color-gray500);
  opacity: 1;
}

.awp-type3-purchase-card__price .product-price .price ins {
  order: 1;
  text-decoration: none;
}

.awp-type3-purchase-card__price-block.is-unavailable .awp-type3-purchase-card__price-line {
  align-items: center;
}

.awp-type3-purchase-card__price .awp-product-unavailable {
  color: var(--color-red600);
  font-size: 1rem;
  font-weight: 800;
}

.awp-type3-purchase-card__discount {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 1.4rem;
  padding: .18rem .42rem;
  border-radius: 999px;
  background: var(--color-red600);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  line-height: 1;
}

.awp-type3-purchase-card__discount.is-hidden {
  display: none;
}

/* A compact second card accompanies long-form product information. It reuses
   the original product form rather than rendering duplicate purchase fields. */
.awp-type3-compact-purchase-card {
  width: 100%;
}

.awp-type3-compact-purchase-card__product {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-gray200);
}

.awp-type3-compact-purchase-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: .25rem;
  border: 1px solid var(--color-gray100);
  border-radius: .65rem;
  background: #fff;
}

.awp-type3-compact-purchase-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.awp-type3-compact-purchase-card__summary {
  min-width: 0;
}

.awp-type3-compact-purchase-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.awp-type3-compact-purchase-card__title:hover {
  color: var(--theme-primary-hover-color);
}

body[data-theme=dark] .awp-type3-compact-purchase-card__image,
body[data-color=custom][data-theme=dark] .awp-type3-compact-purchase-card__image {
  border-color: rgba(255, 255, 255, .08);
  background: #fff;
}

.awp-type3-purchase-card__cart {
  margin-top: .875rem;
}

.awp-type3-purchase-card__cart form.cart {
  margin: 0;
}

.awp-type3-purchase-card__cart form.cart:not(.variations_form) {
  display: block;
  width: 100%;
}

.awp-type3-purchase-card__cart form.cart:not(.variations_form):not(.grouped_form) .quantity {
  display: none;
}

.awp-type3-purchase-card__cart .single_add_to_cart_button,
.awp-type3-purchase-card__cart a.single_add_to_cart_button,
.awp-type3-variable-cart-button,
.awp-type3-grouped-cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin: 0;
  padding: .72rem 1rem;
  border: 1px solid var(--theme-single-product-cart-border, transparent) !important;
  border-radius: .625rem;
  background-color: var(--theme-single-product-cart-bg, var(--theme-primary-color)) !important;
  color: var(--theme-single-product-cart-color, #fff) !important;
  font-family: var(--theme-button-font, inherit);
  font-size: var(--theme-button-font-size, .9375rem);
  font-weight: var(--theme-button-font-weight, 600);
  line-height: var(--theme-button-line-height, 1.6);
  letter-spacing: var(--theme-button-letter-spacing, 0);
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, background-color .18s ease, border-color .18s ease;
}

.awp-type3-purchase-card__cart .single_add_to_cart_button:not(:disabled):hover,
.awp-type3-purchase-card__cart a.single_add_to_cart_button:hover,
.awp-type3-variable-cart-button:not(:disabled):not(.is-waiting):hover,
.awp-type3-grouped-cart-button:not(:disabled):hover {
  border-color: var(--theme-single-product-cart-border-hover, var(--theme-single-product-cart-border, transparent)) !important;
  background-color: var(--theme-single-product-cart-bg-hover, var(--theme-single-product-cart-bg, var(--theme-primary-hover-color))) !important;
  color: var(--theme-single-product-cart-color-hover, var(--theme-single-product-cart-color, #fff)) !important;
  transform: translateY(-1px);
  box-shadow: 0 .35rem .9rem rgba(0, 0, 0, .08);
}

.awp-type3-variable-cart-button:disabled,
.awp-type3-grouped-cart-button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.awp-type3-variable-cart-button.is-waiting:not(:disabled) {
  cursor: pointer;
  opacity: .55;
}

.awp-type3-variable-cart-button.loading,
.awp-type3-grouped-cart-button.loading,
.awp-type3-purchase-card__cart .single_add_to_cart_button.loading {
  pointer-events: none;
  color: transparent !important;
}

.awp-type3-purchase-card__cart .awp-type3-unavailable-action,
.awp-type3-purchase-card__cart .awp-type3-variable-cart-button.is-unavailable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  border-color: var(--color-gray200) !important;
  background: var(--color-gray100) !important;
  box-shadow: none !important;
  color: var(--color-gray600) !important;
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

.awp-type3-purchase-card.is-variation-unavailable .awp-type3-card-quantity,
.awp-type3-purchase-card.is-variation-unavailable .awp-type3-buy-now-proxy {
  display: none !important;
}

/* Buy Now is a secondary action inside the Type 3 purchase card. */
.single-product-wrapper.style-3 .awp-type3-purchase-card__cart .buy_now_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin: .55rem 0 0 !important;
  padding: .72rem 1rem;
  border: 1px solid var(--theme-single-product-buy-now-bg) !important;
  border-radius: .625rem;
  background: var(--theme-single-product-buy-now-bg) !important;
  color: var(--theme-single-product-buy-now-color) !important;
  font-family: var(--theme-button-font, inherit);
  font-size: var(--theme-button-font-size, .9375rem);
  font-weight: var(--theme-button-font-weight, 600);
  line-height: var(--theme-button-line-height, 1.6);
  letter-spacing: var(--theme-button-letter-spacing, normal);
  box-shadow: none !important;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.single-product-wrapper.style-3 .awp-type3-purchase-card__cart .buy_now_button:hover,
.single-product-wrapper.style-3 .awp-type3-purchase-card__cart .buy_now_button:focus-visible {
  border-color: var(--theme-single-product-buy-now-bg-hover) !important;
  background: var(--theme-single-product-buy-now-bg-hover) !important;
  color: var(--theme-single-product-buy-now-color-hover) !important;
  outline: none;
  transform: translateY(-1px);
}

.single-product-wrapper.style-3 .awp-type3-purchase-card__cart .buy_now_button.is-waiting,
.single-product-wrapper.style-3 .awp-type3-purchase-card__cart .buy_now_button:disabled {
  cursor: pointer;
  opacity: .55;
  transform: none;
}

.single-product-wrapper.style-3 .awp-type3-purchase-card__cart .buy_now_button:disabled {
  cursor: not-allowed;
}

/* Variable and grouped selections live in the product information column. */
.awp-type3-variable-options,
.awp-type3-grouped-options {
  margin: 1rem 0 1.25rem;
  padding: 1rem 0;
}

.awp-type3-variable-options form.variations_form,
.awp-type3-grouped-options form.grouped_form {
  margin: 0;
}

.awp-type3-variable-options .variations {
  margin: 0 !important;
}

.awp-type3-variable-options .variations tr {
  display: block;
  margin: 0 0 .8rem;
}

.awp-type3-variable-options .variations tr:last-child {
  margin-bottom: 0;
}

.awp-type3-variable-options .variations th,
.awp-type3-variable-options .variations td {
  display: block;
  width: 100%;
  padding: 0;
}

.awp-type3-variable-options .variations .label {
  margin-bottom: .4rem;
  padding: 0 !important;
  font-size: .8rem;
  font-weight: 600;
}

/* Keep native variation details visible; only the duplicated purchase controls
   are visually hidden because the purchase card submits this real form. */
.awp-type3-variable-options .woocommerce-variation-price {
  display: none;
}

.awp-type3-variable-options .woocommerce-variation-availability {
  display: block;
  margin-top: .75rem;
}

.awp-type3-variable-options .woocommerce-variation-add-to-cart {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.awp-type3-variable-options .reset_variations {
  display: inline-flex;
  margin-top: .45rem;
  font-size: .72rem;
}

/* Grouped choices are outside the price card; only the shared submit action is in the card. */
.awp-type3-grouped-options .woocommerce-grouped-product-list {
  width: 100%;
  margin: 0 !important;
  border: 1px solid var(--color-gray200);
  border-radius: .75rem;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.awp-type3-grouped-options .woocommerce-grouped-product-list-item td {
  padding: .65rem .5rem !important;
  border: 0;
  border-bottom: 1px solid var(--color-gray100);
  vertical-align: middle;
}

.awp-type3-grouped-options .woocommerce-grouped-product-list-item:last-child td {
  border-bottom: 0;
}

.single-product-wrapper.style-3 .product-detail.with-side .awp-type3-grouped-options td.woocommerce-grouped-product-list-item__thumbnail {
  display: table-cell !important;
  width: 3.5rem;
}

.awp-type3-grouped-options .woocommerce-grouped-product-list-item__thumbnail img {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: .55rem;
  object-fit: cover;
}

.awp-type3-grouped-options .woocommerce-grouped-product-list-item__label label,
.awp-type3-grouped-options .woocommerce-grouped-product-list-item__label a {
  font-weight: 600;
  color: var(--color-text);
}

.awp-type3-grouped-options .woocommerce-grouped-product-list-item__price {
  font-size: .8rem;
  white-space: nowrap;
}

.awp-type3-grouped-options form.grouped_form > .single_add_to_cart_button {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.awp-type3-grouped-options form.grouped_form .quantity {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 7.25rem !important;
  min-height: 2.45rem;
  margin: 0 !important;
  border: 1px solid var(--color-gray200);
  border-radius: .55rem;
  background: #fff;
}

.awp-type3-grouped-options form.grouped_form .quantity[data-awp-cart-backed="1"] {
  border-color: color-mix(in srgb, var(--theme-primary-color) 32%, var(--color-gray200));
}

.awp-type3-grouped-options form.grouped_form .quantity .qty {
  width: 2.5rem !important;
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

.awp-type3-grouped-options form.grouped_form .quantity .quantity-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.2rem;
  align-self: stretch;
  cursor: pointer;
}

/* Variable uses WooCommerce's native quantity structure, matching simple products. */
.awp-type3-card-quantity {
  display: none !important;
}

.awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-card-quantity,
.awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-purchase-card__cart form.cart:not(.grouped_form) .quantity {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  max-width: none;
  min-height: 3rem;
  margin: 0 !important;
  border: 1px solid var(--color-gray200);
  border-radius: .625rem;
  background: #fff;
}

.awp-type3-purchase-card[data-quantity-after-add="1"]:not(.is-added-to-cart) .awp-type3-purchase-card__cart form.cart:not(.grouped_form) .quantity {
  display: none !important;
}

.awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-variable-cart-button,
.awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-purchase-card__cart .single_add_to_cart_button,
.awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-purchase-card__cart a.added_to_cart {
  display: none !important;
}

.awp-type3-card-quantity .qty,
.awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-purchase-card__cart form.cart:not(.grouped_form) .quantity .qty {
  width: 100% !important;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

.awp-type3-card-quantity .quantity-button,
.awp-type3-purchase-card__cart form.cart .quantity .quantity-button,
.awp-type3-grouped-options form.grouped_form .quantity .quantity-button {
  color: var(--theme-primary-color) !important;
}

.awp-type3-card-quantity .quantity-button:hover,
.awp-type3-purchase-card__cart form.cart .quantity .quantity-button:hover,
.awp-type3-grouped-options form.grouped_form .quantity .quantity-button:hover {
  background: color-mix(in srgb, var(--theme-primary-hover-color) 10%, transparent);
  color: var(--theme-primary-hover-color) !important;
}

.awp-type3-card-quantity .quantity-button.minus.is-remove,
.awp-type3-purchase-card__cart form.cart .quantity .quantity-button.minus.is-remove,
.awp-type3-grouped-options form.grouped_form .quantity .quantity-button.minus.is-remove {
  background: var(--theme-primary-color) !important;
  color: #fff !important;
}

.awp-type3-card-quantity .quantity-button.minus.is-remove:hover,
.awp-type3-purchase-card__cart form.cart .quantity .quantity-button.minus.is-remove:hover,
.awp-type3-grouped-options form.grouped_form .quantity .quantity-button.minus.is-remove:hover {
  background: var(--theme-primary-hover-color) !important;
  color: #fff !important;
}

.awp-type3-purchase-card__actions {
  margin-top: .7rem;
  padding-top: .7rem;
  border-top: 1px solid var(--color-gray200);
}

.awp-type3-purchase-card__actions .wishlist-button {
  display: grid;
  gap: .3rem;
  margin: 0;
}

.awp-type3-purchase-card__actions .wishlist-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.4rem;
  padding: .5rem .7rem;
  border: 1px solid var(--color-gray200);
  border-radius: .625rem;
  background: transparent;
  color: var(--color-text);
  font-size: .72rem;
  font-weight: 600;
}

.awp-type3-purchase-card__actions .wishlist-button a:hover,
.awp-type3-purchase-card__actions .wishlist-button a.awpwl-product-in-list {
  border-color: var(--theme-primary-hover-color);
  color: var(--theme-primary-hover-color);
}

.awp-type3-purchase-card__actions .wishlist-button > span {
  font-size: .65rem;
  color: var(--color-gray500);
  text-align: center;
}

/* The standard layout stops the sticky card inside the main product area. The
 * inline-information layout supplies a taller grid area so it can accompany
 * the first product information section without covering related products. */
@media screen and (min-width: 992px) {
  .single-product-wrapper.style-3 .product-detail.with-side {
    align-items: flex-start;
    overflow: visible !important;
    gap: 30px;
  }

  .single-product-wrapper.style-3 .product-detail-side.awp-type3-side-sticky {
    position: sticky !important;
    top: var(--asanwp-sticky-header-offset, 1rem) !important;
    align-self: flex-start;
    overflow: visible !important;
  }
}

.awp-type3-card-quantity.is-updating .qty,
.awp-type3-purchase-card__cart form.cart .quantity.is-updating .qty,
.awp-type3-grouped-options form.grouped_form .quantity.is-updating .qty {
  color:transparent;
}
.awp-type3-card-quantity.is-updating .quantity-button,
.awp-type3-purchase-card__cart form.cart .quantity.is-updating .quantity-button,
.awp-type3-grouped-options form.grouped_form .quantity.is-updating .quantity-button {
  opacity:.34;
  pointer-events:none;
}

body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-purchase-card,
body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-purchase-card {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 .4rem 1.5rem rgba(0, 0, 0, .18);
}

body[data-theme=dark] .awp-type3-purchase-card__row + .awp-type3-purchase-card__row,
body[data-color=custom][data-theme=dark] .awp-type3-purchase-card__row + .awp-type3-purchase-card__row,
body[data-theme=dark] .awp-type3-purchase-card__price-block,
body[data-color=custom][data-theme=dark] .awp-type3-purchase-card__price-block,
body[data-theme=dark] .awp-type3-purchase-card__actions,
body[data-color=custom][data-theme=dark] .awp-type3-purchase-card__actions,
body[data-theme=dark] .awp-type3-variable-options,
body[data-color=custom][data-theme=dark] .awp-type3-variable-options,
body[data-theme=dark] .awp-type3-grouped-options,
body[data-color=custom][data-theme=dark] .awp-type3-grouped-options,
body[data-theme=dark] .awp-type3-grouped-options .woocommerce-grouped-product-list,
body[data-color=custom][data-theme=dark] .awp-type3-grouped-options .woocommerce-grouped-product-list {
  border-color: rgba(255, 255, 255, .1);
}

body[data-theme=dark] .awp-type3-purchase-card__row > i,
body[data-color=custom][data-theme=dark] .awp-type3-purchase-card__row > i,
body[data-theme=dark] .awp-type3-card-quantity,
body[data-color=custom][data-theme=dark] .awp-type3-card-quantity,
body[data-theme=dark] .awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-purchase-card__cart form.cart .quantity,
body[data-color=custom][data-theme=dark] .awp-type3-purchase-card[data-quantity-after-add="1"].is-added-to-cart .awp-type3-purchase-card__cart form.cart:not(.grouped_form) .quantity,
body[data-theme=dark] .awp-type3-grouped-options form.grouped_form .quantity,
body[data-color=custom][data-theme=dark] .awp-type3-grouped-options form.grouped_form .quantity {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
}

@media screen and (max-width: 991.98px) {
  .single-product-wrapper.style-3 .product-detail-side {
    margin-top: 1.25rem;
  }

  .single-product-wrapper.style-3 .awp-type3-purchase-card,
  .awp-type3-purchase-card.is-viewport-fixed {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
  }
}

/* Type 3 modern product header, amazing offer and service strip. */
.single-product-wrapper.style-3 .product-detail-inner > .product_title {
  margin: 0 0 .7rem;
  color: var(--color-text);
}

.single-product-wrapper.style-3 .product-detail-inner > .product-meta.top {
  margin-bottom: 1rem;
  padding-bottom: .9rem;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  min-height: 3.25rem;
  margin: 0 0 .875rem;
  padding: .55rem .7rem;
  border-radius: .75rem;
  background: var(--color-red600);
  color: #fff;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer[hidden],
.single-product-wrapper.style-3 .awp-type3-purchase-card__shipping[hidden] {
  display: none !important;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer__sales-progress {
  display: none;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer__label,
.single-product-wrapper.style-3 .awp-type3-amazing-offer__timer {
  display: inline-flex;
  align-items: center;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer__label {
  gap: .45rem;
  min-width: 0;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer__label i {
  flex: 0 0 auto;
  font-size: 1.25rem;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer__timer {
  gap: .45rem;
  min-width: 0;
}

.single-product-wrapper.style-3 .awp-type3-amazing-offer__timer-label {
  font-size: .65rem;
  font-weight: 600;
  opacity: .9;
  white-space: nowrap;
}

.single-product-wrapper.style-3 .awp-type3-amazing-countdown {
  display: inline-flex;
  align-items: center;
  gap: .17rem;
  margin: 0;
  direction: ltr;
}

.single-product-wrapper.style-3 .awp-type3-amazing-countdown .count-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border-radius: .38rem;
  background: #fff;
  color: #1b1f22;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
}

.single-product-wrapper.style-3 .awp-type3-amazing-countdown .count {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.single-product-wrapper.style-3 .awp-type3-amazing-countdown [class^="sep-"] {
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  opacity: .9;
}

.single-product-wrapper.style-3 > .awp-type3-service-strip {
  width: 100%;
  margin: .3rem 0 0;
}

.single-product-wrapper.style-3 .awp-type3-service-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  padding: .85rem .6rem;
  border-top: 1px solid var(--color-gray200);
  border-bottom: 1px solid var(--color-gray200);
  background: #fff;
}

.single-product-wrapper.style-3 .awp-type3-service-strip__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-width: 0;
  padding: .25rem .8rem;
  color: var(--color-text);
  text-decoration: none;
}

.single-product-wrapper.style-3 .awp-type3-service-strip__item + .awp-type3-service-strip__item::before {
  content: "";
  position: absolute;
  inset-block: .2rem;
  inset-inline-start: 0;
  width: 1px;
  background: var(--color-gray100);
}

.single-product-wrapper.style-3 .awp-type3-service-strip__item > i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  color: var(--color-gray500);
  font-size: 1.75rem;
  transition: color .18s ease, transform .18s ease;
}

.single-product-wrapper.style-3 .awp-type3-service-strip__copy {
  display: block;
  min-width: 0;
  line-height: 1.45;
}

.single-product-wrapper.style-3 .awp-type3-service-strip__copy strong,
.single-product-wrapper.style-3 .awp-type3-service-strip__copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-product-wrapper.style-3 .awp-type3-service-strip__copy strong {
  color: var(--color-text);
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.single-product-wrapper.style-3 .awp-type3-service-strip__copy small {
  margin-top: .12rem;
  color: var(--color-gray500);
  font-size: .62rem;
  font-weight: 400;
  white-space: nowrap;
}

.single-product-wrapper.style-3 a.awp-type3-service-strip__item:hover > i,
.single-product-wrapper.style-3 a.awp-type3-service-strip__item:focus > i {
  color: var(--theme-primary-hover-color);
  transform: translateY(-1px);
}

.single-product-wrapper.style-3 a.awp-type3-service-strip__item:hover .awp-type3-service-strip__copy strong,
.single-product-wrapper.style-3 a.awp-type3-service-strip__item:focus .awp-type3-service-strip__copy strong {
  color: var(--theme-primary-hover-color);
}

body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-service-strip__inner,
body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-service-strip__inner {
  border-color: rgba(255, 255, 255, .1);
  background: transparent;
}

body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-service-strip__item + .awp-type3-service-strip__item::before,
body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-service-strip__item + .awp-type3-service-strip__item::before {
  background: rgba(255, 255, 255, .08);
}

@media screen and (max-width: 1199.98px) {
  .single-product-wrapper.style-3 .awp-type3-service-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: .75rem;
  }

  .single-product-wrapper.style-3 .awp-type3-service-strip__item:nth-child(4)::before {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .single-product-wrapper.style-3 .awp-type3-amazing-offer {
    flex-wrap: wrap;
    align-items: center;
    padding: .55rem .65rem;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer {
    width: 100%;
    justify-content: space-between;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer-label {
    flex: 1 1 auto;
  }

  .single-product-wrapper.style-3 > .awp-type3-service-strip {
    overflow: hidden;
  }

  .single-product-wrapper.style-3 .awp-type3-service-strip__inner {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }

  .single-product-wrapper.style-3 .awp-type3-service-strip__inner::-webkit-scrollbar {
    display: none;
  }

  .single-product-wrapper.style-3 .awp-type3-service-strip__item {
    flex: 0 0 10rem;
    justify-content: flex-start;
    scroll-snap-align: start;
  }

  .single-product-wrapper.style-3 .awp-type3-service-strip__item + .awp-type3-service-strip__item::before {
    display: block;
  }
}

/* Type 3 modern reviews flow. */
.single-product-wrapper.style-3 .awp-type3-recently-viewed {
  margin-top: 2.25rem;
  margin-bottom: 0;
}

.single-product-wrapper.style-3 .awp-type3-reviews-section {
  width: 100%;
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--color-gray200);
}


/* Type 3 gallery action rail */
.single-product-wrapper.style-3 .awp-type3-gallery-stage {
  position: relative;
  min-width: 0;
  padding-inline-start: 3.5rem;
}

.single-product-wrapper.style-3 .awp-type3-gallery-actions {
  position: absolute;
  inset-inline-start: 0;
  top: .5rem;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  margin: 0;
  padding: 0;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-height: 2.75rem;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action::after {
  content: attr(data-awp-action-label);
  position: absolute;
  right: calc(100% + .5rem);
  top: 50%;
  z-index: 4;
  width: max-content;
  max-width: 12rem;
  padding: .35rem .6rem;
  border-radius: .45rem;
  background: #27272a;
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(-.25rem);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action:hover::after,
.single-product-wrapper.style-3 .awp-type3-gallery-action:focus-within::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share {
  display: block;
  margin: 0;
  padding: 0;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button > span {
  display: none;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: .65rem;
  background: transparent;
  color: var(--theme-single-product-wishlist-icon-color);
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a::before,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn::before {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: none;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger i {
  font-size: 1.35rem;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a:hover,
.single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a:focus-visible,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn:hover,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn:focus-visible,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger:hover,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger:focus-visible {
  background: var(--color-gray50);
  color: var(--theme-primary-hover-color);
  outline: none;
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a.awpwl-product-in-list::before,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awpwl-btn.awpwl-product-in-list,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn.awpcp-btn-added,
.single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn.awpcp-added {
  color: var(--color-red600);
}

.single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a,
body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn,
body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger {
  color: #d1d5db;
}

body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a:hover,
body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a:focus-visible,
body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn:hover,
body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn:focus-visible,
body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger:hover,
body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger:focus-visible {
  background: rgba(255,255,255,.06);
  color: var(--theme-primary-hover-color);
}

@media screen and (max-width: 767.98px) {
  .single-product-wrapper.style-3 .awp-type3-gallery-stage {
    padding-inline-start: 3rem;
  }

  .single-product-wrapper.style-3 .awp-type3-gallery-actions {
    top: .2rem;
    gap: .15rem;
  }

  .single-product-wrapper.style-3 .awp-type3-gallery-action,
  .single-product-wrapper.style-3 .awp-type3-gallery-action .wishlist-button a,
  .single-product-wrapper.style-3 .awp-type3-gallery-action .awpcp-btn,
  .single-product-wrapper.style-3 .awp-type3-gallery-action .awp-product-share__trigger {
    width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
  }

  .single-product-wrapper.style-3 .awp-type3-gallery-action::after {
    display: none;
  }
}

/* Type 3 has one share trigger only: the gallery action rail. */
.single-product-wrapper.style-3 .product-detail-inner .awp-product-share--summary {
  display: none !important;
}

/* Desktop-only offer elements are deliberately hidden outside the desktop breakpoint. */
.single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label,
.single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress {
  display: none;
}

/* ========================================================================== 
   Type 3 — Desktop amazing-offer strip (current Digikala product-page pattern)
   Desktop only. Mobile/tablet offer UI remains unchanged.
   ========================================================================== */
@media screen and (min-width: 992px) {
  .single-product-wrapper.style-3 > .product-gallery > .awp-type3-offer-slot {
    width: 100%;
    min-width: 0;
    margin: 0 0 14px;
  }

  .single-product-wrapper.style-3 .awp-type3-offer-slot .awp-type3-amazing-offer {
    box-sizing: border-box;
    position: relative;
    display: grid;
    grid-template-columns: max-content minmax(88px, 1fr) max-content;
    grid-template-rows: minmax(28px, auto) 4px;
    column-gap: 14px;
    row-gap: 8px;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 2px 2px 6px;
    align-items: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3f4064;
    box-shadow: none;
    direction: rtl;
  }

  /* The compact mobile progress indicator has its own presentation; its value still follows the global offer mode. */
  .single-product-wrapper.style-3 .awp-type3-amazing-offer__sales-progress,
  .single-product-wrapper.style-3 .awp-type3-amazing-offer__sales-percent {
    display: none !important;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__label {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: inline-flex;
    min-width: 0;
    margin: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    color: #ef4056;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
    white-space: nowrap;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__label i {
    display: inline-flex;
    width: auto;
    height: auto;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ef4056;
    font-size: 20px;
    line-height: 1;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    min-width: 0;
    align-items: baseline;
    justify-content: flex-start;
    gap: 3px;
    color: #81858b;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.65;
    white-space: nowrap;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label[hidden] {
    display: none !important;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label strong {
    color: #ef4056;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 4px;
    min-width: 72px;
    overflow: hidden;
    border-radius: 999px;
    background: #f0f0f1;
    direction: rtl;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress[hidden] {
    display: none !important;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress > span {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    display: block;
    width: var(--awp-offer-desktop-progress, 0%);
    max-width: 100%;
    border-radius: inherit;
    background: #ef4056;
    transition: width .25s ease;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer {
    grid-column: 3;
    grid-row: 1 / span 2;
    display: inline-flex;
    min-width: 0;
    margin: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    color: #3f4064;
    direction: ltr;
  }

  /* Digikala's desktop strip shows the clock itself, without an extra caption. */
  .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer-label {
    display: none !important;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-countdown {
    display: inline-flex;
    margin: 0;
    align-items: center;
    gap: 4px;
    color: #3f4064;
    direction: ltr;
    font-variant-numeric: tabular-nums;
  }

  /* Keep the desktop timer consistent with the rest of the theme: DD : HH : MM : SS. */
  .single-product-wrapper.style-3 .awp-type3-amazing-countdown > .count-item:first-child,
  .single-product-wrapper.style-3 .awp-type3-amazing-countdown > .sep-h {
    display: inline-flex !important;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-countdown .count-item {
    display: inline-flex;
    width: auto;
    min-width: 19px;
    height: auto;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3f4064;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: none;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-countdown .count {
    display: block;
    min-width: 19px;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: center;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-countdown [class^="sep-"] {
    display: inline-flex;
    width: 4px;
    align-items: center;
    justify-content: center;
    color: #3f4064;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    opacity: 1;
  }

  body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-offer-slot .awp-type3-amazing-offer,
  body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-offer-slot .awp-type3-amazing-offer,
  body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer,
  body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer,
  body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-countdown,
  body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-countdown,
  body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-countdown .count-item,
  body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-countdown .count-item,
  body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-countdown [class^="sep-"],
  body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-countdown [class^="sep-"] {
    color: #f1f2f4;
  }

  body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress,
  body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress {
    background: rgba(255, 255, 255, .14);
  }

  body[data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label,
  body[data-color=custom][data-theme=dark] .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label {
    color: #aeb2b8;
  }
}


/* ========================================================================== 
   Type 3 — Desktop amazing-offer strip refinement (single-line Digikala-like layout)
   Keeps all elements in one row on desktop only.
   ========================================================================== */
@media screen and (min-width: 992px) {
  .single-product-wrapper.style-3 .awp-type3-offer-slot .awp-type3-amazing-offer {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 44px;
    padding: 8px 12px;
    overflow: hidden;
    background: #fdf1f2;
    direction: rtl;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__label {
    order: 1;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    color: #ef4056;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__label i {
    font-size: 18px;
    color: #ef4056;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label {
    order: 2;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: baseline;
    gap: 3px;
    color: #81858b;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress-label strong {
    color: #ef4056;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__desktop-progress {
    order: 3;
    display: block;
    flex: 1 1 auto;
    width: auto;
    min-width: 72px;
    height: 4px;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer {
    order: 4;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding-inline-end: 12px;
    justify-content: flex-end;
    color: #ef4056;
    direction: ltr;
    border-inline-end: 1px solid #d8d8dc;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-offer__timer-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 15px;
    line-height: 1;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-countdown,
  .single-product-wrapper.style-3 .awp-type3-amazing-countdown .count-item,
  .single-product-wrapper.style-3 .awp-type3-amazing-countdown [class^="sep-"] {
    color: #ef4056;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-countdown .count-item {
    font-size: 13px;
  }

  .single-product-wrapper.style-3 .awp-type3-amazing-countdown [class^="sep-"] {
    font-size: 12px;
  }
}


/* Call-to-order: both desktop purchase cards use the exact primary cart-button geometry. */
.awp-type3-purchase-card.is-call-order .awp-type3-purchase-card__cart {
  margin-top: .875rem;
}
.awp-type3-purchase-card.is-call-order .awp-type3-purchase-card__cart .awp-call-order {
  display: grid;
  width: 100%;
  gap: 6px;
}
.awp-type3-purchase-card.is-call-order .awp-type3-purchase-card__cart .awp-call-order__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 3rem;
  margin: 0 !important;
  padding: .72rem 1rem;
  border: 1px solid var(--theme-single-product-cart-border, transparent) !important;
  border-radius: .625rem;
  background-color: var(--theme-single-product-cart-bg, var(--theme-primary-color)) !important;
  color: var(--theme-single-product-cart-color, #fff) !important;
  font-family: var(--theme-button-font, inherit);
  font-size: var(--theme-button-font-size, .9375rem);
  font-weight: var(--theme-button-font-weight, 600);
  line-height: var(--theme-button-line-height, 1.6);
  letter-spacing: var(--theme-button-letter-spacing, 0);
  box-shadow: none !important;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.awp-type3-purchase-card.is-call-order .awp-type3-purchase-card__cart .awp-call-order__button:hover,
.awp-type3-purchase-card.is-call-order .awp-type3-purchase-card__cart .awp-call-order__button:focus-visible {
  border-color: var(--theme-single-product-cart-border-hover, var(--theme-single-product-cart-border, transparent)) !important;
  background-color: var(--theme-single-product-cart-bg-hover, var(--theme-single-product-cart-bg, var(--theme-primary-hover-color))) !important;
  color: var(--theme-single-product-cart-color-hover, var(--theme-single-product-cart-color, #fff)) !important;
  transform: translateY(-1px);
  box-shadow: 0 .35rem .9rem rgba(0,0,0,.08) !important;
  outline: none;
}
.awp-type3-purchase-card.is-call-order .awp-call-order__notice {
  margin-top: 2px;
  border-radius: .625rem;
}
.awp-type3-purchase-card.is-call-order-price-hidden .awp-type3-purchase-card__price-block,
body.asanwp-call-order-hide-price .awp-type3-purchase-card .awp-type3-purchase-card__price-block {
  display: none !important;
}
