@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --bex-bg: #fff3b8;
  --bex-soft: #fff9df;
  --bex-white: #ffffff;
  --bex-black: #111111;
  --bex-gold: #941CCD;
  --bex-deep-gold: #941CCD;
  --bex-border: rgba(17, 17, 17, 0.10);
}

.bex-shop-page,
.bex-single-product-page,
.bex-shop-page *,
.bex-single-product-page * {
  box-sizing: border-box;
}

.bex-shop-page,
.bex-single-product-page {
  width: 100%;
  background: var(--bex-soft);
  color: var(--bex-black);
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.bex-shop-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
}

.bex-gold-line {
  display: block;
  width: 58px;
  height: 3px;
  background: var(--bex-deep-gold);
  margin: 22px 0 28px;
}

/* Hide theme/default Woo elements that sometimes leak through */
.woocommerce-breadcrumb,
.woocommerce-products-header,
.woocommerce div.product .woocommerce-tabs,
.bex-shop-page .page-header,
.bex-single-product-page .page-header {
  display: none !important;
}

/* ---------------- SHOP HERO ---------------- */
.bex-shop-hero {
  background: linear-gradient(90deg, var(--bex-soft) 0%, var(--bex-bg) 100%);
  padding: 72px 0 84px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.bex-shop-hero-grid {
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: center;
  gap: 82px;
}

.bex-shop-hero-copy h1 {
  margin: 0;
  max-width: 440px;
  font-size: clamp(52px, 5vw, 78px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2.8px;
  color: var(--bex-black);
}

.bex-shop-hero-copy p {
  max-width: 430px;
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
  font-weight: 500;
  color: var(--bex-black);
}

.bex-hand-note {
  display: inline-block;
  margin-top: 28px;
  margin-left: 126px;
  color: var(--bex-black);
  font-size: 20px;
  line-height: 1.3;
  font-style: italic;
  transform: rotate(-4deg);
}

.bex-hand-note span {
  color: var(--bex-deep-gold);
  font-size: 26px;
}

.bex-shop-hero-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 8px 28px 8px 0;
}

.bex-shop-hero-images::before {
  content: "";
  position: absolute;
  inset: 40px 12px 30px 180px;
  background: rgba(255, 163, 0, 0.18);
  border-radius: 18px;
  transform: rotate(-7deg);
  z-index: 0;
}

.bex-shop-hero-images img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 290px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  display: block;
}

.bex-shop-hero-images img:nth-child(2) {
  transform: translateY(-8px);
}

.bex-shop-hero-images img:nth-child(3) {
  transform: translateY(12px);
}

/* ---------------- SHOP TOOLBAR ---------------- */
.bex-shop-toolbar-wrap {
  background: var(--bex-soft);
  padding: 38px 0 18px;
}

.bex-shop-toolbar {
  min-height: 70px;
  padding: 0 24px;
  border: 1px solid var(--bex-border);
  background: rgba(255, 243, 184, 0.55);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bex-shop-sort {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.bex-shop-sort label {
  color: var(--bex-black);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.bex-shop-sort select {
  min-width: 225px;
  height: 46px;
  background: transparent;
  border: 0;
  color: var(--bex-black);
  font-size: 14px;
  font-weight: 800;
  outline: none;
  padding: 0 8px;
  appearance: auto;
}

.bex-result-count {
  color: var(--bex-black);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

/* ---------------- PRODUCT GRID ---------------- */
.bex-shop-products-section {
  background: var(--bex-soft);
  padding: 18px 0 82px;
}

.bex-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.bex-product-card,
.bex-related-card {
  background: rgba(255, 243, 184, 0.55);
  border: 1px solid var(--bex-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.bex-product-card:hover,
.bex-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

.bex-product-image-wrap,
.bex-product-image-link,
.bex-related-image {
  position: relative;
  display: block;
  width: 100%;
  background: var(--bex-bg);
  overflow: hidden;
}

.bex-product-image-link img,
.bex-related-image img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.bex-product-card:hover .bex-product-image-link img,
.bex-related-card:hover .bex-related-image img {
  transform: scale(1.035);
}

.bex-heart-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--bex-deep-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.bex-product-card-body {
  padding: 18px 18px 20px;
}

.bex-product-card h2,
.bex-related-card h3 {
  margin: 0 0 10px;
  color: var(--bex-black);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.bex-product-card h2 a,
.bex-related-card h3 a {
  color: inherit;
  text-decoration: none;
}

.bex-card-price,
.bex-related-price {
  margin-bottom: 18px;
  color: var(--bex-black);
  font-size: 15px;
  font-weight: 700;
}

.bex-card-price .amount,
.bex-related-price .amount,
.bex-single-price .amount {
  color: var(--bex-black);
}

.bex-card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.bex-card-add-cart,
.bex-single-add-btn,
.bex-card-actions .added_to_cart {
  height: 38px;
  min-width: 98px;
  padding: 0 16px !important;
  background: var(--bex-deep-gold) !important;
  color: #ffffff !important;
  border: 1px solid var(--bex-deep-gold) !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all .25s ease;
}

.bex-card-add-cart:hover,
.bex-single-add-btn:hover,
.bex-card-actions .added_to_cart:hover {
  background: var(--bex-black) !important;
  border-color: var(--bex-black) !important;
  color: #ffffff !important;
}

.bex-view-details {
  color: var(--bex-black);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.bex-view-details:hover {
  color: var(--bex-gold);
}

.bex-empty-shop {
  padding: 80px 24px;
  text-align: center;
  border: 1px solid var(--bex-border);
  border-radius: 12px;
  background: rgba(255,243,184,.55);
}

.bex-empty-shop h2 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 800;
}

.bex-empty-shop p {
  margin: 0;
  font-size: 16px;
}

/* Pagination */
.bex-shop-pagination {
  margin-top: 46px;
  display: flex;
  justify-content: center;
}

.bex-shop-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bex-shop-pagination li {
  margin: 0;
}

.bex-shop-pagination a,
.bex-shop-pagination span {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--bex-border);
  border-radius: 6px;
  background: transparent;
  color: var(--bex-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.bex-shop-pagination .current,
.bex-shop-pagination a:hover {
  background: var(--bex-deep-gold);
  border-color: var(--bex-deep-gold);
  color: #ffffff;
}

/* ---------------- SINGLE PRODUCT ---------------- */
.bex-single-hero {
  background: linear-gradient(90deg, var(--bex-soft), var(--bex-bg));
  padding: 74px 0 70px;
}

.bex-single-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(360px, 45%);
  align-items: center;
  gap: 58px;
}

.bex-single-gallery {
  min-width: 0;
}

.bex-single-main-image {
  width: 100%;
  min-height: 560px;
  max-height: 720px;
  padding: 18px;
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--bex-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.bex-single-main-image img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  display: block;
}

.bex-single-thumbnails {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bex-single-thumbnails button {
  width: 74px;
  height: 74px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.bex-single-thumbnails button.active {
  border-color: var(--bex-deep-gold);
}

.bex-single-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bex-single-info-card {
  background: rgba(255, 249, 223, 0.80);
  border: 1px solid var(--bex-border);
  border-radius: 14px;
  padding: 54px 54px 48px;
  box-shadow: 0 18px 42px rgba(0,0,0,.06);
}

.bex-single-label,
.bex-detail-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--bex-deep-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.bex-single-info-card h1 {
  margin: 0;
  color: var(--bex-black);
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
}

.bex-single-price {
  margin: 0 0 22px;
  color: var(--bex-black);
  font-size: 26px;
  font-weight: 800;
}

.bex-single-short-desc,
.bex-single-short-desc p {
  margin: 0 0 28px;
  color: var(--bex-black);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.bex-single-cart {
  margin: 0 0 22px !important;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bex-single-cart .quantity input.qty {
  width: 84px;
  height: 52px;
  border: 1px solid var(--bex-border);
  background: #ffffff;
  color: var(--bex-black);
  font-weight: 800;
  text-align: center;
}

.bex-single-add-btn {
  min-width: 210px !important;
  height: 52px !important;
  font-size: 14px !important;
}

.bex-single-cats {
  color: var(--bex-black);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.bex-single-cats a {
  color: var(--bex-deep-gold);
  text-decoration: none;
}

/* Details */
.bex-product-details-section {
  background: var(--bex-soft);
  padding: 56px 0 64px;
}

.bex-product-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 28px;
}

.bex-detail-card {
  background: rgba(255,243,184,.60);
  border: 1px solid var(--bex-border);
  border-radius: 12px;
  padding: 34px 36px;
}

.bex-detail-card-large {
  padding: 40px 42px;
}

.bex-detail-card h2 {
  margin: 0 0 20px;
  color: var(--bex-black);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
}

.bex-detail-card p,
.bex-detail-content,
.bex-detail-content p {
  margin: 0 0 16px;
  color: var(--bex-black);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

/* Related */
.bex-related-section {
  background: var(--bex-bg);
  padding: 64px 0 80px;
}

.bex-related-section h2 {
  margin: 0 0 34px;
  color: var(--bex-black);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.bex-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.bex-related-card {
  background: var(--bex-soft);
}

.bex-related-card h3,
.bex-related-price {
  padding-left: 18px;
  padding-right: 18px;
}

.bex-related-card h3 {
  margin-top: 18px;
}

.bex-related-price {
  margin-bottom: 20px;
}

/* Woo notices */
.woocommerce-notices-wrapper,
.bex-single-product-page .woocommerce-message,
.bex-shop-page .woocommerce-message {
  max-width: 1240px;
  margin: 0 auto !important;
  font-family: "Montserrat", sans-serif;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--bex-gold) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--bex-gold) !important;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1180px) {
  .bex-shop-container {
    padding-left: 42px;
    padding-right: 42px;
  }

  .bex-shop-hero-grid {
    grid-template-columns: 34% 66%;
    gap: 48px;
  }

  .bex-shop-hero-images {
    gap: 20px;
  }

  .bex-shop-hero-images img {
    height: 250px;
  }

  .bex-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bex-single-hero-grid {
    grid-template-columns: 1fr;
  }

  .bex-single-main-image {
    min-height: 480px;
  }
}

@media (max-width: 900px) {
  .bex-shop-hero {
    padding: 54px 0 64px;
  }

  .bex-shop-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bex-shop-hero-copy h1,
  .bex-shop-hero-copy p {
    max-width: 100%;
  }

  .bex-hand-note {
    margin-left: 0;
  }

  .bex-shop-toolbar {
    min-height: auto;
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .bex-result-count {
    width: 100%;
  }

  .bex-product-details-grid,
  .bex-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bex-detail-card-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .bex-shop-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .bex-shop-hero {
    padding: 44px 0 54px;
  }

  .bex-shop-hero-copy {
    text-align: left;
  }

  .bex-shop-hero-copy h1 {
    font-size: 44px;
    letter-spacing: -1.4px;
  }

  .bex-shop-hero-copy p {
    font-size: 16px;
  }

  .bex-hand-note {
    font-size: 17px;
  }

  .bex-shop-hero-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-right: 0;
  }

  .bex-shop-hero-images::before {
    inset: 32px 0 24px 52px;
  }

  .bex-shop-hero-images img {
    height: 160px;
    border-radius: 6px;
  }

  .bex-shop-toolbar-wrap {
    padding-top: 28px;
  }

  .bex-shop-sort {
    width: 100%;
  }

  .bex-shop-sort select {
    min-width: 0;
    flex: 1;
    width: 100%;
  }

  .bex-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .bex-product-image-link img {
    height: 175px;
  }

  .bex-product-card-body {
    padding: 14px 12px 16px;
  }

  .bex-product-card h2 {
    font-size: 15px;
    line-height: 1.25;
  }

  .bex-card-price {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .bex-card-actions {
    gap: 10px;
  }

  .bex-card-add-cart {
    min-width: 88px;
    height: 34px;
    padding: 0 10px !important;
    font-size: 11px !important;
  }

  .bex-view-details {
    font-size: 11px;
  }

  .bex-heart-badge {
    width: 32px;
    height: 32px;
    top: 9px;
    right: 9px;
    font-size: 18px;
  }

  .bex-shop-products-section {
    padding-bottom: 56px;
  }

  .bex-single-hero {
    padding: 34px 0 48px;
  }

  .bex-single-hero-grid {
    gap: 28px;
  }

  .bex-single-main-image {
    min-height: auto;
    max-height: none;
    padding: 10px;
  }

  .bex-single-main-image img {
    max-height: none;
    width: 100%;
    height: auto;
  }

  .bex-single-info-card {
    padding: 34px 24px;
  }

  .bex-single-info-card h1 {
    font-size: 38px;
  }

  .bex-single-price {
    font-size: 22px;
  }

  .bex-single-cart {
    align-items: stretch;
  }

  .bex-single-cart .quantity,
  .bex-single-cart .quantity input.qty,
  .bex-single-add-btn {
    width: 100% !important;
  }

  .bex-product-details-section {
    padding: 36px 0 42px;
  }

  .bex-product-details-grid,
  .bex-related-grid {
    grid-template-columns: 1fr;
  }

  .bex-detail-card,
  .bex-detail-card-large {
    padding: 28px 22px;
  }

  .bex-related-section {
    padding: 46px 0 58px;
  }

  .bex-related-image img {
    height: 230px;
  }
}

/* ---------------- EXPRESS CHECKOUT / APPLE PAY COMPATIBILITY ---------------- */
.bex-express-checkout-area {
  width: 100%;
  flex: 0 0 100%;
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--bex-border);
  clear: both;
}

.bex-express-checkout-area:empty {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

/* WooPayments + Stripe express checkout containers */
.bex-single-product-page #wcpay-payment-request-wrapper,
.bex-single-product-page .wcpay-express-checkout-wrapper,
.bex-single-product-page #wc-stripe-payment-request-wrapper,
.bex-single-product-page .wc-stripe-payment-request-wrapper,
.bex-single-product-page .wc-stripe-product-checkout-container,
.bex-single-product-page .wc-stripe-express-checkout,
.bex-single-product-page #wc-stripe-express-checkout-element,
.bex-single-product-page .wc-block-components-express-payment,
.bex-single-product-page .express-payment-methods,
.bex-single-product-page .payment-request-button,
.bex-single-product-page .StripeElement {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.bex-single-product-page .wc-stripe-payment-request-button-separator,
.bex-single-product-page .wcpay-payment-request-button-separator,
.bex-single-product-page .payment-request-button-separator {
  margin: 16px 0 !important;
  color: rgba(17,17,17,.56) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.bex-express-checkout-area button,
.bex-express-checkout-area iframe,
.bex-express-checkout-area .StripeElement,
.bex-express-checkout-area div[role="button"] {
  min-height: 48px !important;
  border-radius: 4px !important;
}

.bex-single-cart-wrap .woocommerce-variation-add-to-cart {
  gap: 14px;
}

@media (max-width: 767px) {
  .bex-express-checkout-area {
    margin-top: 16px;
    padding-top: 16px;
  }

  .bex-express-checkout-area button,
  .bex-express-checkout-area iframe,
  .bex-express-checkout-area .StripeElement,
  .bex-express-checkout-area div[role="button"] {
    width: 100% !important;
    min-height: 50px !important;
  }
}

/* ---------------- V7 SHOP HERO CONTENT UPDATE ---------------- */
.bex-shop-hero-feature {
  position: relative;
  min-width: 0;
  padding-top: 42px;
}

.bex-sold-label {
  position: absolute;
  top: -6px;
  right: 52px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 999px;
  color: var(--bex-black);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.bex-sold-label::after {
  content: "♡";
  color: var(--bex-gold);
  font-size: 18px;
  line-height: 1;
}

.bex-shop-hero-feature .bex-shop-hero-images {
  align-items: stretch;
  gap: 26px;
  padding: 0 30px 0 0;
}

.bex-hero-art-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  background: rgba(255,249,223,.92);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.bex-hero-art-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.bex-shop-hero-feature .bex-shop-hero-images::before {
  inset: 34px 0 50px 160px;
  z-index: 0;
}

.bex-hero-img-2 {
  transform: translateY(-10px);
}

.bex-hero-img-3 {
  transform: translateY(12px);
}

.bex-hero-art-caption {
  min-height: 116px;
  padding: 18px 18px 20px;
  background: rgba(255,249,223,.98);
}

.bex-hero-art-caption h3 {
  margin: 0 0 8px;
  color: var(--bex-black);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -.3px;
}

.bex-hero-art-caption p {
  margin: 0;
  color: var(--bex-black);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .bex-shop-hero-feature .bex-shop-hero-images {
    gap: 18px;
  }

  .bex-hero-art-card img {
    height: 220px;
  }

  .bex-hero-art-caption {
    min-height: 126px;
    padding: 16px;
  }
}

@media (max-width: 900px) {
  .bex-shop-hero-feature {
    padding-top: 48px;
  }

  .bex-sold-label {
    left: 0;
    right: auto;
    top: 0;
  }
}

@media (max-width: 767px) {
  .bex-shop-hero-feature {
    padding-top: 54px;
  }

  .bex-shop-hero-feature .bex-shop-hero-images {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-right: 0;
  }

  .bex-shop-hero-feature .bex-shop-hero-images::before {
    inset: 60px 12px 40px 40px;
  }

  .bex-hero-img-2,
  .bex-hero-img-3 {
    transform: none;
  }

  .bex-hero-art-card img {
    height: 250px;
  }

  .bex-hero-art-caption {
    min-height: auto;
  }

  .bex-sold-label {
    left: 0;
    top: 0;
    font-size: 14px;
  }
}

/* ---------------- V8 FIXES: SHOP NOTE ALIGNMENT, EXPRESS PAY, CART DRAWER ---------------- */
.bex-shop-hero-copy .bex-hand-note {
  display: block;
  width: fit-content;
  max-width: 430px;
  margin-top: 30px;
  margin-left: 0 !important;
  text-align: left;
  transform: rotate(-4deg);
}

.bex-single-cart-wrap {
  width: 100%;
}

.bex-single-cart {
  row-gap: 18px;
}

.bex-express-checkout-area {
  width: 100% !important;
  flex: 0 0 100% !important;
  flex-basis: 100% !important;
  clear: both;
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(17,17,17,0.10) !important;
}

.bex-express-after-form {
  margin-top: 18px !important;
}

.bex-express-checkout-area:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.bex-express-checkout-area::before {
  content: "Express checkout";
  display: block;
  margin: 0 0 12px;
  color: rgba(17,17,17,.68);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.bex-express-checkout-area:empty::before {
  display: none;
}

.bex-express-checkout-area #wcpay-payment-request-wrapper,
.bex-express-checkout-area .wcpay-express-checkout-wrapper,
.bex-express-checkout-area #wc-stripe-payment-request-wrapper,
.bex-express-checkout-area .wc-stripe-payment-request-wrapper,
.bex-express-checkout-area .wc-stripe-product-checkout-container,
.bex-express-checkout-area .wc-stripe-express-checkout,
.bex-express-checkout-area #wc-stripe-express-checkout-element,
.bex-express-checkout-area .wc-block-components-express-payment,
.bex-express-checkout-area .wc-block-components-express-payment__event-buttons,
.bex-express-checkout-area .express-payment-methods,
.bex-express-checkout-area .payment-request-button,
.bex-express-checkout-area .StripeElement {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bex-express-checkout-area button,
.bex-express-checkout-area iframe,
.bex-express-checkout-area .StripeElement,
.bex-express-checkout-area div[role="button"],
.bex-express-checkout-area .wc-block-components-express-payment__button {
  width: 100% !important;
  min-height: 50px !important;
  border-radius: 6px !important;
}

.bex-express-checkout-area .wc-stripe-payment-request-button-separator,
.bex-express-checkout-area .wcpay-payment-request-button-separator,
.bex-express-checkout-area .payment-request-button-separator {
  margin: 14px 0 !important;
}

/* Slide Cart */
.bex-cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(17,17,17,.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.bex-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: min(440px, calc(100vw - 24px));
  height: 100vh;
  background: var(--bex-soft);
  color: var(--bex-black);
  box-shadow: -24px 0 50px rgba(0,0,0,.18);
  transform: translateX(105%);
  transition: transform .32s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(17,17,17,.10);
}

body.bex-cart-drawer-open {
  overflow: hidden;
}

body.bex-cart-drawer-open .bex-cart-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

body.bex-cart-drawer-open .bex-cart-drawer {
  transform: translateX(0);
}

.bex-cart-drawer-head {
  min-height: 104px;
  padding: 28px 28px 22px;
  background: var(--bex-bg);
  border-bottom: 1px solid rgba(17,17,17,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bex-cart-drawer-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--bex-deep-gold);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bex-cart-drawer-head h3 {
  margin: 0;
  color: var(--bex-black);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.8px;
}

.bex-cart-drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: 50%;
  background: #fff;
  color: var(--bex-black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bex-cart-drawer-body {
  flex: 1;
  padding: 24px 24px 28px;
  overflow-y: auto;
}

.bex-cart-items {
  display: grid;
  gap: 16px;
}

.bex-cart-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255,243,184,.55);
  border: 1px solid rgba(17,17,17,.10);
  border-radius: 10px;
}

.bex-cart-item-img {
  display: block;
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bex-bg);
}

.bex-cart-item-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.bex-cart-item-info a {
  display: block;
  margin-bottom: 8px;
  color: var(--bex-black);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  text-decoration: none;
}

.bex-cart-item-info span {
  display: block;
  margin-bottom: 8px;
  color: rgba(17,17,17,.70);
  font-size: 13px;
  font-weight: 600;
}

.bex-cart-item-info strong {
  color: var(--bex-black);
  font-size: 14px;
  font-weight: 800;
}

.bex-cart-drawer-total {
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(17,17,17,.10);
  border-bottom: 1px solid rgba(17,17,17,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--bex-black);
  font-size: 16px;
  font-weight: 800;
}

.bex-cart-drawer-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.bex-cart-view-btn,
.bex-cart-checkout-btn,
.bex-cart-continue,
.bex-cart-empty a {
  min-height: 50px;
  border-radius: 0;
  border: 1px solid var(--bex-deep-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.bex-cart-view-btn,
.bex-cart-empty a {
  background: transparent;
  color: var(--bex-black);
}

.bex-cart-checkout-btn {
  background: var(--bex-deep-gold);
  color: #fff;
}

.bex-cart-continue {
  background: #fff;
  color: var(--bex-black);
}

.bex-cart-empty {
  padding: 40px 16px;
  text-align: center;
}

.bex-cart-empty p {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .bex-shop-hero-copy .bex-hand-note {
    margin-left: 0 !important;
    text-align: left;
  }

  .bex-cart-drawer {
    width: min(420px, 100vw);
  }

  .bex-cart-drawer-head {
    padding: 24px 20px 20px;
  }

  .bex-cart-drawer-body {
    padding: 20px 18px 24px;
  }
}


/* v9: Keep only one visible Express Checkout area.
   The payment button should show in the after-form area below Add to Cart. */
.bex-express-inside-form,
.bex-single-cart .bex-express-checkout-area,
.bex-single-cart .wcpay-express-checkout-wrapper,
.bex-single-cart #wcpay-payment-request-wrapper,
.bex-single-cart #wc-stripe-payment-request-wrapper {
  display: none !important;
}

.bex-express-after-form {
  margin-top: 24px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(17,17,17,0.12);
}

.bex-express-after-form:empty {
  display: none !important;
}

.bex-express-after-form .wc-stripe-payment-request-wrapper,
.bex-express-after-form #wc-stripe-payment-request-wrapper,
.bex-express-after-form .wcpay-express-checkout-wrapper,
.bex-express-after-form #wcpay-payment-request-wrapper {
  margin-top: 0 !important;
}

/* v10: remove slide cart completely and show only a simple View Cart popup */
.bex-cart-drawer,
.bex-cart-drawer-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.bex-cart-drawer-open {
  overflow: auto !important;
}

.bex-view-cart-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999999;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 16px 14px 18px;
  background: #111111;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}

.bex-view-cart-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bex-view-cart-popup a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111 !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.bex-view-cart-popup a:hover {
  background: #ffa300;
  color: #111111 !important;
}

@media (max-width: 767px) {
  .bex-view-cart-popup {
    left: 16px;
    right: 16px;
    bottom: 18px;
    justify-content: space-between;
    border-radius: 14px;
  }
}


/* ---------------- V13 REVISION 2 CLIENT EDITS ---------------- */
/* Purple logo accent replaces orange/brown buttons and accents on Woo pages. */
.bex-card-add-cart,
.bex-single-add-btn,
.bex-card-actions .added_to_cart,
.bex-shop-pagination .current,
.bex-shop-pagination a:hover,
.bex-cart-checkout-btn,
.bex-popup-view-cart-link {
  background: var(--bex-gold) !important;
  border-color: var(--bex-gold) !important;
  color: #ffffff !important;
}

.bex-card-add-cart:hover,
.bex-single-add-btn:hover,
.bex-card-actions .added_to_cart:hover,
.bex-cart-checkout-btn:hover,
.bex-popup-view-cart-link:hover {
  background: var(--bex-black) !important;
  border-color: var(--bex-black) !important;
  color: #ffffff !important;
}

/* Recently Sold title centered across all 3 hero photos. */
.bex-shop-hero-feature {
  padding-top: 72px !important;
}

.bex-sold-label {
  position: absolute !important;
  top: 6px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  transform: none !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--bex-black) !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
}

.bex-sold-label::after {
  display: none !important;
  content: none !important;
}

/* Full-view hero, product, and related images. */
.bex-product-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  background: var(--bex-bg);
  overflow: hidden;
}

.bex-product-image-link,
.bex-related-image {
  background: var(--bex-bg) !important;
}

.bex-product-image-link img,
.bex-related-image img,
.bex-hero-art-card img {
  object-fit: contain !important;
  object-position: center !important;
  background: var(--bex-bg) !important;
}

.bex-hero-art-card img {
  padding: 8px;
}

.bex-hero-art-caption {
  min-height: auto !important;
  text-align: center;
  padding: 14px 14px 16px !important;
}

.bex-hero-art-caption p {
  display: none;
}

/* Wishlist heart is now its own link, not part of the product image link. */
.bex-wishlist-link {
  text-decoration: none !important;
  z-index: 5;
}

.bex-wishlist-link:hover,
.bex-wishlist-link:focus {
  background: var(--bex-gold) !important;
  color: #ffffff !important;
  outline: none;
}

/* Remove Sort By layout gap; keep only showing-count text. */
.bex-toolbar-result-only {
  justify-content: flex-start !important;
}

.bex-toolbar-result-only .bex-result-count {
  white-space: normal;
}

/* Product detail page now only has About this Piece. */
.bex-product-details-grid {
  grid-template-columns: 1fr !important;
}

.bex-detail-card-large {
  grid-column: auto !important;
}

/* Related creature photos should show full view. */
.bex-related-image img {
  height: 300px !important;
  padding: 10px;
}

@media (max-width: 1180px) {
  .bex-related-image img {
    height: 260px !important;
  }
}

@media (max-width: 767px) {
  .bex-shop-hero-feature {
    padding-top: 62px !important;
  }

  .bex-sold-label {
    font-size: 30px !important;
  }

  .bex-hero-art-card img {
    height: 250px !important;
  }

  .bex-related-image img {
    height: 240px !important;
  }
}


/* v14 Functional Wishlist Page */
.bex-wishlist-page {
  background: #fff9df;
  color: #111;
}

.bex-wishlist-hero {
  background: #fff3b8;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding: 78px 0 62px;
}

.bex-wishlist-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--bex-purple, #8A4BBE);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.bex-wishlist-hero h1 {
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 900;
}

.bex-wishlist-hero p {
  max-width: 560px;
  margin: 0;
  color: #111;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.bex-wishlist-products-section {
  padding: 56px 0 90px;
  background: #fff9df;
}

.bex-wishlist-notice {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(138, 75, 190, 0.22);
  border-left: 5px solid var(--bex-purple, #8A4BBE);
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 800;
}

.bex-wishlist-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.bex-wishlist-topbar p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 800;
}

.bex-clear-wishlist,
.bex-remove-wishlist-link {
  color: var(--bex-purple, #8A4BBE) !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.bex-clear-wishlist:hover,
.bex-remove-wishlist-link:hover {
  color: #111 !important;
}

.bex-wishlist-card .bex-product-card-body {
  gap: 10px;
}

.bex-wishlist-link.is-in-wishlist,
.bex-heart-badge.is-in-wishlist {
  background: var(--bex-purple, #8A4BBE) !important;
  color: #ffffff !important;
  border-color: var(--bex-purple, #8A4BBE) !important;
}

.bex-empty-wishlist {
  max-width: 720px;
  margin: 0 auto;
  padding: 68px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 22px 55px rgba(0,0,0,0.06);
}

.bex-empty-wishlist h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -1.8px;
  font-weight: 900;
}

.bex-empty-wishlist p {
  margin: 0 auto 26px;
  max-width: 420px;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.bex-btn-primary {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bex-purple, #8A4BBE);
  border: 1px solid var(--bex-purple, #8A4BBE);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
  transition: all 0.22s ease;
}

.bex-btn-primary:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .bex-wishlist-hero {
    padding: 52px 0 42px;
  }
  .bex-wishlist-hero h1 {
    letter-spacing: -2px;
  }
  .bex-wishlist-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* v15 Designed Auto Wishlist Page */
.bex-wishlist-page-v15 {
  background: #fff9df;
  color: #111;
  min-height: 70vh;
  font-family: "Montserrat", Arial, sans-serif;
}

.bex-wishlist-hero-v15 {
  background: linear-gradient(135deg, #fff3b8 0%, #fff9df 58%, #ffffff 100%);
  border-bottom: 1px solid rgba(17,17,17,0.08);
  padding: 88px 0 74px;
  position: relative;
  overflow: hidden;
}

.bex-wishlist-hero-v15:after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 340px;
  height: 340px;
  background: rgba(138, 75, 190, 0.12);
  border-radius: 999px;
  pointer-events: none;
}

.bex-wishlist-hero-grid-v15 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 52px;
  position: relative;
  z-index: 2;
}

.bex-wishlist-kicker-v15,
.bex-wishlist-mini-kicker-v15,
.bex-wishlist-card-kicker-v15 {
  display: inline-block;
  color: var(--bex-purple, #8A4BBE);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.4;
}

.bex-wishlist-hero-copy-v15 h1 {
  margin: 12px 0 18px;
  color: #111;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -4px;
  font-weight: 900;
}

.bex-wishlist-hero-copy-v15 p {
  max-width: 650px;
  margin: 0;
  color: #111;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 500;
}

.bex-wishlist-hero-actions-v15,
.bex-empty-actions-v15,
.bex-wishlist-top-actions-v15,
.bex-wishlist-card-actions-v15 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bex-wishlist-hero-actions-v15 {
  margin-top: 30px;
}

.bex-wishlist-btn-v15,
.bex-wishlist-add-cart-v15,
.bex-wishlist-cart-link-v15 {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none !important;
  transition: all .22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.bex-wishlist-btn-purple-v15,
.bex-wishlist-add-cart-v15 {
  background: var(--bex-purple, #8A4BBE) !important;
  border: 1px solid var(--bex-purple, #8A4BBE) !important;
  color: #fff !important;
}

.bex-wishlist-btn-black-v15 {
  background: #111 !important;
  border: 1px solid #111 !important;
  color: #fff !important;
}

.bex-wishlist-btn-outline-v15,
.bex-wishlist-cart-link-v15 {
  background: transparent !important;
  border: 1px solid #111 !important;
  color: #111 !important;
}

.bex-wishlist-btn-v15:hover,
.bex-wishlist-add-cart-v15:hover,
.bex-wishlist-cart-link-v15:hover {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

.bex-wishlist-hero-card-v15 {
  min-height: 245px;
  padding: 34px 26px;
  background: #fff;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bex-wishlist-heart-large-v15 {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bex-purple, #8A4BBE);
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.bex-wishlist-hero-card-v15 strong {
  color: #111;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
}

.bex-wishlist-hero-card-v15 p {
  margin: 8px 0 0;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bex-wishlist-products-section-v15 {
  padding: 62px 0 96px;
  background: #fff9df;
}

.bex-wishlist-notice-v15 {
  margin: 0 0 26px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(138,75,190,.20);
  border-left: 6px solid var(--bex-purple, #8A4BBE);
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

.bex-wishlist-topbar-v15 {
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.bex-wishlist-topbar-v15 h2 {
  margin: 8px 0 8px;
  color: #111;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
}

.bex-wishlist-topbar-v15 p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.bex-clear-wishlist-v15 {
  color: var(--bex-purple, #8A4BBE) !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.bex-clear-wishlist-v15:hover {
  color: #111 !important;
}

.bex-wishlist-grid-v15 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.bex-wishlist-card-v15 {
  background: #fff;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 18px 44px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.bex-wishlist-card-v15:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 66px rgba(0,0,0,0.10);
}

.bex-wishlist-image-v15 {
  position: relative;
  background: #fff3b8;
}

.bex-wishlist-image-v15 a:first-child {
  display: block;
}

.bex-wishlist-image-v15 img {
  width: 100%;
  height: 320px;
  padding: 14px;
  object-fit: contain !important;
  object-position: center;
  display: block;
}

.bex-wishlist-remove-heart-v15 {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bex-purple, #8A4BBE) !important;
  border: 1px solid var(--bex-purple, #8A4BBE) !important;
  color: #fff !important;
  font-size: 20px;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.bex-wishlist-remove-heart-v15:hover {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

.bex-wishlist-card-body-v15 {
  padding: 22px;
}

.bex-wishlist-card-body-v15 h3 {
  margin: 8px 0 8px;
  color: #111;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  font-weight: 900;
}

.bex-wishlist-card-body-v15 h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.bex-wishlist-price-v15 {
  min-height: 26px;
  margin-bottom: 18px;
  color: var(--bex-purple, #8A4BBE);
  font-size: 16px;
  font-weight: 900;
}

.bex-wishlist-card-actions-v15 {
  align-items: stretch;
  margin-bottom: 16px;
}

.bex-wishlist-card-actions-v15 .bex-wishlist-add-cart-v15,
.bex-wishlist-card-actions-v15 .bex-wishlist-cart-link-v15 {
  flex: 1 1 140px;
}

.bex-wishlist-card-footer-v15 {
  padding-top: 14px;
  border-top: 1px solid rgba(17,17,17,.08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.bex-wishlist-card-footer-v15 a {
  color: #111 !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
}

.bex-wishlist-card-footer-v15 a:hover {
  color: var(--bex-purple, #8A4BBE) !important;
}

.bex-empty-wishlist-v15 {
  max-width: 760px;
  margin: 0 auto;
  padding: 76px 34px;
  background: #fff;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 28px 70px rgba(0,0,0,0.08);
  text-align: center;
}

.bex-empty-wishlist-v15 > span {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3b8;
  color: var(--bex-purple, #8A4BBE);
  border-radius: 999px;
  font-size: 42px;
  line-height: 1;
}

.bex-empty-wishlist-v15 h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
}

.bex-empty-wishlist-v15 p {
  max-width: 480px;
  margin: 0 auto 30px;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.bex-empty-actions-v15 {
  justify-content: center;
}

@media (max-width: 1180px) {
  .bex-wishlist-grid-v15 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bex-wishlist-hero-v15 {
    padding: 58px 0 52px;
  }

  .bex-wishlist-hero-grid-v15 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bex-wishlist-hero-copy-v15 h1 {
    letter-spacing: -2.5px;
  }

  .bex-wishlist-hero-card-v15 {
    min-height: 190px;
  }

  .bex-wishlist-topbar-v15 {
    align-items: flex-start;
    flex-direction: column;
  }

  .bex-wishlist-grid-v15 {
    grid-template-columns: 1fr;
  }

  .bex-wishlist-image-v15 img {
    height: 280px;
  }

  .bex-wishlist-btn-v15,
  .bex-wishlist-add-cart-v15,
  .bex-wishlist-cart-link-v15 {
    width: 100%;
  }

  .bex-wishlist-top-actions-v15,
  .bex-wishlist-hero-actions-v15,
  .bex-empty-actions-v15 {
    width: 100%;
  }
}
