/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {
  --white: #fff;
  --black: #000;
  --giallo: #fdb900;
  --verde: #00990f;
  --viola-scuro: #3a2461;
  --viola: #6c3fc0;
  --grigino: #999;
  --unisex: #50C878;
  --male: #318CE7;
  --female: #FF91AF;
}

.woocommerce .swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 40px;
}
.woocommerce .swiper-wrapper {
  display: flex;
  transition-duration: 0ms;
  transform: translate3d(0px, 0px, 0px);
  flex-wrap: nowrap !important;
}
.woocommerce [data-products].swiper-wrapper {
  display: flex !important;
  grid-template-columns: none !important;
  grid-column-gap: 0 !important;
  grid-row-gap: 0 !important;
  gap: 0 !important;
}
.woocommerce .swiper-slide {
  flex-shrink: 0;
  width: auto;
  height: auto;
  position: relative;
  transition-property: transform;
}
.woocommerce .swiper-button-next, .woocommerce .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.woocommerce .swiper-button-next:hover, .woocommerce .swiper-button-prev:hover {
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.woocommerce .swiper-button-next:after, .woocommerce .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}
.woocommerce .swiper-button-prev {
  left: 10px;
  right: auto;
}
.woocommerce .swiper-button-next {
  right: 10px;
  left: auto;
}
.woocommerce .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
}
.woocommerce .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
  opacity: 0.7;
  cursor: pointer;
}
.woocommerce .swiper-pagination-bullet-active {
  opacity: 1;
  background: #333;
}

/*--------------------------------------------------------------
# Carousel Block
--------------------------------------------------------------*/
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
}

.mm-brand-carousel-viewport {
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
}

.carousel-slides {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 330px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel-slide {
    height: 250px;
  }
}

.carousel-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.carousel-clone {
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  background-color: var(--white);
  color: var(--black);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.carousel-arrow:after {
  font-size: 20px;
}
.carousel-arrow:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
}

.carousel-prev {
  left: 20px;
}
@media (max-width: 768px) {
  .carousel-prev {
    left: 10px;
  }
}

.carousel-next {
  right: 20px;
}
@media (max-width: 768px) {
  .carousel-next {
    right: 10px;
  }
}

/*--------------------------------------------------------------
# Brand Carousel con Swiper
--------------------------------------------------------------*/
.mm-brand-carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0;
}
.mm-brand-carousel-wrapper .swiper-container {
  padding: 20px 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mm-brand-carousel-wrapper .swiper-container {
    padding: 10px 10px;
  }
}
@media (max-width: 576px) {
  .mm-brand-carousel-wrapper .swiper-container {
    padding: 10px 0px;
  }
}
@media (max-width: 1024px) {
  .mm-brand-carousel-wrapper .swiper-button-prev,
  .mm-brand-carousel-wrapper .swiper-button-next {
    display: none !important;
  }
}

.swiper-slide {
  height: auto;
}

.mm-brand-link {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.mm-brand-link:hover {
  transform: translateY(-5px);
}
.mm-brand-link:hover .mm-brand-image-container {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mm-brand-image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
  background-color: var(--white);
  padding: 10px;
}
@media (max-width: 576px) {
  .mm-brand-image-container {
    padding: 5px;
  }
}

.mm-brand-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  width: 100%;
  height: 80px;
  transition: transform 0.2s ease;
}
@media (max-width: 576px) {
  .mm-brand-image {
    height: 60px;
  }
}

.mm-brand-text-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 10px;
  text-align: center;
}
@media (max-width: 576px) {
  .mm-brand-text-placeholder {
    height: 60px;
  }
}
.mm-brand-text-placeholder span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
}
@media (max-width: 1200px) {
  .mm-brand-text-placeholder span {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .mm-brand-text-placeholder span {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .mm-brand-text-placeholder span {
    font-size: 10px;
  }
}

.mm-brand-product-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: var(--white);
  color: #444;
  border-radius: 50%;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 6px;
  border: 1px solid #e6e6e6;
  z-index: 2;
}
.mm-brand-product-count:not(:empty) {
  animation: bounceIn 0.3s ease;
}
@media (max-width: 480px) {
  .mm-brand-product-count {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    bottom: 5px;
    right: 5px;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.mm-brand-carousel-wrapper .swiper-button-prev,
.mm-brand-carousel-wrapper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--theme-button-background-initial-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.mm-brand-carousel-wrapper .swiper-button-prev::after,
.mm-brand-carousel-wrapper .swiper-button-next::after {
  font-size: 20px;
  color: var(--theme-button-text-initial-color);
  font-weight: bold;
}
.mm-brand-carousel-wrapper .swiper-button-prev:hover,
.mm-brand-carousel-wrapper .swiper-button-next:hover {
  background: var(--theme-button-background-hover-color);
  color: var(--theme-button-text-hover-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .mm-brand-carousel-wrapper .swiper-button-prev,
  .mm-brand-carousel-wrapper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .mm-brand-carousel-wrapper .swiper-button-prev::after,
  .mm-brand-carousel-wrapper .swiper-button-next::after {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .mm-brand-carousel-wrapper .swiper-button-prev,
  .mm-brand-carousel-wrapper .swiper-button-next {
    width: 35px;
    height: 35px;
    top: 120px;
  }
  .mm-brand-carousel-wrapper .swiper-button-prev::after,
  .mm-brand-carousel-wrapper .swiper-button-next::after {
    font-size: 16px;
  }
}
.mm-brand-carousel-wrapper .swiper-button-prev {
  left: -50px;
}
@media (max-width: 992px) {
  .mm-brand-carousel-wrapper .swiper-button-prev {
    left: 10px;
  }
}
.mm-brand-carousel-wrapper .swiper-button-next {
  right: -50px;
}
@media (max-width: 992px) {
  .mm-brand-carousel-wrapper .swiper-button-next {
    right: 10px;
  }
}
.mm-brand-carousel-wrapper .swiper-button-disabled {
  opacity: 0;
  cursor: not-allowed;
}
.mm-brand-carousel-wrapper .swiper-button-disabled:hover {
  transform: scale(1);
}

.swiper-lazy-preloader {
  background: #f8f9fa;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Lista Brands
--------------------------------------------------------------*/
.product-brands-alphabetical {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.product-brands-alphabetical .brand-letter-section {
  width: 25%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .product-brands-alphabetical .brand-letter-section {
    width: 33%;
  }
}
@media (max-width: 576px) {
  .product-brands-alphabetical .brand-letter-section {
    width: 50%;
  }
}
/*--------------------------------------------------------------
# Filtri
--------------------------------------------------------------*/
.ct-toggle-filter-panel {
  background: var(--theme-palette-color-2) !important;
  border-color: var(--theme-palette-color-2) !important;
  color: var(--white);
}

/*--------------------------------------------------------------
# Privacy
--------------------------------------------------------------*/
.cmplz-document {
  max-width: unset !important;
}

/*--------------------------------------------------------------
# Variazioni prodotto singolo
--------------------------------------------------------------*/
table.variations th.label {
  display: none;
}

.pto-variazione-formato-legenda {
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.pto-variation-radio-variations {
  margin-bottom: 1rem;
  display: flex;
}

.pto-variation-label-variation {
  display: inline-block;
  margin: 3px;
  padding: 3px 6px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
  background-color: transparent;
  border: 2px solid var(--verde);
  color: var(--verde);
  border-radius: 3px;
}
.pto-variation-label-variation .pto-variation-candle-dimension {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 0.3rem;
}
.pto-variation-label-variation.pto-variation-current-selection, .pto-variation-label-variation:hover {
  background-color: var(--verde);
  color: var(--white);
}
.pto-variation-label-variation.not-available {
  opacity: 0.2;
  background-color: var(--white);
  color: var(--verde);
}
.pto-variation-label-variation .pto-variation-second-width {
  font-size: 18px;
}
.pto-variation-label-variation .pto-variation-third-width {
  font-size: 16px;
}
.pto-variation-label-variation .pto-variation-third-width del {
  font-size: 11px;
}

/*--------------------------------------------------------------
# Attributi e variazioni
--------------------------------------------------------------*/
.container-tipo-di-profumo {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border: 4px dashed var(--viola);
  border-radius: 9px;
}
.container-tipo-di-profumo .pre-message-p {
  margin: 0px !important;
}
@media (max-width: 768px) {
  .container-tipo-di-profumo .pre-message-p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .container-tipo-di-profumo .pre-message-p {
    margin: 0px !important;
    padding: 0px;
    font-size: 12px;
  }
}
.container-tipo-di-profumo .related-product-link.button {
  padding: 4px 6px;
  border-radius: 6px;
  min-height: 20px;
}
.container-tipo-di-profumo .label-is-tester {
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 10px;
  background-color: var(--giallo);
  color: var(--black);
}
.container-tipo-di-profumo .label-is-tester.is-original {
  background-color: var(--verde);
  color: var(--white);
}
.container-tipo-di-profumo .in-stock {
  color: var(--green);
  font-weight: bold;
}
.container-tipo-di-profumo .out-of-stock {
  color: var(--red);
  font-weight: bold;
}

/*--------------------------------------------------------------
# Numero civico
--------------------------------------------------------------*/
.mini-alert {
  margin-top: 4px;
  padding: 4px;
  background-color: #ffecc4;
}

.mini-alert-btn {
  width: 100%;
  margin-top: 4px;
  margin-top: 6px;
  padding: 4px;
  font-weight: bold;
  color: #f00;
}

/*--------------------------------------------------------------
# Menu icon
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .menu-item > .ct-menu-link .ct-icon-container {
    display: none;
  }
}
/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.ct-newsletter-subscribe-message {
  color: var(--white);
}

/*--------------------------------------------------------------
# Fix
--------------------------------------------------------------*/
.paypal-button-row.paypal-button-number-2.paypal-button-layout-vertical.paypal-button-number-multiple.paypal-button-env-production.paypal-button-color-black.paypal-button-text-color-white.paypal-logo-color-white.paypal-button-shape-rect {
  display: none !important;
}

.sr-only {
  display: none !important;
}

/*--------------------------------------------------------------
# F o M
--------------------------------------------------------------*/
.pto-legend-box {
  position: absolute;
  top: 42px;
  left: 15px;
}
.pto-legend-box .pto-legend-icon,
.pto-legend-box .pto-product-type {
  display: inline-block;
  padding: 2px 4px;
  margin-right: 2px;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  background-color: var(--grigino);
  color: #333;
  border-radius: 3px;
}
@media (max-width: 576px) {
  .pto-legend-box .pto-legend-icon,
  .pto-legend-box .pto-product-type {
    font-size: 12px;
    line-height: 12px;
  }
}
.pto-legend-box .pto-legend-icon {
  background-color: #999;
  color: #fff;
}
.pto-legend-box .pto-legend-icon svg {
  width: 12px;
  height: 12px;
}
.pto-legend-box .pto-legend-icon.pto-type-male-female {
  background-color: var(--unisex);
}
.pto-legend-box .pto-legend-icon.pto-type-female {
  background-color: var(--female);
}
.pto-legend-box .pto-legend-icon.pto-type-male {
  background-color: var(--male);
}

/*--------------------------------------------------------------
# Prodotto loop disponibile
--------------------------------------------------------------*/
.mm-availability {
  position: absolute;
  top: 66px;
  left: 15px;
}
.mm-availability .pto-mm-availability {
  display: inline-block;
  padding: 2px 4px;
  margin-right: 2px;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  background-color: var(--verde);
  color: var(--white);
  border-radius: 3px;
}
@media (max-width: 576px) {
  .mm-availability .pto-mm-availability {
    font-size: 12px;
    line-height: 12px;
  }
}

/*--------------------------------------------------------------
# Heart
--------------------------------------------------------------*/
#falling-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 999999;
}

.falling-heart {
  position: absolute;
  top: -10vh;
  left: 0;
  font-size: var(--size, 22px);
  opacity: var(--opacity, 0.9);
  transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg));
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.12));
  animation: heart-fall var(--dur, 6s) linear forwards, heart-sway var(--swaydur, 2.2s) ease-in-out infinite alternate;
  will-change: transform, top, left, opacity;
}

@keyframes heart-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg));
    opacity: 0;
  }
  8% {
    opacity: var(--opacity, 0.9);
  }
  100% {
    transform: translate3d(var(--drift, 0px), 115vh, 0) rotate(calc(var(--rot, 0deg) + 220deg));
    opacity: 0;
  }
}
@keyframes heart-sway {
  0% {
    margin-left: -10px;
  }
  100% {
    margin-left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #falling-hearts {
    display: none !important;
  }
}
#falling-hearts {
  opacity: 1;
  transition: opacity 1.2s ease;
}

#falling-hearts.is-fading {
  opacity: 0;
}/*# sourceMappingURL=carousel.css.map */