/* MaFoi — curated luxury retail system */
:root {
  --mafoi-ivory: #f6f3ef;
  --mafoi-paper: #fffefd;
  --mafoi-carbon: #151412;
  --mafoi-ink: #24211e;
  --mafoi-muted: #746d66;
  --mafoi-line: #ded9d3;
  --mafoi-line-dark: #c7beb4;
  --mafoi-gold: #9b7445;
  --mafoi-gold-soft: #d8c4a9;
  --mafoi-danger: #9c2f2f;
  --mafoi-success: #286342;
  --mafoi-display: "Bellefair", "Times New Roman", serif;
  --mafoi-body: "Jost", "Helvetica Neue", sans-serif;
  --mafoi-max: 1440px;
  --mafoi-shadow: 0 18px 55px rgba(28, 22, 17, .09);
  --mafoi-ease: cubic-bezier(.22, 1, .36, 1);
}

.mafoi-luxe-retail *,
.mafoi-luxe-retail *::before,
.mafoi-luxe-retail *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mafoi-luxe-retail {
  color: var(--mafoi-ink);
  background: var(--mafoi-paper);
  font-family: var(--mafoi-body);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.mafoi-luxe-retail h1,
.mafoi-luxe-retail h2,
.mafoi-luxe-retail h3,
.mafoi-luxe-retail h4,
.mafoi-luxe-retail h5,
.mafoi-luxe-retail h6 {
  color: var(--mafoi-carbon);
  font-family: var(--mafoi-display);
  font-weight: 400;
  letter-spacing: -.015em;
}

.mafoi-luxe-retail a,
.mafoi-luxe-retail button,
.mafoi-luxe-retail input,
.mafoi-luxe-retail select,
.mafoi-luxe-retail textarea {
  font-family: var(--mafoi-body);
}

.mafoi-luxe-retail a:focus-visible,
.mafoi-luxe-retail button:focus-visible,
.mafoi-luxe-retail input:focus-visible,
.mafoi-luxe-retail select:focus-visible,
.mafoi-luxe-retail textarea:focus-visible,
.mafoi-luxe-retail [tabindex]:focus-visible {
  outline: 2px solid var(--mafoi-gold) !important;
  outline-offset: 3px;
}

.mafoi-luxe-retail ::selection {
  background: var(--mafoi-carbon);
  color: #fff;
}

.mafoi-luxe-retail .container,
.mafoi-luxe-retail .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--mafoi-max);
}

/* Header and navigation */
.mafoi-luxe-retail #bwp-header {
  position: relative;
  z-index: 999;
  background: rgba(255, 254, 253, .98);
  border-bottom: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail #bwp-header .header-sticky {
  min-height: 88px;
  background: rgba(255, 254, 253, .96);
  transition: box-shadow .25s ease, min-height .25s ease, backdrop-filter .25s ease;
}

.mafoi-luxe-retail #bwp-header.is-scrolled .header-sticky,
.mafoi-luxe-retail #bwp-header .header-sticky.active {
  box-shadow: 0 12px 35px rgba(20, 17, 14, .08);
  backdrop-filter: blur(18px);
}

.mafoi-luxe-retail #bwp-header .header-container {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 28px;
  min-height: 88px;
  align-items: center;
}

.mafoi-luxe-retail #bwp-header .header-left,
.mafoi-luxe-retail #bwp-header .header-center,
.mafoi-luxe-retail #bwp-header .header-right {
  width: auto;
  float: none;
}

.mafoi-luxe-retail #bwp-header .wpbingoLogo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: transform .35s var(--mafoi-ease);
}

.mafoi-luxe-retail #bwp-header .wpbingoLogo a:hover img {
  transform: scale(.97);
}

.mafoi-luxe-retail #bwp-header .menu > li > a {
  padding: 35px 12px 31px;
  color: var(--mafoi-ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mafoi-luxe-retail #bwp-header .menu > li > a .menu-item-text {
  position: relative;
}

.mafoi-luxe-retail #bwp-header .menu > li > a .menu-item-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--mafoi-gold);
  transform: scaleX(0);
  transition: transform .3s var(--mafoi-ease);
}

.mafoi-luxe-retail #bwp-header .menu > li:hover > a .menu-item-text::after,
.mafoi-luxe-retail #bwp-header .menu > .current-menu-item > a .menu-item-text::after {
  transform: scaleX(1);
}

.mafoi-luxe-retail #bwp-header .sub-menu {
  padding: 18px 20px;
  min-width: 230px;
  border: 1px solid var(--mafoi-line);
  background: var(--mafoi-paper);
  box-shadow: var(--mafoi-shadow);
}

.mafoi-luxe-retail #bwp-header .sub-menu li a {
  padding: 8px 4px;
  font-size: 13px;
}

.mafoi-luxe-retail #bwp-header .header-page-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mafoi-luxe-retail #bwp-header .header-page-link > div:not(.form-login-register):not(.remove-cart-shadow) {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
}

.mafoi-luxe-retail #bwp-header .header-page-link i {
  font-size: 19px;
}

.mafoi-luxe-retail #bwp-header .count-wishlist,
.mafoi-luxe-retail #bwp-header .cart-count {
  background: var(--mafoi-carbon);
  color: #fff;
  border: 2px solid var(--mafoi-paper);
  min-width: 18px;
  height: 18px;
  line-height: 14px;
  font-size: 9px;
}

/* Mafoil's secondary header uses a vertical menu by default; normalize it to retail navigation. */
@media (min-width: 992px) {
  .mafoi-luxe-retail #bwp-header.header-v7,
  .mafoi-luxe-retail #bwp-header.header-v7.header-absolute {
    position: relative !important;
    color: var(--mafoi-ink) !important;
    background: var(--mafoi-paper) !important;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-desktop,
  .mafoi-luxe-retail #bwp-header.header-v7 .header-wrapper,
  .mafoi-luxe-retail #bwp-header.header-v7 .header-desktop > .header-wrapper > .container,
  .mafoi-luxe-retail #bwp-header.header-v7 .header-desktop .header-container {
    height: 88px !important;
    min-height: 88px !important;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-wrapper {
    padding: 0 !important;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-desktop > .header-wrapper > .container {
    display: block;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-container {
    grid-template-columns: minmax(0, 1fr) 82px auto;
    gap: 20px;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-left,
  .mafoi-luxe-retail #bwp-header.header-v7 .header-menu,
  .mafoi-luxe-retail #bwp-header.header-v7 .wpbingo-menu-wrapper,
  .mafoi-luxe-retail #bwp-header.header-v7 .megamenu,
  .mafoi-luxe-retail #bwp-header.header-v7 .navbar-default,
  .mafoi-luxe-retail #bwp-header.header-v7 .navbar-mega,
  .mafoi-luxe-retail #bwp-header.header-v7 .float-menu,
  .mafoi-luxe-retail #bwp-header.header-v7 #main-navigation,
  .mafoi-luxe-retail #bwp-header.header-v7 .menu-main-menu-container,
  .mafoi-luxe-retail #bwp-header.header-v7 .menu {
    width: 100% !important;
    height: 88px !important;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .menu {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center;
    gap: 0;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .menu > li {
    display: block !important;
    width: auto !important;
    height: auto !important;
    float: none !important;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .menu > li > a {
    padding: 35px 7px 31px;
    color: var(--mafoi-ink) !important;
    font-size: 10px;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-center {
    display: grid;
    place-items: center;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .wpbingoLogo,
  .mafoi-luxe-retail #bwp-header.header-v7 .wpbingoLogo a {
    width: 68px;
    height: 68px;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-right {
    justify-content: flex-end;
  }

  .mafoi-luxe-retail #bwp-header.header-v7 .header-page-link,
  .mafoi-luxe-retail #bwp-header.header-v7 .header-page-link a,
  .mafoi-luxe-retail #bwp-header.header-v7 .header-page-link i {
    color: var(--mafoi-ink) !important;
  }
}

/* Breadcrumbs and page titles */
.mafoi-luxe-retail .page-title.bwp-title {
  padding: 34px 0;
  min-height: auto;
  background: var(--mafoi-ivory) !important;
  border-bottom: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail .page-title.bwp-title::before {
  content: none !important;
}

.mafoi-luxe-retail .page-title h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: .98;
}

.mafoi-luxe-retail .breadcrumb,
.mafoi-luxe-retail .bwp-breadcrumb {
  color: var(--mafoi-muted);
  font-size: 12px;
  letter-spacing: .04em;
}

/* Homepage — preserve signature media, elevate the frame */
.mafoi-luxe-retail.home #bwp-main,
.mafoi-luxe-retail.home #main-content,
.mafoi-luxe-retail.home .content-area,
.mafoi-luxe-retail.home .site-content {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.mafoi-luxe-retail.home .page-title {
  display: none;
}

.mafoi-luxe-retail.home .elementor-top-section {
  padding-left: clamp(18px, 4vw, 72px);
  padding-right: clamp(18px, 4vw, 72px);
}

.mafoi-luxe-retail.home .elementor-element-8af9266 {
  padding-top: 28px;
}

.mafoi-luxe-retail.home .elementor-widget-slider_revolution {
  overflow: hidden;
  background: #e9e4dd;
}

.mafoi-luxe-retail.home rs-module-wrap,
.mafoi-luxe-retail.home rs-module {
  min-height: clamp(430px, 58vw, 720px) !important;
}

.mafoi-luxe-retail.home .elementor-element-5c275ec,
.mafoi-luxe-retail.home .elementor-element-7be8d6c,
.mafoi-luxe-retail.home .elementor-element-aa2437d,
.mafoi-luxe-retail.home .elementor-element-4e8c4b1,
.mafoi-luxe-retail.home .elementor-element-5acdbe9 {
  padding-top: clamp(54px, 7vw, 100px);
}

.mafoi-luxe-retail.home .bwp-brand .item-image {
  display: grid;
  place-items: center;
  min-height: 80px;
  padding: 16px;
}

.mafoi-luxe-retail.home .bwp-brand,
.mafoi-luxe-retail.home .bwp-testimonial,
.mafoi-luxe-retail.home .bwp-brand .slick-list,
.mafoi-luxe-retail.home .bwp-testimonial .slick-list {
  max-width: 100%;
  overflow: hidden !important;
}

.mafoi-luxe-retail.home .bwp-brand img {
  max-height: 50px;
  width: auto;
  filter: grayscale(1) contrast(1.1);
  opacity: .8;
  transition: filter .3s ease, opacity .3s ease, transform .3s var(--mafoi-ease);
}

.mafoi-luxe-retail.home .bwp-brand a:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.mafoi-luxe-retail.home .bwp-filter-heading {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail.home .bwp-filter-heading ul {
  display: flex;
  gap: clamp(20px, 3vw, 46px);
  overflow-x: auto;
  scrollbar-width: none;
}

.mafoi-luxe-retail.home .bwp-filter-heading li,
.mafoi-luxe-retail.home .bwp-filter-heading a {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mafoi-luxe-retail.home .bwp-filter-homepage .button-filter,
.mafoi-luxe-retail.home .bwp-filter-homepage .loadmore a {
  min-width: 180px;
}

.mafoi-luxe-retail.home .bwp-testimonial {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 82px);
  background: var(--mafoi-ivory);
  border: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail.home .bwp-testimonial .testimonial-customer-position,
.mafoi-luxe-retail.home .bwp-testimonial .testimonial-customer-name {
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Added semantic reassurance band */
.mafoi-luxe-retail .mafoi-luxe-reassurance {
  max-width: var(--mafoi-max);
  margin: clamp(60px, 8vw, 120px) auto;
  padding: clamp(36px, 5vw, 72px);
  color: #fff;
  background: var(--mafoi-carbon);
}

.mafoi-luxe-retail .mafoi-luxe-reassurance__intro {
  display: grid;
  grid-template-columns: .8fr 2fr;
  align-items: end;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.mafoi-luxe-retail .mafoi-luxe-reassurance__intro > p {
  margin: 0;
  color: var(--mafoi-gold-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mafoi-luxe-retail .mafoi-luxe-reassurance h2 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .98;
}

.mafoi-luxe-retail .mafoi-luxe-reassurance__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mafoi-luxe-retail .mafoi-luxe-reassurance article {
  padding: 32px 24px 0 0;
}

.mafoi-luxe-retail .mafoi-luxe-reassurance article + article {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.mafoi-luxe-retail .mafoi-luxe-reassurance article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--mafoi-gold-soft);
  font-family: var(--mafoi-display);
  font-size: 24px;
}

.mafoi-luxe-retail .mafoi-luxe-reassurance h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--mafoi-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mafoi-luxe-retail .mafoi-luxe-reassurance article p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

/* Shared product cards and catalog */
.mafoi-luxe-retail .products-list {
  row-gap: clamp(34px, 4vw, 64px);
}

.mafoi-luxe-retail .product-wapper {
  height: 100%;
  background: transparent;
}

.mafoi-luxe-retail .product-wapper .products-thumb {
  margin-bottom: 17px;
  overflow: hidden;
  background: var(--mafoi-ivory);
}

.mafoi-luxe-retail .product-wapper .products-thumb img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .75s var(--mafoi-ease), filter .35s ease;
}

.mafoi-luxe-retail .product-wapper:hover .products-thumb img {
  transform: scale(1.025);
}

.mafoi-luxe-retail .product-wapper .products-content {
  padding: 0 5px;
  text-align: left;
}

.mafoi-luxe-retail.archive .product-wapper .cfvsw_variations_form,
.mafoi-luxe-retail.home .product-wapper .cfvsw_variations_form {
  display: none !important;
}

.mafoi-luxe-retail .product-wapper .product-title,
.mafoi-luxe-retail .product-wapper .product-title a {
  color: var(--mafoi-carbon);
  font-family: var(--mafoi-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .02em;
}

.mafoi-luxe-retail .product-wapper .price {
  margin-top: 7px;
  color: var(--mafoi-gold);
  font-family: var(--mafoi-body);
  font-size: 14px;
  font-weight: 500;
}

.mafoi-luxe-retail .product-wapper .product-button > * {
  box-shadow: 0 8px 24px rgba(20, 17, 14, .12);
}

.mafoi-luxe-retail.woocommerce-shop .content-area,
.mafoi-luxe-retail.tax-product_cat .content-area,
.mafoi-luxe-retail.tax-product_brand .content-area {
  padding-top: 52px;
  padding-bottom: 96px;
}

.mafoi-luxe-retail .bwp-top-bar {
  margin-bottom: 38px;
  padding: 18px 0;
  border-top: 1px solid var(--mafoi-line);
  border-bottom: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail .woocommerce-ordering select,
.mafoi-luxe-retail .pwb-dropdown .pwb-dropdown-toggle {
  min-height: 44px;
  padding: 9px 40px 9px 14px;
  border: 1px solid var(--mafoi-line-dark);
  background-color: #fff;
}

.mafoi-luxe-retail .products_loadmore .btn,
.mafoi-luxe-retail .woocommerce-pagination a,
.mafoi-luxe-retail .woocommerce-pagination span {
  min-width: 46px;
  min-height: 46px;
}

/* Product page: three disciplined columns aligned to the top */
.mafoi-luxe-retail.single-product .contents-detail {
  padding-top: 0;
}

.mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(470px, 1.28fr) minmax(330px, .82fr);
  gap: clamp(28px, 3.2vw, 54px);
  align-items: start;
  max-width: var(--mafoi-max);
  margin: 0 auto 80px;
  padding: 52px 24px 0;
}

.mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm > .row {
  display: contents;
}

.mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm > .row > .bwp-single-title,
.mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm > .row > .bwp-single-image,
.mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm > .row > .bwp-single-info {
  position: static;
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  transform: none;
}

.mafoi-luxe-retail.single-product .bwp-single-title {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.mafoi-luxe-retail.single-product .bwp-single-image {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.mafoi-luxe-retail.single-product .bwp-single-info {
  grid-column: 3;
  grid-row: 1;
  border-left: 1px solid var(--mafoi-line);
  padding-left: clamp(24px, 2.3vw, 40px) !important;
}

.mafoi-luxe-retail.single-product .entry-heading {
  position: sticky;
  top: 122px;
}

.mafoi-luxe-retail.single-product .entry-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 3.3vw, 53px);
  line-height: .97;
  text-transform: none;
}

.mafoi-luxe-retail.single-product .entry-heading .price,
.mafoi-luxe-retail.single-product .price-single {
  color: var(--mafoi-gold);
  font-size: 20px;
  font-weight: 500;
}

.mafoi-luxe-retail.single-product .content-image-thumbnail {
  margin-top: 28px;
}

.mafoi-luxe-retail.single-product .image-thumbnail-list .img-thumbnail {
  border: 1px solid transparent !important;
  opacity: .72;
}

.mafoi-luxe-retail.single-product .image-thumbnail-list .slick-current .img-thumbnail,
.mafoi-luxe-retail.single-product .image-thumbnail-list .img-thumbnail:hover {
  border-color: var(--mafoi-carbon) !important;
  opacity: 1;
}

.mafoi-luxe-retail.single-product .woocommerce-product-gallery,
.mafoi-luxe-retail.single-product .woocommerce-product-gallery__wrapper {
  max-width: 100%;
  overflow: hidden;
  background: var(--mafoi-ivory);
}

.mafoi-luxe-retail.single-product .woocommerce-product-gallery .slick-list,
.mafoi-luxe-retail.single-product .image-thumbnail-list .slick-list {
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
}

.mafoi-luxe-retail.single-product .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mafoi-luxe-retail.single-product .entry-cart {
  padding: 0 !important;
}

.mafoi-luxe-retail.single-product .variations {
  width: 100%;
  margin: 0 0 18px;
}

.mafoi-luxe-retail.single-product .variations tr {
  display: block;
  padding: 0 0 18px;
}

.mafoi-luxe-retail.single-product .variations td {
  display: block;
  width: 100%;
  padding: 0;
}

.mafoi-luxe-retail.single-product .variations .label {
  margin-bottom: 11px;
  color: var(--mafoi-carbon);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mafoi-luxe-retail.single-product .product-type-variable .variations_form.cart table tr td label::after,
.mafoi-luxe-retail .quickview-container .product-type-variable .variations_form.cart table tr td label::after {
  content: none;
}

.mafoi-luxe-retail .variations_form label .cfvsw-selected-label:not(:empty)::before {
  content: " : ";
  font-weight: 400;
  opacity: .7;
}

.mafoi-luxe-retail .variations_form label .cfvsw-selected-label {
  font-weight: 400;
  text-transform: none;
}

.mafoi-luxe-retail.single-product .cfvsw-swatches-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mafoi-luxe-retail.single-product .cfvsw-swatches-option {
  display: grid;
  place-items: center;
  min-width: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  border: 1px solid var(--mafoi-line-dark) !important;
  border-radius: 0 !important;
  background: #fff;
  color: var(--mafoi-carbon);
  font-size: 12px;
}

.mafoi-luxe-retail.single-product .cfvsw-swatches-option.cfvsw-selected-swatch,
.mafoi-luxe-retail.single-product .cfvsw-swatches-option:hover {
  border-color: var(--mafoi-carbon) !important;
  background: var(--mafoi-carbon) !important;
  color: #fff !important;
}

.mafoi-luxe-retail.single-product .cfvsw-swatches-option.cfvsw-swatches-disabled {
  color: #aaa !important;
  background: linear-gradient(to top right, transparent 48%, var(--mafoi-line-dark) 49%, var(--mafoi-line-dark) 51%, transparent 52%) !important;
}

.mafoi-luxe-retail.single-product .single_variation_wrap .quantity,
.mafoi-luxe-retail.single-product .cart .quantity {
  min-height: 52px;
  border: 1px solid var(--mafoi-line-dark);
}

.mafoi-luxe-retail.single-product button.single_add_to_cart_button,
.mafoi-luxe-retail.single-product .single_add_to_cart_button,
.mafoi-luxe-retail.single-product .buy-now {
  min-height: 54px;
  border: 1px solid var(--mafoi-carbon) !important;
  border-radius: 0 !important;
  background: var(--mafoi-carbon) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s var(--mafoi-ease);
}

.mafoi-luxe-retail.single-product .buy-now {
  background: #fff !important;
  color: var(--mafoi-carbon) !important;
}

.mafoi-luxe-retail.single-product button.single_add_to_cart_button:hover,
.mafoi-luxe-retail.single-product .single_add_to_cart_button:hover,
.mafoi-luxe-retail.single-product .buy-now:hover {
  transform: translateY(-1px);
  background: var(--mafoi-gold) !important;
  border-color: var(--mafoi-gold) !important;
  color: #fff !important;
}

.mafoi-luxe-retail.single-product .product-shipping-delivers,
.mafoi-luxe-retail.single-product .safe-checkout,
.mafoi-luxe-retail.single-product .payment-methods {
  padding: 20px 0;
  border-top: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail.single-product .product_meta {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--mafoi-line);
  color: var(--mafoi-muted);
  font-size: 12px;
}

.mafoi-luxe-retail.single-product .woocommerce-tabs,
.mafoi-luxe-retail.single-product .related,
.mafoi-luxe-retail.single-product .recent-view {
  max-width: var(--mafoi-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.mafoi-luxe-retail.single-product .woocommerce-tabs {
  margin-top: 20px;
  margin-bottom: 110px;
  border-top: 1px solid var(--mafoi-line);
  border-bottom: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail.single-product .woocommerce-tabs ul.tabs li a {
  font-size: 13px;
  letter-spacing: .06em;
}

.mafoi-luxe-retail.single-product .woocommerce-tabs .panel {
  color: var(--mafoi-muted);
  font-size: 15px;
  line-height: 1.8;
}

.mafoi-luxe-retail.single-product .related > h2,
.mafoi-luxe-retail.single-product .recent-view > h2,
.mafoi-luxe-retail.single-product .related .title-block,
.mafoi-luxe-retail.single-product .recent-view .title-block {
  margin-bottom: 42px;
  font-size: clamp(32px, 3vw, 46px);
  text-align: center;
}

.mafoi-luxe-retail.single-product .related .slick-carousel,
.mafoi-luxe-retail.single-product .recent-view .slick-carousel,
.mafoi-luxe-retail.single-product .related .slick-list,
.mafoi-luxe-retail.single-product .recent-view .slick-list {
  width: 100% !important;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: hidden !important;
}

/* Buttons, forms, notices, and transactional pages */
.mafoi-luxe-retail input[type="text"],
.mafoi-luxe-retail input[type="email"],
.mafoi-luxe-retail input[type="tel"],
.mafoi-luxe-retail input[type="password"],
.mafoi-luxe-retail input[type="search"],
.mafoi-luxe-retail input[type="number"],
.mafoi-luxe-retail select,
.mafoi-luxe-retail textarea {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--mafoi-line-dark);
  border-radius: 0;
  background: #fff;
  color: var(--mafoi-carbon);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mafoi-luxe-retail textarea {
  min-height: 140px;
  resize: vertical;
}

.mafoi-luxe-retail input:focus,
.mafoi-luxe-retail select:focus,
.mafoi-luxe-retail textarea:focus {
  border-color: var(--mafoi-gold);
  box-shadow: 0 0 0 3px rgba(155, 116, 69, .1);
}

.mafoi-luxe-retail button,
.mafoi-luxe-retail input[type="submit"],
.mafoi-luxe-retail .button,
.mafoi-luxe-retail a.button,
.mafoi-luxe-retail .btn {
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--mafoi-carbon);
  border-radius: 0;
  background: var(--mafoi-carbon);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mafoi-luxe-retail button:hover,
.mafoi-luxe-retail input[type="submit"]:hover,
.mafoi-luxe-retail .button:hover,
.mafoi-luxe-retail a.button:hover,
.mafoi-luxe-retail .btn:hover {
  border-color: var(--mafoi-gold);
  background: var(--mafoi-gold);
  color: #fff;
}

.mafoi-luxe-retail .woocommerce-error,
.mafoi-luxe-retail .woocommerce-info,
.mafoi-luxe-retail .woocommerce-message {
  padding: 18px 22px 18px 52px;
  border: 1px solid var(--mafoi-line);
  border-top: 3px solid var(--mafoi-gold);
  background: var(--mafoi-ivory);
  color: var(--mafoi-ink);
}

.mafoi-luxe-retail .woocommerce-error {
  border-top-color: var(--mafoi-danger);
}

.mafoi-luxe-retail .woocommerce-message {
  border-top-color: var(--mafoi-success);
}

.mafoi-luxe-retail.woocommerce-cart #primary,
.mafoi-luxe-retail.woocommerce-checkout #primary,
.mafoi-luxe-retail.woocommerce-account #primary,
.mafoi-luxe-retail.contact #primary,
.mafoi-luxe-retail.order-tracking #primary {
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 100px;
}

.mafoi-luxe-retail .woocommerce-cart-form,
.mafoi-luxe-retail .cart_totals,
.mafoi-luxe-retail .woocommerce-checkout-review-order,
.mafoi-luxe-retail .woocommerce-form-login,
.mafoi-luxe-retail .woocommerce-form-register,
.mafoi-luxe-retail .woocommerce-MyAccount-content,
.mafoi-luxe-retail .track_order {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--mafoi-line);
  background: #fff;
}

.mafoi-luxe-retail table.shop_table {
  border: 1px solid var(--mafoi-line);
  border-collapse: collapse;
}

.mafoi-luxe-retail table.shop_table th {
  color: var(--mafoi-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mafoi-luxe-retail table.shop_table th,
.mafoi-luxe-retail table.shop_table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail .woocommerce-checkout #payment {
  padding: 24px;
  border: 1px solid var(--mafoi-line);
  background: var(--mafoi-ivory);
}

.mafoi-luxe-retail .woocommerce-checkout #payment .payment_box {
  padding: 16px;
  background: #fff;
}

.mafoi-luxe-retail .woocommerce-MyAccount-navigation {
  border: 1px solid var(--mafoi-line);
}

.mafoi-luxe-retail .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid var(--mafoi-line);
  font-size: 12px;
  letter-spacing: .06em;
}

.mafoi-luxe-retail .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--mafoi-carbon);
  color: #fff;
}

.mafoi-luxe-retail.contact .elementor-widget-heading h2,
.mafoi-luxe-retail.contact .elementor-heading-title {
  font-size: clamp(38px, 5vw, 68px);
}

/* Footer */
.mafoi-luxe-retail footer,
.mafoi-luxe-retail #bwp-footer {
  color: rgba(255, 255, 255, .72);
  background: var(--mafoi-carbon);
}

.mafoi-luxe-retail #bwp-footer .elementor-section,
.mafoi-luxe-retail #bwp-footer .elementor-column,
.mafoi-luxe-retail #bwp-footer .elementor-widget-wrap {
  background: transparent !important;
}

.mafoi-luxe-retail #bwp-footer .elementor-top-section {
  padding-top: clamp(50px, 6vw, 86px);
  padding-bottom: clamp(36px, 5vw, 70px);
}

.mafoi-luxe-retail #bwp-footer p,
.mafoi-luxe-retail #bwp-footer li,
.mafoi-luxe-retail #bwp-footer .elementor-icon-list-text,
.mafoi-luxe-retail #bwp-footer .elementor-heading-title {
  color: rgba(255, 255, 255, .72) !important;
}

.mafoi-luxe-retail footer h2,
.mafoi-luxe-retail footer h3,
.mafoi-luxe-retail footer h4,
.mafoi-luxe-retail #bwp-footer h2,
.mafoi-luxe-retail #bwp-footer h3,
.mafoi-luxe-retail #bwp-footer h4 {
  color: #fff;
}

.mafoi-luxe-retail footer a,
.mafoi-luxe-retail #bwp-footer a {
  color: rgba(255, 255, 255, .72);
}

.mafoi-luxe-retail footer a:hover,
.mafoi-luxe-retail #bwp-footer a:hover {
  color: var(--mafoi-gold-soft);
}

.mafoi-luxe-retail #bwp-footer .footer-copyright,
.mafoi-luxe-retail #bwp-footer .bwp-copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.mafoi-luxe-retail .trp-language-switcher > div {
  border: 1px solid var(--mafoi-line);
  border-radius: 0;
  background-color: var(--mafoi-paper);
  box-shadow: 0 8px 24px rgba(20, 17, 14, .08);
}

@media (max-width: 1199px) {
  .mafoi-luxe-retail #bwp-header .header-container {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mafoi-luxe-retail #bwp-header .menu > li > a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 10px;
  }

  .mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm {
    grid-template-columns: minmax(230px, .7fr) minmax(390px, 1.2fr) minmax(300px, .8fr);
    gap: 26px;
  }
}

@media (max-width: 991px) {
  .mafoi-luxe-retail #bwp-header .header-sticky {
    display: none;
  }

  .mafoi-luxe-retail #bwp-header .header-mobile {
    display: block;
    min-height: 74px;
    border-bottom: 1px solid var(--mafoi-line);
  }

  .mafoi-luxe-retail #bwp-header .header-mobile-container {
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .mafoi-luxe-retail #bwp-header .header-mobile .wpbingoLogo img {
    width: 58px;
    height: 58px;
  }

  .mafoi-luxe-retail #show-megamenu {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--mafoi-carbon);
  }

  .mafoi-luxe-retail #show-megamenu span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .mafoi-luxe-retail #show-megamenu::before {
    content: "";
    display: block;
    width: 22px;
    height: 14px;
    margin: auto;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  .mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 28px;
  }

  .mafoi-luxe-retail.single-product .bwp-single-image {
    grid-column: 1;
    grid-row: 1;
  }

  .mafoi-luxe-retail.single-product .bwp-single-title {
    grid-column: 1;
    grid-row: 2;
    padding-top: 30px !important;
  }

  .mafoi-luxe-retail.single-product .bwp-single-info {
    grid-column: 1;
    grid-row: 3;
    margin-top: 24px;
    padding: 26px 0 0 !important;
    border-top: 1px solid var(--mafoi-line);
    border-left: 0;
  }

  .mafoi-luxe-retail.single-product .entry-heading {
    position: static;
  }

  .mafoi-luxe-retail .mafoi-luxe-reassurance__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mafoi-luxe-retail .mafoi-luxe-reassurance article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 767px) {
  body.mafoi-luxe-retail {
    font-size: 14px;
  }

  .mafoi-luxe-retail .trp-floating-switcher {
    --bottom: 72px !important;
    --right: 10px !important;
  }

  .mafoi-luxe-retail.home .elementor-top-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mafoi-luxe-retail.home .elementor-element-8af9266 {
    padding-top: 14px;
  }

  .mafoi-luxe-retail.home rs-module-wrap,
  .mafoi-luxe-retail.home rs-module {
    min-height: 0 !important;
  }

  .mafoi-luxe-retail .page-title.bwp-title {
    padding: 24px 0;
  }

  .mafoi-luxe-retail.single-product .contents-detail .bwp-single-product.moderm {
    margin-bottom: 48px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .mafoi-luxe-retail.single-product .entry-title {
    font-size: clamp(31px, 10.5vw, 43px);
  }

  .mafoi-luxe-retail.single-product .content-image-thumbnail {
    margin-top: 20px;
  }

  .mafoi-luxe-retail.single-product .single_variation_wrap,
  .mafoi-luxe-retail.single-product .cart {
    width: 100%;
  }

  .mafoi-luxe-retail.single-product button.single_add_to_cart_button,
  .mafoi-luxe-retail.single-product .single_add_to_cart_button,
  .mafoi-luxe-retail.single-product .buy-now {
    width: 100%;
  }

  .mafoi-luxe-retail.single-product .woocommerce-tabs,
  .mafoi-luxe-retail.single-product .related,
  .mafoi-luxe-retail.single-product .recent-view {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mafoi-luxe-retail .mafoi-luxe-reassurance {
    margin-left: 14px;
    margin-right: 14px;
    padding: 32px 22px;
  }

  .mafoi-luxe-retail .mafoi-luxe-reassurance__intro,
  .mafoi-luxe-retail .mafoi-luxe-reassurance__grid {
    grid-template-columns: 1fr;
  }

  .mafoi-luxe-retail .mafoi-luxe-reassurance__intro {
    gap: 16px;
  }

  .mafoi-luxe-retail .mafoi-luxe-reassurance article,
  .mafoi-luxe-retail .mafoi-luxe-reassurance article + article,
  .mafoi-luxe-retail .mafoi-luxe-reassurance article:nth-child(3) {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .mafoi-luxe-retail .mafoi-luxe-reassurance article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .mafoi-luxe-retail .woocommerce-cart-form,
  .mafoi-luxe-retail .cart_totals,
  .mafoi-luxe-retail .woocommerce-checkout-review-order,
  .mafoi-luxe-retail .woocommerce-form-login,
  .mafoi-luxe-retail .woocommerce-form-register,
  .mafoi-luxe-retail .woocommerce-MyAccount-content,
  .mafoi-luxe-retail .track_order {
    padding: 22px 16px;
  }

  .mafoi-luxe-retail footer .wpcf7-form,
  .mafoi-luxe-retail footer .wpcf7-form-control-wrap,
  .mafoi-luxe-retail footer input,
  .mafoi-luxe-retail #bwp-footer .wpcf7-form,
  .mafoi-luxe-retail #bwp-footer .wpcf7-form-control-wrap,
  .mafoi-luxe-retail #bwp-footer input {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .mafoi-luxe-retail .product-wapper .product-title,
  .mafoi-luxe-retail .product-wapper .product-title a {
    font-size: 12px;
  }

  .mafoi-luxe-retail.single-product .cfvsw-swatches-option {
    min-width: 42px !important;
    min-height: 42px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mafoi-luxe-retail *,
  .mafoi-luxe-retail *::before,
  .mafoi-luxe-retail *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
