/** Shopify CDN: Minification failed

Line 22:10 Unexpected "{"
Line 22:19 Expected ":"
Line 22:26 Unexpected "{"
Line 23:10 Expected identifier but found whitespace
Line 23:12 Unexpected "{"
Line 23:21 Expected ":"
Line 24:12 Expected identifier but found whitespace
Line 24:14 Unexpected "{"
Line 24:23 Expected ":"
Line 25:14 Expected identifier but found whitespace
... and 102 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:hero-section (INDEX:0) */
/* Marc Monomalist — Hero Showcase (scoped with section id) */
#mm-hero-{{ section.id }} {
  --mm-bg: {{ section.settings.bg_color }};
  --mm-text: {{ section.settings.text_color }};
  --mm-accent: {{ section.settings.accent_color }};
  --mm-accent-rgb: {{ section.settings.accent_color | color_to_rgb | replace: 'rgb(', '' | replace: ')', '' }};
  --mm-radius-xl: 20px;
  --mm-radius-2xl: 28px;
  --mm-shadow-soft: 0 12px 40px rgba(0,0,0,.35);
  --mm-card-base-offset-x: {{ section.settings.card_offset_x }}px;
  --mm-card-base-offset-y: {{ section.settings.card_offset_y }}px;
  --mm-card-overlay-boost: 0px;
  --mm-card-padding: clamp(18px, 3.2vw, 26px);
  --mm-media-gap: clamp(24px, 5vw, 36px);
  background: var(--mm-bg);
  background: linear-gradient(115deg,
    var(--mm-bg) 0%,
    rgba(var(--mm-accent-rgb), .18) 55%,
    rgba(var(--mm-accent-rgb), .92) 100%
  );
  color: var(--mm-text);
}

#mm-hero-{{ section.id }} .mm-hero__wrap {
  max-width: 1300px;
  margin-inline: auto;
      padding: 120px 0px 0px;
  position: relative;

}

#mm-hero-{{ section.id }} .mm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(16px, 2vw, 24px);
}

#mm-hero-{{ section.id }} .mm-hero__stars {
  background: #ff2121;
  border-radius: 10px;
  padding: 6px 10px;
  letter-spacing: .15em;
  font-weight: 700;
  line-height: 1;
  color: black;
  white-space: nowrap;
}

#mm-hero-{{ section.id }} .mm-hero__reviews {
  font-size: 12px;
  opacity: .9;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'SEMIMONO';
  font-weight: 700;
}

#mm-hero-{{ section.id }} .mm-hero__grid {
  display: grid;
  grid-template-columns: 1.9fr .9fr;

  align-items: start;
}

#mm-hero-{{ section.id }} .mm-hero__copy {
  min-width: 0;
}

#mm-hero-{{ section.id }} .mm-hero__heading {
  font-size: clamp(40px, 5.4vw, 50px);
  line-height: 1.08;
  margin: 0 0 12px 0;
  letter-spacing: -.01em;
}

#mm-hero-{{ section.id }} .mm-hero__subheading {
  font-size: clamp(16px, 1.4vw, 18px);
  opacity: .85;
  margin: 0 0 8px 0;
}

#mm-hero-{{ section.id }} .mm-hero__icon-list {
  
  margin-bottom: clamp(14px, 2vw, 30px);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

#mm-hero-{{ section.id }} .mm-hero__icon-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(12px, 2vw, 24px);
  will-change: transform;
}

#mm-hero-{{ section.id }} .mm-hero__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-align: left;
}

#mm-hero-{{ section.id }} .mm-hero__icon--clone {
  display: none;
}

#mm-hero-{{ section.id }} .mm-hero__icon-media {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: rgba(var(--mm-accent-rgb), .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

#mm-hero-{{ section.id }} .mm-hero__icon-media svg,
#mm-hero-{{ section.id }} .mm-hero__icon-media img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

#mm-hero-{{ section.id }} .mm-hero__icon-media svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#mm-hero-{{ section.id }} .mm-hero__icon-label {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'SEMIMONO', monospace;
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
}

@keyframes mm-hero-icon-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  #mm-hero-{{ section.id }} .mm-hero__icon-track {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 749px) {
  #mm-hero-{{ section.id }} .mm-hero__icon-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: mm-hero-icon-marquee 24s linear infinite;
  }
  #mm-hero-{{ section.id }} .mm-hero__icon-track:hover,
  #mm-hero-{{ section.id }} .mm-hero__icon-track:focus-within {
    animation-play-state: paused;
  }
  #mm-hero-{{ section.id }} .mm-hero__icon {
    flex: 0 0 auto;
    min-width: 220px;
  }
  #mm-hero-{{ section.id }} .mm-hero__icon--clone {
    display: flex;
  }
  #mm-hero-{{ section.id }} .mm-hero__icon-label {
    font-size: 15px;
    max-width: clamp(140px, 45vw, 200px);
    line-height: 1.35;
  }
}

@media (min-width: 750px) {
  #mm-hero-{{ section.id }} .mm-hero__icon {
    gap: 16px;
  }
  #mm-hero-{{ section.id }} .mm-hero__icon-label {
    margin: 0;
    max-width: none;
  }
}

#mm-hero-{{ section.id }} .mm-hero__card {
  position: relative;
  width: min(320px, 92%);
  margin-left: 0px;
  border-radius: 15px;
  overflow: hidden;
  
  background: linear-gradient(180deg,
    rgba(var(--mm-accent-rgb), .92) 0%,
    rgba(var(--mm-accent-rgb), 1) 100%
  );
  padding: var(--mm-card-padding);
  box-shadow: var(--mm-shadow-soft);
  display: flex;
  flex-direction: column;
  
  isolation: isolate;
  z-index: 2;
  background:rgb(21 22 23);
}

#mm-hero-{{ section.id }} .mm-hero__card-media {
  position: relative;
  background: rgba(var(--mm-accent-rgb), .12);
  border-radius: calc(var(--mm-radius-2xl) - 12px);
  padding: clamp(14px, 2.6vw, 22px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  padding-bottom:0;
}

#mm-hero-{{ section.id }} .mm-hero__card-pattern {
  position: absolute;
  inset: 0;
  filter: opacity(.5);
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

#mm-hero-{{ section.id }} .mm-hero__card-product {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
  position: relative;
  z-index: 1;
}

#mm-hero-{{ section.id }} .mm-hero__cta {
  display: block;
  margin-left: calc(0px - var(--mm-card-padding));
  margin-right: calc(0px - var(--mm-card-padding));
  background: rgba(var(--mm-accent-rgb), .96);
  color: #fff;
  text-align: center;
  padding: clamp(18px, 2.8vw, 24px) clamp(24px, 4vw, 32px);
  border-radius: 0 0 var(--mm-radius-2xl) var(--mm-radius-2xl);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 12px;
  font-family: 'SEMIMONO';
  font-weight: 700;
  
}
#mm-hero-{{ section.id }} .mm-hero__cta:hover { opacity: .9; }

#mm-hero-{{ section.id }} .mm-hero__media {
  position: relative;
  margin-top: var(--mm-media-gap);
  border-radius: var(--mm-radius-xl);
  overflow: hidden;
  box-shadow: var(--mm-shadow-soft);
  z-index: 1;
}

#mm-hero-{{ section.id }} .mm-hero__picture {
  display: block;
}

#mm-hero-{{ section.id }} .mm-hero__image {
  display: block;
  width: 100%;
  height: auto;
}

#mm-hero-{{ section.id }} .mm-hero__image--placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
}

#mm-hero-{{ section.id }} .mm-hero__stripes {
  position: absolute;
  height: 100%;
  z-index: 2;
  mix-blend-mode: normal;
  opacity: .9;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 989px) {
  #mm-hero-{{ section.id }} .mm-hero__grid {
    grid-template-columns: 1fr;
  }
  #mm-hero-{{ section.id }} .mm-hero__card {
    margin: 14px 0 8px 0;
    width: auto;
    transform: none;
    margin-right: 25px;
    margin-left: 25px;
  }
  #mm-hero-{{ section.id }} .mm-hero__badge {
    margin-bottom: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #mm-hero-{{ section.id }} .mm-hero__stripes {
    
  }
.mm-hero__wrap {
  padding-top: 100px;
}
  .mm-hero__media {
  transform: translateY(-64px);
  margin-bottom: -64px;
}
  .mm-hero__copy{
    padding-left: 20px;
    padding-right: 20px;
}
}


@media (min-width: 990px) {
  #mm-hero-{{ section.id }} {
    --mm-card-overlay-boost: clamp(70px, 9vw, 120px);
    --mm-media-gap: calc(var(--mm-card-padding) - var(--mm-card-overlay-boost));
  }
  #mm-hero-{{ section.id }} .mm-hero__media {
    transform: translateY(-68px);
    margin-bottom: -68px;
  }
  #mm-hero-{{ section.id }} .mm-hero__card {
    z-index: 4;
  }
}
/* END_SECTION:hero-section */

/* START_SECTION:benefits-row (INDEX:6) */
/* Marc Monomalist — Benefits Row */
/* Namespaced by section id at runtime */
[id^="mm-benefits-"].mm-benefits {
  background: var(--mm-bg, #fff);
  color: var(--mm-text, #111);
}

.mm-benefits__container {
  max-width: var(--mm-max, 1200px);
  margin: 0 auto;
  padding: var(--mm-pad, 56px) 20px;
  text-align: var(--mm-align, center);
}

.mm-benefits__heading {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.mm-benefits__subheading {
  color: var(--mm-muted, #5b5b5b);
  font-size: clamp(14px, 1.6vw, 18px);
  margin: 0 0 28px;
}

.mm-benefits__grid {
  display: grid;
  grid-template-columns: repeat(var(--mm-cols, 4), minmax(0, 1fr));
  gap: var(--mm-gap, 24px);
  align-items: start;
}

@media (max-width: 900px) {
  .mm-benefits__grid { --mm-cols: 2; }
}

@media (max-width: 540px) {
  .mm-benefits__grid { --mm-cols: 2; }
}

.mm-benefits__item { padding: var(--mm-card-pad, 0); }

.mm-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  line-height: 1;
}

.mm-benefits__emoji {
  font-size: var(--mm-icon, 40px);
  display: inline-block;
  transform: translateZ(0);
}

.mm-benefits__image {
  width: var(--mm-icon, 40px);
  height: var(--mm-icon, 40px);
  object-fit: contain;
}

.mm-benefits__title {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  margin: 0 0 6px;
}

.mm-benefits__text {
  color: var(--mm-muted, #5b5b5b);
  font-size: clamp(14px, 1.5vw, 17px);
  margin: 0;
}

/* Tighter vertical rhythm if enabled */
.mm-benefits--tight .mm-benefits__container { --mm-pad: 40px; }
/* END_SECTION:benefits-row */

/* START_SECTION:comparison-table (INDEX:14) */
.comparison-table-wrapper {
  position: relative;   /* ✅ makes side-images stay inside this section */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  box-sizing: border-box;
}


.comparison-table {
  max-width: 800px;
  background: #282828;
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  font-family: sans-serif;
  line-height: 1.3;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-auto-rows: auto;
}

.comparison-grid .cell {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 12px 5px;
  display: block;
}

.cell-header {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
  align-content: center;
}

.brand-logo {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.cell-feature {
  text-align: left;
  font-weight: 400;
  word-break: break-word;
  align-content: center;
}

.feature-description {
  font-size: 0.85em;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
  line-height: 1.4em;
}

.cell-check p {
  margin: 0;
}

.cell-check {
  text-align: center;
  align-content: center;
}

.highlight {
  border-radius: 0;
  align-content: center;
}

.check {
  font-size: 24px;
  color:#0cba0c;
}

.cross {
  font-size: 24px;
}

/* Mobile responsiveness */
@media(max-width: 700px) {
  .comparison-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
  .comparison-table {
    padding-left: 5px;
    padding-right: 5px;
  }
  .cell-header {
    font-size: small;
  }
}

.side-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 1s ease, opacity 1s ease;
}

.side-image img {
  max-width: 250px;
  height: auto;
}

/* Initial positions (off-screen) */
.side-image-left {
  left: 0;
  transform: translate(-100%, -50%);
}
.side-image-right {
  right: 0;
  transform: translate(100%, -50%);
}

/* Active state (in-view) */
.side-image-left.active {
  transform: translate(0, -50%);
  opacity: 1;
}
.side-image-right.active {
  transform: translate(0, -50%);
  opacity: 1;
}

/* Hide on mobile */
@media(max-width: 700px) {
  .side-image {
    display: none;
  }
}
/* END_SECTION:comparison-table */

/* START_SECTION:diffuser-preview (INDEX:21) */
.swatch-wrapper {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

.color-swatch-row,
.material-swatch-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}

.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.swatch-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.swatch.selected .swatch-circle {
  border-color: black;
}

.swatch-label {
  margin-top: 6px;
  font-size: 12px;
  color: #fff;
  text-shadow: 0 0 4px rgba(0,0,0,0.5);
  max-width: 80px;
  text-align: center;
}
/* END_SECTION:diffuser-preview */

/* START_SECTION:perfume-options-custom (INDEX:79) */
/* -- Styles -- */
.perfume-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.perfume-option-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.perfume-option-card.active {
  border-color: #006e63;
}
.perfume-option-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.perfume-option-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.perfume-option-text {
  display: flex;
  flex-direction: column;
}
.perfume-option-price {
  font-weight: bold;
}
.scent-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.scent-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: 6px;
}
.scent-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.scent-text {
  display: flex;
  flex-direction: column;
}
.scent-badge {
  font-size: 0.75rem;
  background: #eee;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.5rem;
}
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quantity-controls input {
  width: 40px;
  text-align: center;
}
.quantity-controls button {
  padding: 0.25rem 0.5rem;
}
.scent-add-button {
  background: black;
  color: white;
  padding: 0.25rem 0.75rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.hidden {
  display: none;
}
/* END_SECTION:perfume-options-custom */