/** Shopify CDN: Minification failed

Line 305:19 Unexpected "*"
Line 3973:63 Unexpected "*"

**/
/* =====================================================
   LUMISCENT - World-Class Luxury Perfume Theme v3
   Ultra-Premium E-Commerce Experience
   ===================================================== */

/* ============== DAWN OVERRIDE VARIABLES ============== */
:root {
  /* Force zero radius everywhere */
  --buttons-radius: 0px !important;
  --buttons-radius-outset: 0px !important;
  --inputs-radius: 0px !important;
  --inputs-radius-outset: 0px !important;
  --product-card-corner-radius: 0px !important;
  --collection-card-corner-radius: 0px !important;
  --blog-card-corner-radius: 0px !important;
  --badge-corner-radius: 0px !important;
  --popup-corner-radius: 0px !important;
  --variant-pills-radius: 0px !important;
  --media-radius: 0px !important;
  --text-boxes-radius: 0px !important;
  
  /* Force no image padding */
  --media-padding: 0px !important;
  --product-card-image-padding: 0rem !important;
  --collection-card-image-padding: 0rem !important;
  --blog-card-image-padding: 0rem !important;

  /* Force card borders off */
  --product-card-border-width: 0rem !important;
  --product-card-border-opacity: 0 !important;
  --collection-card-border-width: 0rem !important;
  --blog-card-border-width: 0rem !important;

  /* Force Dawn shadows off (we use our own) */
  --product-card-shadow-opacity: 0 !important;
  --product-card-shadow-visible: 0 !important;
  --collection-card-shadow-opacity: 0 !important;
  --blog-card-shadow-opacity: 0 !important;

  /* LumiScent Brand Palette */
  --lux-gold: #C8A96B;
  --lux-gold-light: #D4BC8A;
  --lux-gold-dark: #B08E4A;
  --lux-gold-glow: rgba(200, 169, 107, 0.25);
  --lux-gold-subtle: rgba(200, 169, 107, 0.08);
  --lux-black: #070707;
  --lux-charcoal: #1A1A1A;
  --lux-dark: #111111;
  --lux-surface: #111111;
  --lux-dark-gray: #333333;
  --lux-medium-gray: #666666;
  --lux-light-gray: #999999;
  --lux-pale: #F5E8D2;
  --lux-border: #e5e3de;
  --lux-border-light: #f0eeea;
  --lux-white: #FFFFFF;
  --lux-cream: #FAF8F5;
  --lux-warm-bg: #F8F6F3;
  --lux-warm-ivory: #F5E8D2;
  --lux-red: #c0392b;
  --lux-green: #27ae60;

  /* Typography */
  --font-display: var(--font-heading-family, 'Cormorant Garamond', Georgia, 'Times New Roman', serif);
  --font-body: var(--font-body-family, 'Jost', 'Helvetica Neue', Arial, sans-serif);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-luxury: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 0.2s ease;
  --t-smooth: 0.4s var(--ease-in-out);
  --t-elegant: 0.6s var(--ease-out-expo);
  --t-slow: 0.8s var(--ease-out-expo);
  --t-dramatic: 1s var(--ease-luxury);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 30px rgba(200,169,107,0.25);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 0 1px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);

  /* Boost Dawn font sizing */
  --font-heading-scale: 1.08 !important;
  --font-body-scale: 1.03 !important;
  font-size: 13px;
}

/* ============== PRELOADER ============== */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--lux-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.site-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__brand {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--lux-white);
  font-weight: 300;
  opacity: 0;
  animation: preloaderFadeIn 0.8s ease 0.2s forwards;
}
.preloader__line {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.6s ease 0.4s forwards;
}
.preloader__line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--lux-gold);
  animation: preloaderSlide 1.4s ease-in-out infinite;
}
@keyframes preloaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}
@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader {
    transition: none;
  }
  .preloader__brand,
  .preloader__line {
    animation: none !important;
    opacity: 1;
  }
  .preloader__line::after {
    animation: none;
    left: 0;
    width: 100%;
  }
}

/* ============== GLOBAL RESETS & BASE ============== */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  font-size: 1.4rem !important;
  color: var(--global-body-text-color, var(--lux-black));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 750px) {
  body { font-size: 1.5rem !important; }
}

/* Force our fonts on ALL headings */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5,
.hN {
  font-family: var(--font-display) !important;
  color: var(--global-heading-color, var(--lux-gold));
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h1, .h0, .h1 {
  font-weight: 700;
}

h2, .h2 {
  font-weight: 600;
}

h3, h4, h5, h6, .h3, .h4, .h5 {
  font-weight: 500;
}

.title,
.main-page-title,
.section-title,
.banner__heading,
.collection-hero__title {
  color: var(--global-heading-color, var(--lux-gold)) !important;
}

p, span, a, li, td, th, label, input, textarea, select, button {
  font-family: var(--font-body);
}

/* Improve text hierarchy: headings bold, descriptions/body normal */
p,
.rte,
.rte p,
.product__description,
.product__description p,
.card-information,
.card-information *:not(.card__heading):not(.card__heading *),
.product-option,
.article-card__excerpt {
  font-weight: 400 !important;
}

/* Consistent readable sizing across templates */
h1, .h0, .h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); }
h2, .h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); }
h3, .h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
p, li, .rte p { font-size: clamp(1.45rem, 1.55vw, 1.65rem); line-height: 1.7; }

a { transition: color var(--t-fast); }
img { display: block; max-width: 100%; }

::selection {
  background: var(--lux-gold);
  color: var(--lux-white);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--lux-pale); }
::-webkit-scrollbar-thumb { background: var(--lux-gold); }
::-webkit-scrollbar-thumb:hover { background: var(--lux-gold-dark); }

/* Force all border-radius to 0 */
.button,
.shopify-challenge__button,
button,
input,
select,
textarea,
.card,
.card__inner,
.badge,
.cart-notification,
.cart-drawer,
.global-media-settings,
.media,
img,
.field__input,
.select__select,
.customer input,
.customer select,
details[open] > summary ~ *,
.disclosure__list,
.popup-modal__content,
.modal__content {
  border-radius: 0 !important;
}

/* ============== PAGE WIDTH & SPACING ============== */
.page-width {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 750px) {
  .page-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 990px) {
  .page-width {
    padding-left: 56px;
    padding-right: 56px;
  }
}

/* Force more vertical spacing between sections */
.section-template--*-padding,
[class*="section-"] {
  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;
}

/* ============== LUXURY SECTION PATTERNS ============== */
.lux-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.lux-section-header .section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}
.lux-section-header h2 {
  font-family: var(--font-display) !important;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  line-height: 1.15;
  color: var(--lux-black);
}
@media screen and (min-width: 750px) {
  .lux-section-header h2 {
    font-size: 3rem;
  }
}
.lux-section-header .section-desc {
  font-size: 0.92rem;
  color: var(--lux-medium-gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
  margin: 24px auto 0;
}

/* ============== BUTTONS ============== */
.button,
.shopify-challenge__button,
button.shopify-payment-button__button,
.shopify-payment-button__button--unbranded {
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: all var(--t-smooth);
  position: relative;
  overflow: hidden;
  padding: 15px 38px;
}

.button--primary,
button[name="add"],
.product-form__submit,
.cart__checkout-button {
  background-color: var(--lux-black) !important;
  color: var(--lux-white) !important;
  border: 1.5px solid var(--lux-black) !important;
}
.button--primary:hover,
button[name="add"]:hover,
.product-form__submit:hover,
.cart__checkout-button:hover {
  background-color: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
  color: var(--lux-white) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.button--secondary {
  background-color: transparent !important;
  border: 1.5px solid var(--lux-black) !important;
  color: var(--lux-black) !important;
}
.button--secondary:hover {
  background-color: var(--lux-black) !important;
  color: var(--lux-white) !important;
  transform: translateY(-1px);
}

/* Luxury shimmer on hover */
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.7s ease;
  z-index: 1;
}
.button:hover::before {
  left: 100%;
}

/* ============== ANNOUNCEMENT BAR ============== */
/* Announcement bar uses inline styles in announcement-bar.liquid */

/* Gold line below announcement */
.shopify-section-group-header-group .announcement-bar-section {
  border-bottom: 1px solid rgba(200,169,107,0.15);
}

/* ============== HEADER ============== */
.section-header {
  border-bottom: 1px solid transparent !important;
  background: rgba(7, 7, 7, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s var(--ease-luxury);
}
/* Force dark header-wrapper (prevents white fallback if JSON color scheme fails) */
.section-header .header-wrapper {
  background: rgba(7, 7, 7, 0.97) !important;
}
.section-header .header-wrapper.gradient {
  background: rgba(7, 7, 7, 0.97) !important;
}

/* Keep black header on homepage and all templates */
.template-index .section-header,
.template-index .section-header .header-wrapper,
.template-index .section-header .header-wrapper.gradient,
.template-product .section-header,
.template-product .section-header .header-wrapper,
.template-collection .section-header,
.template-collection .section-header .header-wrapper,
.template-page .section-header,
.template-page .section-header .header-wrapper {
  background: rgba(7, 7, 7, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Solid header after scrolling past hero */
.scrolled-past-header .section-header,
.shopify-section-header-sticky .section-header {
  background: rgba(7, 7, 7, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 107, 0.12) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header--hidden.section-header {
  transform: translateY(-100%);
}
.header {
  padding: 12px 2rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}
@media screen and (min-width: 990px) {
  .header {
    padding: 14px 3rem !important;
  }
}

/* Push logo to far-left */
.header__heading {
  margin-right: 0 !important;
  flex-shrink: 0;
}

/* Navigation container - single line */
.header__inline-menu {
  flex: 1 1 auto;
  overflow: visible;
}
.header__inline-menu .list-menu--inline {
  flex-wrap: nowrap !important;
  white-space: nowrap;
  justify-content: center;
}

/* Icons area - don't shrink */
.header__icons {
  flex-shrink: 0;
}

/* Wider screens: loosen spacing */
@media screen and (min-width: 1200px) {
  .header__menu-item,
  .header__inline-menu .list-menu--inline > li > a,
  .mega-menu__link--level-1 {
    padding: 10px 14px !important;
    font-size: 0.84rem !important;
    letter-spacing: 0.13em !important;
  }
}

/* Logo styling */
.header__heading-link,
.header__heading-link span,
.header .h2 {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase;
  font-weight: 300 !important;
  color: var(--lux-gold) !important;
  text-shadow: 0 0 8px rgba(200, 169, 107, 0.3);
  transition: opacity var(--t-fast), color var(--t-fast);
}
.header__heading-link:hover {
  opacity: 0.65;
}
@media screen and (min-width: 990px) {
  .header__heading-link,
  .header__heading-link span,
  .header .h2 {
    font-size: 1.75rem !important;
    color: var(--lux-gold) !important;
  }
}
/* Logo image — show original, no filter */
.header__heading-logo {
  filter: none;
  transition: filter var(--t-fast);
}

/* Navigation links */
.header__menu-item,
.header__inline-menu .list-menu--inline > li > a,
.mega-menu__link--level-1 {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 12px !important;
  position: relative;
  transition: color var(--t-fast);
  color: var(--lux-gold) !important;
  text-shadow: 0 0 6px rgba(200, 169, 107, 0.2);
  white-space: nowrap;
}
.header__menu-item:hover,
.header__inline-menu .list-menu--inline > li > a:hover {
  color: var(--lux-gold-light) !important;
  text-shadow: 0 0 12px rgba(200, 169, 107, 0.4);
}

/* Gold underline animation on nav */
.header__menu-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--lux-gold);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
  transform-origin: center;
}
.header__menu-item:hover::after,
.header__menu-item[aria-expanded="true"]::after {
  transform: scaleX(1);
}

/* Header icons */
.header__icon {
  color: var(--lux-gold) !important;
  transition: color var(--t-fast);
}
.header__icon:hover {
  color: var(--lux-gold-light) !important;
  filter: drop-shadow(0 0 4px rgba(200, 169, 107, 0.4));
}
.header__icon .icon {
  width: 28px;
  height: 28px;
}
.header__icon--cart {
  position: relative;
}
.header__icon--cart .icon {
  width: 28px;
  height: 28px;
}
.cart-count-bubble {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lux-gold, #C8A96B);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 5px;
}

/* Cart badge */
.cart-count-bubble {
  background-color: var(--lux-gold) !important;
  color: var(--lux-white) !important;
  font-size: 0.62rem !important;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
}

/* Mega menu */
.mega-menu__content,
.header__submenu,
.mega-menu {
  background: var(--lux-black) !important;
  border-top: 1px solid rgba(200, 169, 107, 0.12) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4) !important;
}
.mega-menu__link {
  font-size: 0.88rem !important;
  font-weight: 400;
  padding: 7px 0 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color var(--t-fast), padding-left var(--t-fast);
  letter-spacing: 0.03em;
}
.mega-menu__link:hover {
  color: var(--lux-gold) !important;
  padding-left: 8px !important;
}

/* Mobile menu */
.menu-drawer {
  background: var(--lux-black) !important;
  max-width: 380px;
}
.menu-drawer__menu-item {
  font-size: 0.95rem !important;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 14px 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.75) !important;
}
.menu-drawer__menu-item:hover {
  color: var(--lux-gold) !important;
}
.menu-drawer__close-button {
  color: var(--lux-white);
}
.menu-drawer a {
  color: rgba(255, 255, 255, 0.6) !important;
}
.menu-drawer a:hover {
  color: var(--lux-gold) !important;
}

/* Prevent mobile menu overlap with hero/content */
@media screen and (max-width: 989px) {
  #Details-menu-drawer-container[open] > summary::before {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100vw;
    height: 100dvh !important;
    background: rgba(0, 0, 0, 0.55) !important;
    z-index: 9998 !important;
  }

  #Details-menu-drawer-container[open] > .menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    padding-top: var(--header-bottom-position, 64px) !important;
    z-index: 9999 !important;
    background: var(--lux-black) !important;
    background-image: none !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    isolation: isolate;
  }

  #Details-menu-drawer-container[open] .menu-drawer__inner-container,
  #Details-menu-drawer-container[open] .menu-drawer__navigation-container,
  #Details-menu-drawer-container[open] .menu-drawer__navigation,
  #Details-menu-drawer-container[open] .menu-drawer__utility-links {
    background: var(--lux-black) !important;
    background-image: none !important;
  }

  #Details-menu-drawer-container[open] .menu-drawer__navigation-container {
    min-height: calc(100dvh - var(--header-bottom-position, 64px));
  }

  /* Disable backdrop-filter when menu is open — it creates a containing block
     that traps the fixed-positioned drawer inside the header area */
  body:has(#Details-menu-drawer-container[open]) .section-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Elevate the entire header group above all page content when menu is open,
     so the fixed-positioned drawer isn't trapped by the header stacking context */
  body:has(#Details-menu-drawer-container[open]) .shopify-section-group-header-group {
    z-index: 9999 !important;
  }
  body:has(#Details-menu-drawer-container[open]) .section-header.shopify-section-group-header-group {
    z-index: 9999 !important;
  }

  body:has(#Details-menu-drawer-container[open]) {
    overflow: hidden;
  }
}

@media screen and (min-width: 990px) {
  .product-card-wrapper:hover .media.media--hover-effect > img:first-child:only-child,
  .product-card-wrapper:hover .media.media--hover-effect > img + img,
  .card:hover .media.media--hover-effect > img:first-child:only-child,
  .card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
    transform: none !important;
  }
}

/* Search */
.search-modal__form {
  border-bottom: 2px solid var(--lux-black);
}
.search-modal__input {
  font-family: var(--font-display) !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.04em;
}

/* ============== HERO / SLIDESHOW ============== */
.slideshow-component {
  margin-bottom: 0 !important;
}
.slideshow-component .banner {
  min-height: 500px !important;
}
@media screen and (min-width: 750px) {
  .slideshow-component .banner {
    min-height: 620px !important;
  }
}
@media screen and (min-width: 990px) {
  .slideshow-component .banner {
    min-height: 92vh !important;
    max-height: 900px;
  }
}

/* Hero image Ken Burns effect */
.slideshow .banner__media img,
.slideshow .banner__media .placeholder-svg {
  transition: transform 8s linear !important;
  will-change: transform;
}
.slideshow [data-current="true"] .banner__media img {
  transform: scale(1.08);
}

/* Hero text */
.slideshow .banner__heading {
  font-family: var(--font-display) !important;
  font-size: 3rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.1 !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 750px) {
  .slideshow .banner__heading {
    font-size: 4.5rem !important;
    letter-spacing: 0.08em !important;
  }
}
@media screen and (min-width: 990px) {
  .slideshow .banner__heading {
    font-size: 5.8rem !important;
    letter-spacing: 0.1em !important;
  }
}

.slideshow .banner__text,
.slideshow .banner__box > .banner__text {
  font-size: 1.05rem !important;
  font-weight: 300;
  max-width: 560px;
  letter-spacing: 0.06em;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  opacity: 0.9;
}
@media screen and (min-width: 750px) {
  .slideshow .banner__text {
    font-size: 1.15rem !important;
  }
}

/* Hero buttons */
.slideshow .banner__buttons {
  margin-top: 36px !important;
  gap: 16px;
}
.slideshow .banner__buttons .button {
  min-width: 200px !important;
  padding: 16px 42px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  border-width: 1.5px;
}
.slideshow .banner__buttons .button--secondary {
  border-color: rgba(255,255,255,0.5) !important;
  color: var(--lux-white) !important;
  background: transparent !important;
}
.slideshow .banner__buttons .button--secondary:hover {
  background: var(--lux-white) !important;
  border-color: var(--lux-white) !important;
  color: var(--lux-black) !important;
}

/* Hero overlay gradient */
.slideshow .banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.02) 40%,
    rgba(0,0,0,0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.slideshow .banner__content {
  z-index: 2;
  position: relative;
}

/* Slide transition */
.slideshow .banner__box {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s var(--ease-out-expo) 0.3s;
}
.slideshow [data-current="true"] .banner__box {
  opacity: 1;
  transform: translateY(0);
}

/* Slider dots */
.slider-counter {
  z-index: 10;
}
.slider-counter__link--dots .dot {
  background-color: rgba(255,255,255,0.35) !important;
  transition: all 0.4s ease;
  width: 8px !important;
  height: 8px !important;
}
.slider-counter__link--dots.active .dot,
.slider-counter__link--dots:hover .dot {
  background-color: var(--lux-gold) !important;
  transform: scale(1.4);
}

/* Scroll indicator */
.slideshow-component::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.6));
  animation: scrollPulse 2.5s ease infinite;
  z-index: 5;
  pointer-events: none;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ============== COLLECTION CARDS ROW ============== */
.collection-cards-row {
  padding: 48px 0 40px !important;
}
.collection-cards-row__header {
  text-align: center;
  margin-bottom: 36px;
}
.collection-cards-row__title {
  font-family: var(--font-display) !important;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}
.collection-cards-row__subtitle {
  font-size: 0.88rem;
  color: var(--lux-medium-gray);
  margin: 0;
  letter-spacing: 0.03em;
}

.collection-cards-row__scroll-wrapper {
  overflow: hidden;
}
.collection-cards-row__scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.collection-cards-row__scroll::-webkit-scrollbar { display: none; }

.collection-cards-row__card {
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 16px;
  transition: transform var(--t-elegant), box-shadow var(--t-elegant);
}
.collection-cards-row__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.collection-cards-row__image-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(155deg, var(--lux-charcoal) 0%, var(--lux-black) 100%);
}
.collection-cards-row__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}
.collection-cards-row__card:hover .collection-cards-row__image {
  transform: scale(1.12);
}
.collection-cards-row__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--lux-charcoal), var(--lux-black));
}
.collection-cards-row__placeholder .placeholder-svg {
  width: 50%;
  opacity: 0.15;
}

/* Overlay gradient */
.collection-cards-row__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0) 100%
  );
  transition: opacity var(--t-smooth);
}

/* Content */
.collection-cards-row__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(6px);
  transition: transform var(--t-elegant);
}
.collection-cards-row__card:hover .collection-cards-row__content {
  transform: translateY(0);
}
.collection-cards-row__name {
  color: var(--lux-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
}
.collection-cards-row__count {
  color: rgba(255,255,255,0.5);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

/* Gold line reveal on hover */
.collection-cards-row__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lux-gold);
  transform: scaleX(0);
  transition: transform var(--t-elegant);
  transform-origin: left;
  z-index: 3;
  border-radius: 0 0 16px 16px;
}
.collection-cards-row__card:hover::after {
  transform: scaleX(1);
}

/* ============== FEATURED COLLECTION ============== */
.section-featured-collection {
  padding: 72px 0 64px !important;
}

/* Alternate background for even sections */
.section-featured-collection:nth-of-type(even) {
  background-color: var(--lux-warm-bg);
}

.section-featured-collection .title-wrapper {
  text-align: center;
  margin-bottom: 16px;
}
.section-featured-collection .title-wrapper--no-heading {
  margin-bottom: 0;
}
.section-featured-collection .title {
  font-family: var(--font-display) !important;
  font-size: 2.6rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
  color: var(--lux-black);
}
@media screen and (min-width: 750px) {
  .section-featured-collection .title {
    font-size: 3rem !important;
  }
}

.section-featured-collection .collection__description {
  text-align: center;
  color: var(--lux-medium-gray);
  font-size: 1.02rem;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

/* Gold separator under title */
.section-featured-collection .title-wrapper::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
  margin: 20px auto 0;
}

/* View all button */
.section-featured-collection .collection__view-all {
  text-align: center;
  margin-top: 48px;
}
.section-featured-collection .collection__view-all a,
.section-featured-collection .button--link {
  display: inline-block;
  padding: 15px 52px;
  background: transparent;
  color: var(--lux-black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--lux-black);
  transition: all var(--t-smooth);
  position: relative;
  overflow: hidden;
}
.section-featured-collection .collection__view-all a:hover,
.section-featured-collection .button--link:hover {
  background: var(--lux-black);
  color: var(--lux-white);
  box-shadow: var(--shadow-md);
}

/* Desktop slider arrows */
.section-featured-collection .slider-button {
  border: 1px solid var(--lux-border) !important;
  background: var(--lux-white) !important;
  color: var(--lux-black) !important;
  box-shadow: none !important;
  width: 44px;
  height: 44px;
  transition: all var(--t-fast);
}
.section-featured-collection .slider-button:hover:not([disabled]) {
  border-color: var(--lux-gold) !important;
  color: var(--lux-gold) !important;
}

/* ============== PRODUCT CARDS (ParfumGroup-aligned) ============== */
.card-wrapper {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.product-grid .grid__item {
  display: flex;
}

.product-grid .product-card-wrapper {
  width: 100%;
  display: flex;
}

.product-grid .card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.card--standard .card__inner,
.card--media .card__inner {
  border: 1px solid #e8e8e8 !important;
  border-radius: 4px !important;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.card--standard:hover .card__inner,
.card--media:hover .card__inner {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #d0d0d0 !important;
}

/* Image zoom on hover */
.card--standard .media,
.card--media .media {
  transition: transform 0.5s ease;
}
.card--standard:hover .media,
.card--media:hover .media {
  transform: scale(1.03);
}

.product-card-wrapper .card__media,
.product-card-wrapper .card__media .media {
  background: #f8f8f8 !important;
}

/* -- Brand name (above product title) -- */
.card__brand {
  margin-bottom: 2px;
}
.card__brand-link {
  font-family: var(--font-body) !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.card__brand-link:hover {
  color: var(--lux-gold) !important;
}

/* -- Product title -- */
.card__heading a {
  font-family: var(--font-body) !important;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.card__heading {
  min-height: 2.6em;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}
.card__heading a:hover {
  color: var(--lux-gold);
}

/* -- Product type line -- */
.card__product-type {
  font-size: 0.74rem;
  color: #999;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}

/* -- Vendor (legacy conditional — hidden, brand replaces it) -- */
.card-information__text .visually-hidden + span,
.card-wrapper .caption-with-letter-spacing {
  display: none;
}

/* -- Rating row -- */
.card__rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.card__rating-row .rating {
  margin-top: 0;
}
.card__rating-row .rating-star {
  font-size: 0.78rem;
}
.card__rating-row .rating-text,
.card__rating-row .rating-count {
  font-size: 0.7rem;
  color: #888;
  margin: 0;
}
.rating { margin-top: 4px; }
.rating .icon-star { color: #e8a100; }

/* -- Price block (parfumgroup.de style) -- */
.card__price-block {
  margin-top: 4px;
}
.card__price-uvp {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1px;
}
.card__price-uvp-label {
  font-size: 0.68rem;
  color: #aaa;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card__price-uvp-amount {
  font-size: 0.82rem;
  color: #aaa;
  font-weight: 400;
  text-decoration: line-through;
}

.price .price-item--regular {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.price:not(.price--on-sale) .price-item--regular {
  text-decoration: none !important;
}
.price .price__sale .price-item--sale {
  color: #c0392b;
  font-weight: 700;
  font-size: 1.05rem;
}
.price .price__sale .price-item--regular,
.price .price-item--regular.price-item--last {
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.82rem;
}

/* Unit price (per liter etc.) */
.card__unit-price {
  font-size: 0.68rem;
  color: #999;
  margin-top: 2px;
  font-weight: 400;
}
.card__unit-price-separator {
  margin: 0 1px;
}

/* -- Sale badge -- */
.card__badge .badge {
  background: #c0392b !important;
  color: #fff !important;
  border-radius: 3px !important;
  padding: 4px 10px !important;
  font-size: 0.66rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none !important;
}

/* Luxury product badges */
.card-badge--bestseller {
  background: var(--lux-gold) !important;
  color: #fff !important;
}
.card-badge--new {
  background: #2ecc71 !important;
  color: #fff !important;
  border: none !important;
}
.card-badge--oud {
  background: #2C1810 !important;
  color: var(--lux-gold) !important;
}
.card-badge--long-lasting {
  background: #1a1a2e !important;
  color: #fff !important;
}
.card-badge--unisex {
  background: transparent !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
}

/* Scent family tag on cards */
.card__scent-family {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-top: 4px;
}

/* Discount percentage badge */
.card__discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c0392b;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  z-index: 4;
}

/* Quick add button — parfumgroup.de: appears on hover as overlay */
.quick-add__submit,
.card__content .quick-add__submit {
  border-radius: 4px !important;
  font-family: var(--font-body) !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: #1a1a1a !important;
  color: #fff !important;
  transition: all 0.25s ease;
  padding: 10px 16px;
}
.product-grid .quick-add {
  margin-top: auto;
}
.quick-add__submit:hover {
  background: var(--lux-gold) !important;
}

/* ============== BRAND SHOWCASE ============== */
.brand-showcase {
  padding: 80px 20px;
  background-color: var(--lux-cream);
  position: relative;
  overflow: hidden;
}
/* Decorative corner accents */
.brand-showcase::before,
.brand-showcase::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid var(--lux-gold);
  opacity: 0.15;
  pointer-events: none;
}
.brand-showcase::before {
  top: 40px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}
.brand-showcase::after {
  bottom: 40px;
  right: 40px;
  border-left: none;
  border-top: none;
}

.brand-showcase .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.brand-showcase .section-title {
  font-family: var(--font-display) !important;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  color: var(--lux-black);
}
@media screen and (min-width: 750px) {
  .brand-showcase .section-title {
    font-size: 2.8rem;
  }
}
.brand-showcase .section-subtitle {
  text-align: center;
  color: var(--lux-medium-gray);
  margin: 0 0 20px;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}
.brand-showcase .gold-sep {
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
  margin: 0 auto 48px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 989px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.brand-item {
  text-decoration: none;
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--lux-border);
  background: var(--lux-white);
  transition: all var(--t-elegant);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  position: relative;
}
/* Gold line on top */
.brand-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lux-gold);
  transform: scaleX(0);
  transition: transform var(--t-elegant);
  transform-origin: center;
}
.brand-item:hover::before {
  transform: scaleX(1);
}
.brand-item:hover {
  border-color: var(--lux-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.brand-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.6s var(--ease-out-expo);
}
.brand-item:hover .brand-logo img {
  filter: grayscale(0%);
  opacity: 1;
}
.brand-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lux-dark-gray);
  margin: 0;
  transition: color var(--t-fast);
}
.brand-item:hover .brand-name {
  color: var(--lux-gold-dark);
}
.view-all { text-align: center; }
.brand-showcase .button {
  display: inline-block;
  background: transparent;
  color: var(--lux-black);
  padding: 14px 44px;
  text-decoration: none;
  border: 1.5px solid var(--lux-black);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all var(--t-smooth);
}
.brand-showcase .button:hover {
  background: var(--lux-black);
  color: var(--lux-white);
}

/* ============== SHOP BY GENDER ============== */
.section-shop-by-gender {
  padding: 72px 0 !important;
}
.shop-by-gender__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 750px) {
  .shop-by-gender__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.shop-by-gender__card {
  overflow: hidden;
  position: relative;
}
.shop-by-gender__image-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
@media screen and (min-width: 750px) {
  .shop-by-gender__image-wrapper {
    aspect-ratio: 4 / 5;
  }
}
.shop-by-gender__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo);
}
.shop-by-gender__card:hover .shop-by-gender__image {
  transform: scale(1.08);
}
.shop-by-gender__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-by-gender__placeholder .placeholder-svg {
  width: 35%;
  opacity: 0.12;
}

.shop-by-gender__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.18) 50%,
    rgba(0,0,0,0.05) 100%
  );
  transition: all var(--t-slow);
}
.shop-by-gender__card:hover .shop-by-gender__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.08) 100%
  );
}

.shop-by-gender__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 36px;
  z-index: 2;
}
.shop-by-gender__title {
  color: var(--lux-white);
  font-family: var(--font-display) !important;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin: 0 0 24px;
}
@media screen and (min-width: 750px) {
  .shop-by-gender__title {
    font-size: 2.6rem;
  }
}

.shop-by-gender__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.shop-by-gender__link {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.shop-by-gender__link:hover {
  color: var(--lux-gold);
  transform: translateX(6px);
}
.shop-by-gender__link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--lux-gold);
  transition: width var(--t-smooth);
  display: inline-block;
}
.shop-by-gender__link:hover::before {
  width: 20px;
}
.shop-by-gender__cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--lux-white);
  color: var(--lux-black);
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t-smooth);
}
.shop-by-gender__cta:hover {
  background: var(--lux-gold);
  color: var(--lux-white);
  box-shadow: var(--shadow-gold);
}

/* Gold corner accent on gender cards */
.shop-by-gender__card::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-top: 1px solid rgba(200,169,107,0.4);
  border-left: 1px solid rgba(200,169,107,0.4);
  z-index: 3;
  transition: all var(--t-elegant);
  opacity: 0;
}
.shop-by-gender__card:hover::before {
  opacity: 1;
  width: 56px;
  height: 56px;
}

/* ============== TESTIMONIALS ============== */
.testimonials-section {
  padding: 88px 20px;
  background-color: var(--lux-black);
  color: var(--lux-white);
  position: relative;
  overflow: hidden;
}
/* Background texture */
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200,169,107,0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(200,169,107,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .section-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}
.testimonials-header h2 {
  font-family: var(--font-display) !important;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  color: var(--lux-white);
}
@media screen and (min-width: 750px) {
  .testimonials-header h2 {
    font-size: 2.8rem;
  }
}
.testimonials-header .gold-sep {
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
  margin: 20px auto;
}
.testimonials-header .overall-rating,
.testimonials-header .rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.testimonials-header .stars {
  color: var(--lux-gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
}
.testimonials-header .rating-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 990px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px 32px;
  transition: all var(--t-elegant);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,169,107,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* Gold top line */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--lux-gold), transparent);
  transform: scaleX(0);
  transition: transform var(--t-elegant);
  transform-origin: center;
}
.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--lux-gold);
  opacity: 0.25;
  margin-bottom: 12px;
  display: block;
}
.testimonial-card .testimonial-text,
.testimonial-card .review-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin: 0 0 auto;
  font-style: italic;
  padding-bottom: 24px;
}
.testimonial-card .testimonial-author {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial-card .author-stars {
  color: var(--lux-gold);
  font-size: 0.82rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}
.testimonial-card .author-name,
.testimonial-card .author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lux-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.testimonial-card .author-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

/* ============== FEATURED BLOG ============== */
.blog-posts {
  padding: 80px 0 !important;
}
.blog-posts .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.blog-posts .title {
  font-family: var(--font-display) !important;
  font-size: 2.6rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
}
/* Gold line under blog title */
.blog-posts .title-wrapper::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
  margin: 20px auto 0;
}

.article-card__image-wrapper {
  overflow: hidden;
}
.article-card__image {
  transition: transform 1s var(--ease-out-expo) !important;
}
.article-card:hover .article-card__image {
  transform: scale(1.06);
}
.article-card__title {
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.article-card__title a {
  text-decoration: none;
  color: var(--lux-black);
  transition: color var(--t-fast);
}
.article-card__title a:hover {
  color: var(--lux-gold);
}
.article-card__info {
  font-size: 0.78rem !important;
  color: var(--lux-light-gray) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============== RICH TEXT / SEO SECTION ============== */
.rich-text {
  padding: 80px 0 !important;
  background-color: var(--lux-warm-bg);
}
.rich-text__wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.rich-text__heading {
  font-family: var(--font-display) !important;
  font-size: 2.2rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
@media screen and (min-width: 750px) {
  .rich-text__heading {
    font-size: 2.6rem !important;
  }
}
.rich-text__text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--lux-medium-gray);
}

/* ============== TRUST BADGES ============== */
.trust-badges-section {
  padding: 64px 0;
  background: var(--lux-pale) !important;
  border-top: none;
  border-bottom: none;
  position: relative;
}
/* Subtle top/bottom borders */
.trust-badges-section::before,
.trust-badges-section::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lux-border), transparent);
}
.trust-badges-section::before { top: 0; }
.trust-badges-section::after { bottom: 0; }

.trust-badges-section .section-heading {
  text-align: center;
  margin-bottom: 16px;
}
.trust-badges-section .section-heading h2 {
  font-family: var(--font-display) !important;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0;
}
@media screen and (min-width: 750px) {
  .trust-badges-section .section-heading h2 {
    font-size: 2.6rem;
  }
}
.trust-badges-section .section-subheading {
  text-align: center;
  color: var(--lux-medium-gray);
  font-size: 1rem;
  margin-bottom: 44px;
}

.trust-badges__grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 0 0 auto;
  transition: transform var(--t-elegant);
}
.trust-badge:hover {
  transform: translateY(-6px);
}
.trust-badge__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-smooth);
}
.trust-badge:hover .trust-badge__icon {
  transform: scale(1.1);
}
.trust-badge__icon svg {
  width: 52px;
  height: 52px;
}
.trust-badge__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.trust-badge__icon .emoji-icon {
  font-size: 40px;
  line-height: 1;
}
.trust-badge__title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lux-black);
  margin: 0;
}
.trust-badge__desc {
  font-size: 0.88rem;
  color: var(--lux-medium-gray);
  margin: 0;
  letter-spacing: 0.03em;
}
@media (max-width: 749px) {
  .trust-badges__grid { gap: 32px; }
  .trust-badge { flex-basis: calc(50% - 32px); }
  .trust-badges-section { padding: 44px 0; }
}

/* ============== NEWSLETTER ============== */
.newsletter-perfume {
  padding: 88px 20px;
  text-align: center;
  background: var(--lux-black);
  color: var(--lux-white);
  position: relative;
  overflow: hidden;
}
.newsletter-perfume::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,169,107,0.05) 0%, transparent 60%);
  pointer-events: none;
}
/* Decorative border frame */
.newsletter-perfume__inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}
.newsletter-perfume__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}
.newsletter-perfume__title {
  font-family: var(--font-display) !important;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin: 0 0 0;
  line-height: 1.25;
  color: var(--lux-white);
}
@media screen and (min-width: 750px) {
  .newsletter-perfume__title {
    font-size: 2.8rem;
  }
}
.newsletter-perfume__divider {
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
  margin: 24px auto;
}
.newsletter-perfume__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 36px;
  line-height: 1.7;
}
.newsletter-perfume__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-perfume__input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 0;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: rgba(255,255,255,0.05);
  color: var(--lux-white);
  letter-spacing: 0.03em;
}
.newsletter-perfume__input:focus {
  border-color: var(--lux-gold);
  box-shadow: inset 0 0 0 1px var(--lux-gold);
}
.newsletter-perfume__input::placeholder {
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.newsletter-perfume__button {
  padding: 16px 32px;
  background: var(--lux-gold);
  color: var(--lux-black);
  border: 1px solid var(--lux-gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-smooth);
  white-space: nowrap;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.newsletter-perfume__button:hover {
  background: transparent;
  color: var(--lux-gold);
  border-color: var(--lux-gold);
}
.newsletter-perfume__privacy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  letter-spacing: 0.03em;
}
.newsletter-perfume__success {
  color: var(--lux-gold) !important;
  font-weight: 500;
  margin-bottom: 16px;
}
.newsletter-perfume__error {
  color: var(--lux-red) !important;
  font-weight: 500;
  margin-bottom: 16px;
}

/* ============== FOOTER ============== */
.footer {
  background-color: var(--lux-black) !important;
  color: rgba(255,255,255,0.6);
  padding-top: 64px !important;
}
.footer a {
  color: rgba(255,255,255,0.5) !important;
  transition: color var(--t-fast);
}
.footer a:hover {
  color: var(--lux-gold) !important;
}

/* 4-column grid layout */
.footer .footer__content-top {
  padding-bottom: 48px;
}
.footer .footer__blocks-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
@media screen and (min-width: 750px) {
  .footer .footer__blocks-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 48px;
  }
}
.footer .footer-block {
  width: 100% !important;
  max-width: 100% !important;
}

.footer .footer-block__heading,
.footer h2 {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--lux-white) !important;
  font-weight: 600;
  margin-bottom: 24px !important;
  padding-bottom: 0;
  border: none;
}
.footer .list-menu__item--link {
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.5) !important;
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
  padding: 5px 0 !important;
}
.footer .list-menu__item--link:hover {
  color: var(--lux-gold) !important;
  transform: translateX(4px);
}

.footer .footer-block__details-content {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Footer trust badges bar (parfumgroup.de style — prominent horizontal strip) */
.footer__trust-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
  margin-top: 8px;
  background: rgba(255,255,255,0.03);
}
.footer__trust-bar-inner {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  gap: 0;
  padding-bottom: 4px;
}
.footer__trust-item {
  flex: 0 0 auto;
  min-width: 110px;
  scroll-snap-align: start;
}
@media screen and (min-width: 750px) {
  .footer__trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow-x: visible;
  }
  .footer__trust-item {
    min-width: 0;
  }
}
.footer__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.3;
}
.footer__trust-item svg {
  flex-shrink: 0;
  color: var(--lux-gold);
  stroke: var(--lux-gold);
}

/* Contact email bar between columns and copyright */
.footer__contact-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  margin-top: 0;
}
.footer__contact-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 750px) {
  .footer__contact-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
}
.footer__brand-bottom-link {
  text-decoration: none;
}
.footer__brand-bottom-name {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--lux-white) !important;
}
.footer__social-bottom .footer__list-social--bottom {
  display: flex;
  gap: 12px;
}
.footer__social-bottom .list-social__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--lux-white) !important;
  transition: all var(--t-fast);
}
.footer__social-bottom .list-social__link:hover {
  background: var(--lux-gold);
  color: var(--lux-white) !important;
  transform: translateY(-3px);
}
.footer__email-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lux-gold) !important;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity var(--t-fast);
}
.footer__email-link:hover {
  opacity: 0.75;
  color: var(--lux-gold) !important;
}
.footer__email-icon {
  flex-shrink: 0;
  color: var(--lux-gold);
}

/* Hide the original social from the newsletter area since we moved it to contact bar */
.footer .footer-block--newsletter .footer__list-social {
  display: none;
}

.footer .copyright__content {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}
.footer .copyright__content a {
  color: rgba(255,255,255,0.4);
}
.footer .footer__content-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer .footer__content-bottom-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer .footer__column--info {
  flex-shrink: 0;
}
@media screen and (max-width: 749px) {
  .footer .footer__content-bottom-wrapper {
    justify-content: center;
    text-align: center;
  }
}
.footer .list-social__link {
  color: rgba(255,255,255,0.4) !important;
  transition: all var(--t-fast);
}
.footer .list-social__link:hover {
  color: var(--lux-gold) !important;
  transform: translateY(-3px);
}

/* Footer newsletter (parfumgroup.de style — prominent with discount callout) */
.footer .footer-block__newsletter {
  max-width: 480px;
}
.footer .footer-block--newsletter .footer-block__heading {
  font-size: 1.1rem !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 8px !important;
}
.footer .newsletter-form__field-wrapper input {
  background: rgba(255,255,255,0.06) !important;
  color: var(--lux-white) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
  padding: 14px 18px;
  font-size: 0.82rem;
}
.footer .newsletter-form__field-wrapper input::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer .newsletter-form__button {
  background: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
  border-radius: 4px !important;
  transition: all var(--t-fast);
}
.footer .newsletter-form__button:hover {
  background: var(--lux-white) !important;
  border-color: var(--lux-white) !important;
  color: var(--lux-black) !important;
}

/* Footer payment icons (parfumgroup.de style — larger, more visible) */
.footer .footer__payment {
  display: flex;
  justify-content: flex-end;
}
.footer .list-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.footer .list-payment__item {
  display: flex;
  align-items: center;
}
.footer .list-payment .icon {
  width: auto;
  height: 32px;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.footer .list-payment .icon:hover {
  opacity: 1;
}
@media screen and (max-width: 749px) {
  .footer .footer__payment {
    justify-content: center;
  }
  .footer .list-payment {
    justify-content: center;
  }
}





/* ============== CART DRAWER ============== */
.cart-drawer cart-count-bubble { /* 8 */
  
  background-color: var(--lux-white) !important;
  border-radius: 0 !important;
  max-width: 420px;
}
.cart-drawer__head {
  border-bottom: 1px solid var(--lux-border);
  padding: 20px 24px;
}
cart-drawer-items .cart-item {
  border-bottom: 1px solid var(--lux-border-light);
}
.cart-drawer .button {
  border-radius: 0 !important;
}

/* Cart drawer line-item alignment */
.cart-drawer .cart-item {
  grid-template-columns: 9.6rem minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 1.2rem;
}
.cart-drawer .cart-item__media {
  grid-column: 1;
  grid-row: 1 / 3;
}
.cart-drawer .cart-item__details {
  grid-column: 2;
  min-width: 0;
}
.cart-drawer .cart-item__details > * {
  max-width: none;
}
.cart-drawer .cart-item__name {
  font-size: 1.55rem !important;
  line-height: 1.35;
  word-break: break-word;
}
.cart-drawer .cart-item__totals {
  grid-column: 3;
}
.cart-drawer .cart-item__quantity {
  grid-column: 2 / -1;
}

/* Cart notification */
.cart-notification {
  border-radius: 0 !important;
  box-shadow: var(--shadow-xl);
}

/* ============== COLLECTION PAGE ============== */
.collection-hero {
  margin-bottom: 36px;
}
.collection-hero__title,
.collection .title {
  font-family: var(--font-display) !important;
  font-size: 2.8rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
}
@media screen and (min-width: 750px) {
  .collection-hero__title,
  .collection .title {
    font-size: 3.6rem !important;
  }
}

.facets__wrapper {
  border-bottom: 1px solid var(--lux-border);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.facets__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.facet-checkbox__text,
.facets__label-text {
  font-size: 0.82rem;
}
.active-facets__button {
  border-radius: 0 !important;
}

/* ============== PRODUCT PAGE ============== */
.product__title {
  font-family: var(--font-display) !important;
  font-size: 2.6rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.2;
}
@media screen and (min-width: 990px) {
  .product__title {
    font-size: 3.2rem !important;
  }
}
.product .price-item--regular,
.product .price-item {
  font-size: 1.2rem !important;
  font-weight: 500;
}
.product__text,
.product__description p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--lux-medium-gray);
}
.product-form__submit {
  border-radius: 0 !important;
  padding: 18px 56px !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  min-height: 52px;
}
.product-form__submit:hover {
  box-shadow: var(--shadow-gold);
}

/* Product media */
.product__media-item .media {
  border-radius: 0 !important;
}
.product__media-toggle {
  border-radius: 0 !important;
}

/* Variant picker */
.product-form__input label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============== BACK TO TOP ============== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--lux-black);
  color: var(--lux-white);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: all var(--t-smooth);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--lux-gold);
  border-color: var(--lux-gold);
  box-shadow: var(--shadow-gold);
}
.back-to-top svg {
  width: 16px;
  height: 16px;
}

/* ============== SCROLL ANIMATIONS ============== */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--lux-gold-glow); }
  50% { box-shadow: 0 0 0 10px transparent; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============== PROMO BANNER ============== */
.promo-banner-section { overflow: hidden; }
.promo-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}
@media screen and (min-width: 750px) {
  .promo-banner__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
}
.promo-banner__image-col {
  overflow: hidden;
  background: linear-gradient(155deg, var(--lux-charcoal), var(--lux-black));
}
.promo-banner__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}
.promo-banner-section:hover .promo-banner__image-col img {
  transform: scale(1.06);
}
.promo-banner__content-col {
  display: flex;
  align-items: center;
  padding: 52px 40px;
}
@media screen and (min-width: 750px) {
  .promo-banner__content-col {
    padding: 72px 64px;
  }
}
.promo-banner__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  margin-bottom: 18px;
  display: block;
  font-weight: 500;
}
.promo-banner__title {
  font-family: var(--font-display) !important;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 18px;
}
.promo-banner__text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--lux-medium-gray);
  margin-bottom: 32px;
}

/* ============== COLLECTION TABS ============== */
.collection-tabs__header { text-align: center; margin-bottom: 8px; }
.collection-tabs__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.collection-tabs__title {
  font-family: var(--font-display) !important;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0;
}
.collection-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 32px 0;
  border-bottom: 1px solid var(--lux-border);
}
.collection-tab__btn {
  background: none;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-medium-gray);
  cursor: pointer;
  position: relative;
  transition: color var(--t-fast);
}
.collection-tab__btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lux-gold);
  transform: scaleX(0);
  transition: transform var(--t-smooth);
}
.collection-tab__btn.active {
  color: var(--lux-black);
  font-weight: 600;
}
.collection-tab__btn.active::after {
  transform: scaleX(1);
}
.collection-tab__btn:hover { color: var(--lux-black); }

/* ============== INSTAGRAM FEED ============== */
.instagram-feed { padding: 64px 0; }
.instagram-feed__header {
  text-align: center;
  margin-bottom: 32px;
}
.instagram-feed__header .section-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.instagram-feed__header h2 {
  font-family: var(--font-display) !important;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0;
}
.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media screen and (min-width: 750px) {
  .instagram-feed__grid { grid-template-columns: repeat(6, 1fr); }
}
.instagram-feed__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.instagram-feed__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.instagram-feed__item:hover img { transform: scale(1.12); }
.instagram-feed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-smooth);
}
.instagram-feed__item:hover .instagram-feed__overlay { opacity: 1; }
.instagram-feed__overlay svg { width: 28px; height: 28px; color: var(--lux-white); }

/* ============== FRAGRANCE FINDER ============== */
.fragrance-finder { padding: 72px 0; }
.fragrance-finder__header { text-align: center; margin-bottom: 48px; }
.fragrance-finder__header .section-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.fragrance-finder__header h2 {
  font-family: var(--font-display) !important;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}
.fragrance-finder__header p {
  font-size: 0.92rem;
  color: var(--lux-medium-gray);
}
.fragrance-finder__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .fragrance-finder__grid { grid-template-columns: repeat(4, 1fr); }
}
.fragrance-finder__option {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--lux-border);
  transition: all var(--t-elegant);
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--lux-white);
}
.fragrance-finder__option:hover {
  border-color: var(--lux-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.fragrance-finder__option .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.fragrance-finder__option h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}
.fragrance-finder__option p {
  font-size: 0.82rem;
  color: var(--lux-medium-gray);
  margin: 0;
}

/* ============== VALUE PROPOSITIONS BAR ============== */
.value-props {
  background: var(--lux-black);
  padding: 18px 0;
  overflow: hidden;
}
.value-props__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.value-props__item {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.value-props__item .dot {
  width: 4px;
  height: 4px;
  background: var(--lux-gold);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== MISC DAWN OVERRIDES ============== */
/* Kill all Dawn's default border-radius */
.global-media-settings,
.global-media-settings .media {
  border-radius: 0 !important;
}

/* Override Dawn card shadows and borders */
.card--card,
.card--standard {
  --card-border-width: 0;
  --card-border-radius: 0;
}

/* Dawn's grid spacing */
.grid--2-col-tablet-down .grid__item,
.grid--3-col-desktop .grid__item,
.grid--4-col-desktop .grid__item {
  border-radius: 0;
}

/* Pagination */
.pagination__list .pagination__item a {
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 500;
}
.pagination__list .pagination__item--current {
  background: var(--lux-black) !important;
  color: var(--lux-white) !important;
  border-radius: 0 !important;
}

/* Form elements */
.field__input,
.select__select,
.customer input,
.customer select {
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  border-color: var(--lux-border) !important;
}
.field__input:focus,
.select__select:focus {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 0 0 1px var(--lux-gold) !important;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.breadcrumbs a { color: var(--lux-medium-gray); }
.breadcrumbs a:hover { color: var(--lux-gold); }

/* Quantity input */
.quantity {
  border-radius: 0 !important;
  border: 1px solid var(--lux-border);
}
.quantity__button {
  border-radius: 0 !important;
  color: var(--lux-dark-gray);
  transition: color var(--t-fast);
}
.quantity__button:hover {
  color: var(--lux-gold);
}

/* Shopify system */
.shopify-section { position: relative; }

/* Image with text */
.image-with-text__heading {
  font-family: var(--font-display) !important;
}
.image-with-text .image-with-text__media {
  border-radius: 0 !important;
}

/* Collapsible content / FAQ */
.collapsible-content__heading {
  font-family: var(--font-display) !important;
}
.accordion__title {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============== RESPONSIVE POLISH ============== */
@media screen and (max-width: 749px) {
  .slideshow .banner__heading {
    font-size: 2.6rem !important;
    letter-spacing: 0.04em !important;
  }
  .slideshow .banner__buttons .button {
    min-width: 150px !important;
    padding: 13px 28px !important;
    font-size: 0.72rem !important;
  }
  .section-featured-collection .title {
    font-size: 2.2rem !important;
  }
  .shop-by-gender__title {
    font-size: 2rem;
  }
  .testimonials-header h2 {
    font-size: 2.2rem;
  }
  .testimonials-grid {
    gap: 16px;
  }
  .newsletter-perfume__form {
    flex-direction: column;
    gap: 0;
  }
  .newsletter-perfume__input {
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: none;
  }
  .newsletter-perfume__button {
    width: 100%;
    padding: 16px;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slideshow .banner__heading {
    font-size: 3.8rem !important;
  }
}

/* ============== SMOOTH PAGE APPEARANCE ============== */
body {
  animation: bodyFadeIn 0.6s ease;
}
@keyframes bodyFadeIn {
  from { opacity: 0.92; }
  to { opacity: 1; }
}

/* ============== PREDICTIVE SEARCH ============== */
.predictive-search {
  border-radius: 0 !important;
  box-shadow: var(--shadow-xl) !important;
  border: 1px solid var(--lux-border) !important;
}
.predictive-search__item-heading {
  font-size: 0.82rem;
}
.predictive-search__item-stacked .predictive-search__item-heading {
  font-weight: 500;
}

/* ============== POPUP / MODAL ============== */
.popup-modal__content {
  border-radius: 0 !important;
  box-shadow: var(--shadow-xl);
}
.modal__content {
  border-radius: 0 !important;
}

/* ============== LOADING SPINNER ============== */
.loading__spinner circle {
  stroke: var(--lux-gold);
}

/* ============== FREE SHIPPING PROGRESS BAR ============== */
.free-shipping-bar {
  padding: 12px 20px;
  background: var(--lux-pale);
  border-bottom: 1px solid var(--lux-border-light);
}
.free-shipping-bar__inner {
  max-width: 100%;
}
.free-shipping-bar__text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--lux-dark-gray);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-align: center;
}
.free-shipping-bar__track {
  width: 100%;
  height: 4px;
  background: var(--lux-border);
  overflow: hidden;
}
.free-shipping-bar__fill {
  height: 100%;
  width: 0%;
  background: var(--lux-gold);
  transition: width 0.6s var(--ease-out-expo);
}
.free-shipping-bar--success .free-shipping-bar__text {
  color: var(--lux-green);
  font-weight: 600;
}

/* Cart drawer shipping bar */
.cart-drawer .free-shipping-bar {
  background: var(--lux-pale);
}

/* ============== STICKY ADD-TO-CART BAR ============== */
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--lux-white);
  border-top: 1px solid var(--lux-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  padding: 12px 0;
}
.sticky-atc-bar--visible {
  transform: translateY(0);
}
.sticky-atc-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-atc-bar__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
}
.sticky-atc-bar__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-atc-bar__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--lux-black);
}
.sticky-atc-bar__price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lux-dark-gray);
}
.sticky-atc-bar__btn {
  flex-shrink: 0;
  padding: 14px 36px;
  background: var(--lux-black);
  color: var(--lux-white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-smooth);
  white-space: nowrap;
}
.sticky-atc-bar__btn:hover {
  background: var(--lux-gold);
  box-shadow: var(--shadow-gold);
}
@media screen and (max-width: 749px) {
  .sticky-atc-bar__img { display: none; }
  .sticky-atc-bar__title { font-size: 0.82rem; }
  .sticky-atc-bar__btn { padding: 12px 24px; }
}

/* ============== RECENTLY VIEWED ============== */
.recently-viewed {
  padding: 64px 0;
  background: var(--lux-warm-bg);
  overflow: hidden;
}
.recently-viewed__header {
  text-align: center;
  margin-bottom: 40px;
}
.recently-viewed__eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lux-gold);
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}
.recently-viewed__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--lux-black);
  margin: 0;
}
.recently-viewed__scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.recently-viewed__scroll::-webkit-scrollbar { display: none; }

.recently-viewed__card {
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-elegant);
  overflow: hidden;
}

.recently-viewed__scroll > a {
  min-width: inherit;
  max-width: inherit;
}
.recently-viewed__card:hover {
  transform: translateY(-6px);
}
.recently-viewed__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--lux-pale);
  margin-bottom: 12px;
}
.recently-viewed__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.recently-viewed__card:hover .recently-viewed__img-wrap img {
  transform: scale(1.08);
}
.recently-viewed__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--lux-pale), var(--lux-border));
}
.recently-viewed__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.recently-viewed__name {
  font-weight: 400;
  color: var(--lux-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.recently-viewed__price {
  font-weight: 500;
  color: var(--lux-dark-gray);
}

/* ============== STOCK URGENCY ============== */
.stock-urgency {
  font-size: 0.85rem;
  color: var(--lux-red);
  font-weight: 500;
  padding: 8px 0;
  letter-spacing: 0.03em;
  animation: urgencyPulse 2s infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============== IDEALO MARKUP INDICATOR ============== */
[data-lux-marked] {
  /* Subtle transition for price changes */
  transition: color 0.3s ease;
}

/* ============== GENDER BADGES ============== */
.gender-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.gender-badge--men {
  background: #1a1a2e;
  color: #fff;
}
.gender-badge--women {
  background: #C8A96B;
  color: #fff;
}
.gender-badge--unisex {
  background: #fff;
  color: #1a1a2e;
  border: 1px solid #1a1a2e;
}

/* Position gender badge in card__badge container */
.card__badge .gender-badge {
  margin-top: 4px;
}

/* ============== FEATURED COLLECTION SECTION STYLING ============== */
.collection .title-wrapper {
  margin-bottom: 32px;
}
.collection .title {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}
.collection .collection__description {
  max-width: 600px;
  margin: 8px auto 0;
  color: var(--lux-dark-gray, #555);
  font-size: 0.92rem;
}

/* View All button */
.collection .button--simple,
.collection a.button {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   MICRO-INTERACTIONS (clean, parfumgroup.de aligned)
   ============================================================ */

/* Subtle card hover lift is already in the card block above */

/* Underline reveal on card title links */
.card__heading a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--lux-gold, #C8A96B);
  transition: width 0.3s ease;
}
.card__heading a:hover::after {
  width: 40%;
}

/* Button hover ripple effect */
.button--primary,
.shopify-payment-button__button--unbranded {
  position: relative;
  overflow: hidden;
}
.button--primary::after,
.shopify-payment-button__button--unbranded::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s, opacity 0.6s;
  opacity: 0;
}
.button--primary:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  width: 300px;
  height: 300px;
  opacity: 1;
}

/* Smooth fade-in for sections on scroll */
@keyframes luxFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-trigger.animate--slide-in {
  animation: luxFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

/* Price highlight pulse on sale */
.price--on-sale .price-item--sale {
  animation: pricePulse 2s ease-in-out infinite;
}
@keyframes pricePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Subtle parallax for hero images via CSS */
.banner__media img,
.video-hero__media video {
  will-change: transform;
}

/* Scent particle animation - decorative floating dots */
@keyframes scentFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}

/* Collection card border glow on hover */
.collection-card:hover,
.card:hover {
  box-shadow: 0 0 0 1px var(--lux-gold, #C8A96B), 0 8px 32px rgba(200,169,107,0.12);
}

/* Smooth image zoom on product page gallery */
.product__media-item img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.product__media-item:hover img {
  transform: scale(1.03);
}

/* Add to cart button success animation */
@keyframes cartSuccess {
  0% { transform: scale(1); }
  30% { transform: scale(0.95); }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Premium divider line */
.section-divider-lux {
  width: 48px;
  height: 1px;
  background: var(--lux-gold, #C8A96B);
  margin: 0 auto;
}

/* ============================================================
   LUXURY V4 ADDITIONS — DARK HEADER, MOBILE, SEARCH, CART
   ============================================================ */

/* Bigger cart icon for touch targets */
.header__icon .icon {
  width: 28px;
  height: 28px;
}
.header__icon--cart .icon {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 749px) {
  .header__icon .icon {
    width: 26px;
    height: 26px;
  }
}

/* Cart count badge — gold on dark */
.cart-count-bubble {
  background-color: var(--lux-gold) !important;
  color: var(--lux-black) !important;
  font-size: 0.62rem !important;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* Search modal — dark luxury */
.search-modal {
  background: var(--lux-black) !important;
  color: var(--lux-white) !important;
}
.search-modal__form {
  border-bottom: 1px solid rgba(200, 169, 107, 0.3);
}
.search-modal__input,
.search-modal .search__input {
  font-family: var(--font-display) !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.04em;
  color: var(--lux-white) !important;
  background: transparent !important;
}
.search-modal__input::placeholder,
.search-modal .search__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.search-modal__close-button {
  color: rgba(255, 255, 255, 0.5) !important;
}
.search-modal__close-button:hover {
  color: var(--lux-gold) !important;
}
.predictive-search {
  background: var(--lux-black) !important;
  border: 1px solid rgba(200, 169, 107, 0.15) !important;
  color: var(--lux-white) !important;
}
.predictive-search__item-heading {
  color: var(--lux-white) !important;
}
.predictive-search a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.predictive-search a:hover {
  color: var(--lux-gold) !important;
}

/* ---- Fix: predictive search mobile overlay ---- */
@media screen and (max-width: 749px) {
  .header__search details[open] > .search-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: var(--lux-black) !important;
    overflow-y: auto !important;
    display: flex;
    flex-direction: column;
  }
  .header__search details[open] > .search-modal .search-modal__content {
    padding: 12px 16px 0 !important;
    flex-shrink: 0;
  }
  .header__search details[open] > .search-modal .modal-overlay {
    display: none !important;
  }
  .header__search .predictive-search {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-height: none !important;
    border: none !important;
    box-shadow: none !important;
    overflow-y: auto !important;
    flex: 1;
  }
  .header__search .predictive-search__results-groups-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .header__search .predictive-search__item {
    padding: 0.6rem 1rem;
  }
  .header__search .predictive-search__item-heading {
    font-size: 0.82rem !important;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
  }
  .header__search .predictive-search__item .price {
    font-size: 0.82rem;
    margin-top: 2px;
  }
}

/* Mobile header drawer icon color */
header-drawer .header__icon {
  color: var(--lux-gold) !important;
}
.js .header__icon svg {
  fill: none;
}

/* Mobile header spacing */
@media screen and (max-width: 749px) {
  .header {
    padding: 10px 16px !important;
  }
  .header__heading-link,
  .header__heading-link span,
  .header .h2 {
    font-size: 1.2rem !important;
    letter-spacing: 0.2em !important;
    color: var(--lux-gold) !important;
  }
}

/* ============================================================
   MOBILE PRODUCT CARDS – parfumgroup.de aligned
   Compact 2-col grid, small fonts, prominent sale price,
   always-visible quick-add, no hover effects on touch.
   ============================================================ */
@media screen and (max-width: 749px) {

  /* ---- Grid: force 2-col on mobile (override slider/peek) ---- */
  .grid--2-col-tablet-down {
    gap: 8px !important;
  }
  .template-collection .product-grid,
  .section-featured-collection .collection__grid {
    row-gap: 8px !important;
    column-gap: 8px !important;
  }

  /* Override Dawn slider behavior — force proper 2-col grid on mobile */
  .product-grid.slider--tablet.grid--peek,
  .product-grid.slider.grid--peek,
  .section-featured-collection .slider--tablet.grid--peek {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .product-grid.slider--tablet.grid--peek .grid__item,
  .product-grid.slider.grid--peek .grid__item,
  .section-featured-collection .slider--tablet.grid--peek .grid__item {
    width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
    min-width: calc(50% - 4px) !important;
    flex: 0 0 calc(50% - 4px) !important;
    margin-left: 0 !important;
    box-sizing: border-box !important;
  }
  /* Also ensure non-slider grids are 2-col */
  .product-grid.grid--2-col-tablet-down .grid__item {
    width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
  }
  /* Hide slider arrows and counter on mobile when forcing grid */
  .section-featured-collection .slider-buttons {
    display: none !important;
  }

  /* ---- Card chrome ---- */
  .card--standard .card__inner,
  .card--media .card__inner,
  .product-grid .card,
  .section-featured-collection .card {
    border-radius: 3px !important;
  }

  /* ---- Product image: less padding on small screens ---- */
  .product-card-wrapper .card__media .media img,
  .section-featured-collection .product-card-wrapper .card__media .media img {
    padding: 8px !important;
  }

  /* ---- Card info area ---- */
  .card__information {
    padding: 8px 8px 10px !important;
  }

  /* Brand */
  .card__brand {
    margin-bottom: 1px;
  }
  .card__brand-link {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  /* Title – compact, 2-line clamp */
  .card__heading {
    min-height: 2.2em;
    margin-bottom: 1px;
  }
  .card__heading a {
    font-size: 0.76rem !important;
    line-height: 1.32 !important;
  }

  /* Product type */
  .card__product-type {
    font-size: 0.64rem;
    margin-bottom: 4px;
  }

  /* Rating row */
  .card__rating-row {
    gap: 3px;
    margin-bottom: 4px;
  }
  .card__rating-row .rating-star {
    font-size: 0.68rem;
  }
  .card__rating-row .rating-text,
  .card__rating-row .rating-count {
    font-size: 0.62rem;
  }

  /* UVP / strikethrough price */
  .card__price-uvp {
    margin-bottom: 0;
  }
  .card__price-uvp-label {
    font-size: 0.6rem;
  }
  .card__price-uvp-amount {
    font-size: 0.72rem;
  }

  /* Sale / main price */
  .card__price-block .price .price-item--regular,
  .card__price-block .price .price__sale .price-item--sale {
    font-size: 0.88rem;
  }
  .card__price-block .price .price__sale .price-item--regular {
    font-size: 0.68rem;
  }

  /* Unit price (per liter) */
  .card__unit-price {
    font-size: 0.6rem;
    margin-top: 1px;
  }

  /* ---- Badges ---- */
  .card__badge .badge {
    padding: 3px 6px !important;
    font-size: 0.58rem !important;
  }
  .card__discount-badge {
    top: 6px;
    right: 6px;
    padding: 2px 6px;
    font-size: 0.58rem;
  }

  /* ---- Quick-add: always visible, full-width, compact ---- */
  .quick-add__submit,
  .card__content .quick-add__submit {
    padding: 8px 10px;
    font-size: 0.64rem !important;
    letter-spacing: 0.04em;
    min-height: 34px;
  }

  /* ---- Disable hover effects on touch ---- */
  .card-wrapper:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .card--standard:hover .media,
  .card--media:hover .media {
    transform: none !important;
  }
}

/* Mobile collection page refinements (parfumgroup.de aligned) */
@media screen and (max-width: 749px) {

  /* Sort/filter bar: compact, sticky at top */
  .template-collection .facets-wrapper {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    padding: 8px 0;
    margin-top: 0 !important;
    border-bottom: 1px solid #e5e5e5;
  }

  .template-collection .facet-filters__label,
  .template-collection .facet-filters__field label {
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
  }

  .template-collection .facet-filters__sort,
  .template-collection .select__select {
    min-height: 36px;
    font-size: 0.78rem !important;
    padding: 6px 10px;
  }

  /* Hide product count ("81 Produkte") from filter bar */
  .template-collection .product-count,
  .template-collection .product-count-vertical,
  .template-collection .product-count-vertical .product-count__text {
    display: none !important;
  }

  /* Tighter product grid on mobile */
  .template-collection .product-grid {
    row-gap: 8px !important;
  }

  .template-collection .grid__item {
    padding-bottom: 0;
  }

  /* Active filter pills compact */
  .active-facets .active-facets__button {
    font-size: 0.68rem;
    padding: 4px 10px;
    min-height: auto;
  }

  /* Facets drawer/panel mobile */
  .facets__wrapper {
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
  .facets__label {
    font-size: 0.64rem;
  }
  .facet-checkbox__text,
  .facets__label-text {
    font-size: 0.72rem;
  }

  /* Collection title compact */
  .template-collection .collection-hero__title,
  .template-collection h1.title {
    font-size: 1.3rem !important;
    margin-bottom: 4px;
  }
  .template-collection .collection-hero__description {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }
}
.template-collection .collection-hero-lux + .section-template--*-padding {
  background: var(--lux-white);
}

/* Product page refinements for dark scheme parity */
.product__title {
  font-family: var(--font-display) !important;
  font-size: 2.4rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.2;
}
@media screen and (min-width: 990px) {
  .product__title {
    font-size: 3rem !important;
  }
}

/* Vendor label on product page */
.product__text.subtitle {
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--lux-gold) !important;
  font-weight: 600;
}

/* Price styling on product page */
.product .price-item--regular,
.product .price-item {
  font-size: 1.3rem !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Variant picker luxury */
.product-form__input--pill .product-form__input label {
  border: 1px solid var(--lux-border) !important;
  background: var(--lux-white) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lux-dark-gray) !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
}
.product-form__input--pill .product-form__input label:hover,
.product-form__input--pill .product-form__input input:checked + label {
  border-color: var(--lux-gold) !important;
  color: var(--lux-gold) !important;
}

/* Add to cart button — luxury gold on hover */
.product-form__submit {
  border-radius: 0 !important;
  padding: 18px 56px !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  min-height: 56px;
  background: var(--lux-black) !important;
  color: var(--lux-white) !important;
  border: 1.5px solid var(--lux-black) !important;
  transition: all 0.4s ease;
}
.product-form__submit:hover {
  background: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
  box-shadow: var(--shadow-gold);
}

/* Cart drawer — luxury upgrade */
.cart-drawer .drawer__inner { /* 8 */
  max-width: 420px;
  color: var(--lux-dark);
}
.cart-drawer .heading {
  font-family: var(--font-display) !important;
  letter-spacing: 0.06em;
}

/* Collapsible tabs on product page */
.accordion {
  border-top: 1px solid var(--lux-border);
}
.accordion summary {
  padding: 18px 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.accordion__content {
  padding-bottom: 20px;
}
.accordion__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--lux-medium-gray);
}

/* Smooth mobile scroll */
@media screen and (max-width: 749px) {
  html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
  
  /* Full-width video hero on mobile */
  .video-hero { margin: 0 !important; }
  
  /* Better touch targets */
  .header__icon { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  
  /* Mobile testimonials single column */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  
  /* Mobile fragrance quiz step icons bigger */
  .quiz__option { min-height: 52px; }
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--lux-gold) !important;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to content link */
.skip-to-content-link:focus {
  background: var(--lux-gold) !important;
  color: var(--lux-black) !important;
  border-radius: 0 !important;
}

/* Smooth reveal for images loaded lazily */
img[loading="lazy"] {
  transition: opacity 0.4s ease;
}

/* Performance: reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .site-preloader { display: none !important; }
}

/* Dark scheme for trust badges section */
.trust-badges-section {
  background: var(--lux-black) !important;
  color: var(--lux-white);
  padding: 72px 0;
}
.trust-badges-section::before,
.trust-badges-section::after {
  background: linear-gradient(to right, transparent, rgba(200, 169, 107, 0.12), transparent);
}
.trust-badges-section .section-heading h2 {
  color: var(--lux-white) !important;
}
.trust-badges-section .section-subheading {
  color: rgba(255, 255, 255, 0.5);
}
.trust-badge__title {
  color: var(--lux-white) !important;
}
.trust-badge__desc {
  color: rgba(255, 255, 255, 0.5);
}
.trust-badge__icon svg,
.trust-badge__icon {
  color: var(--lux-gold);
}

/* Brand showcase on dark bg */
.brand-showcase {
  background-color: var(--lux-surface, #111) !important;
  color: var(--lux-white);
}
.brand-showcase::before,
.brand-showcase::after {
  border-color: rgba(200, 169, 107, 0.12);
}
.brand-showcase .section-title {
  color: var(--lux-white) !important;
}
.brand-showcase .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}
.brand-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.brand-item:hover {
  border-color: var(--lux-gold);
  background: rgba(255, 255, 255, 0.06);
}
.brand-name {
  color: rgba(255, 255, 255, 0.7);
}
.brand-item:hover .brand-name {
  color: var(--lux-gold);
}
.brand-showcase .button {
  color: var(--lux-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.brand-showcase .button:hover {
  background: var(--lux-gold);
  border-color: var(--lux-gold);
  color: var(--lux-black);
}

/* Fragrance quiz section dark */
.fragrance-quiz-section {
  background: var(--lux-surface, #111) !important;
}

/* Featured collection alternating backgrounds */
.section-featured-collection:nth-of-type(even) {
  background-color: var(--lux-cream);
}

/* Shop by gender section */
.section-shop-by-gender {
  background: var(--lux-cream) !important;
}

/* ============================================================
   VISUAL CONSISTENCY PASS (CANONICAL OVERRIDES)
   ============================================================ */

/* Mini typography token map (single source of truth) */
:root {
  --type-step-h1: clamp(2.3rem, 4.2vw, 3.7rem);
  --type-step-h2: clamp(1.85rem, 2.35vw, 2.7rem);
  --type-step-h3: clamp(1.4rem, 1.8vw, 1.9rem);
  --type-step-body: clamp(1rem, 1.08vw, 1.14rem);
  --type-step-subtext: clamp(0.96rem, 1.02vw, 1.1rem);
  --type-line-heading: 1.18;
  --type-line-body: 1.66;

  /* Product image consistency tokens */
  --product-card-media-ratio: 133.333%;
  --product-image-fit: contain;
  --product-image-padding: 14px;
  --product-image-bg: #f8f8f8;
  --product-image-hover-scale: 1;
}

/* Typography lock for consistent hierarchy across templates */
body {
  font-size: 1.35rem !important;
  line-height: 1.65;
}

h1,
.h0,
.h1 {
  font-size: var(--type-step-h1) !important;
  line-height: var(--type-line-heading);
}

h2,
.h2 {
  font-size: var(--type-step-h2) !important;
  line-height: var(--type-line-heading);
}

h3,
.h3 {
  font-size: var(--type-step-h3) !important;
  line-height: 1.24;
}

p,
li,
.rte p,
.collection__description,
.rich-text__text p,
.newsletter-perfume__text {
  font-size: var(--type-step-body) !important;
  line-height: var(--type-line-body);
}

/* Section typography alignment: keep headings/descriptions consistent */
.collection-cards-row__title,
.section-featured-collection .title,
.brand-showcase .section-title,
.testimonials-header h2,
.blog-posts .title,
.rich-text__heading,
.trust-badges-section .section-heading h2,
.newsletter-perfume__title {
  font-size: var(--type-step-h2) !important;
  line-height: var(--type-line-heading) !important;
  letter-spacing: 0.04em !important;
}

.collection-cards-row__subtitle,
.section-featured-collection .collection__description,
.brand-showcase .section-subtitle,
.trust-badges-section .section-subheading,
.newsletter-perfume__text,
.rich-text__text p {
  font-size: var(--type-step-subtext) !important;
  line-height: 1.62 !important;
}

/* Prevent awkward trust badge title wrapping while keeping compact scale */
.trust-badge__title {
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  line-height: 1.34;
}

/* Canonical product card system (parfumgroup.de aligned) */
.product-grid .card,
.section-featured-collection .card,
.recently-viewed__card {
  border: 1px solid #e8e8e8 !important;
  border-radius: 4px !important;
  background: #fff;
  overflow: hidden;
}

.product-grid .card__inner,
.section-featured-collection .card__inner {
  border: 0 !important;
  box-shadow: none !important;
}

.product-card-wrapper .card__inner.ratio::before,
.section-featured-collection .product-card-wrapper .card__inner.ratio::before {
  content: none !important;
  padding-bottom: 0 !important;
}

/* Use a hard media frame instead of adaptive Dawn ratio */
.product-card-wrapper .card__inner.ratio,
.section-featured-collection .product-card-wrapper .card__inner.ratio,
.template-search .product-card-wrapper .card__inner.ratio,
.related-products .product-card-wrapper .card__inner.ratio {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.product-card-wrapper .card__media,
.product-card-wrapper .card__media .media,
.section-featured-collection .product-card-wrapper .card__media,
.section-featured-collection .product-card-wrapper .card__media .media {
  background: #f8f8f8 !important;
}

.product-card-wrapper .card__media .media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-wrapper .card__media .media img,
.section-featured-collection .product-card-wrapper .card__media .media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 14px !important;
  transform: none !important;
}

/* Anti-crop guardrail for all product-listing contexts */
.product-grid .product-card-wrapper .card__media .media img,
.template-search .product-card-wrapper .card__media .media img,
.related-products .product-card-wrapper .card__media .media img,
.section-featured-collection .product-card-wrapper .card__media .media img,
.recently-viewed__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Consistent media frame across all product listings */
.product-grid .product-card-wrapper .card__media,
.template-search .product-card-wrapper .card__media,
.related-products .product-card-wrapper .card__media,
.section-featured-collection .product-card-wrapper .card__media,
.recently-viewed__img-wrap {
  aspect-ratio: 3 / 4;
  background: #f8f8f8 !important;
}

.product-card-wrapper:hover .card__media .media img,
.section-featured-collection .product-card-wrapper:hover .card__media .media img {
  transform: scale(1) !important;
}

.product-grid .card__information,
.section-featured-collection .card__information {
  padding: 12px 14px 14px !important;
}

.product-grid .card__heading,
.section-featured-collection .card__heading {
  margin-bottom: 2px;
  min-height: 2.5em;
}

.product-grid .card__heading a,
.section-featured-collection .card__heading a {
  font-size: 0.92rem !important;
  line-height: 1.38 !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  color: #1a1a1a !important;
}

.product-grid .price,
.section-featured-collection .price {
  margin-top: 2px;
}

.product-grid .price .price-item,
.section-featured-collection .price .price-item {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.3;
}

.product-grid .price:not(.price--on-sale) .price-item--regular,
.section-featured-collection .price:not(.price--on-sale) .price-item--regular {
  text-decoration: none !important;
}

/* Hide the compare-at inside price snippet when our UVP block handles it */
.card__price-block .price--on-sale .price__sale .price-item--regular {
  display: none;
}

.product-grid .price .price__sale .price-item--regular,
.section-featured-collection .price .price__sale .price-item--regular {
  font-weight: 400 !important;
  color: #aaa !important;
}

.product-grid .quick-add,
.section-featured-collection .quick-add {
  margin-top: auto;
}

.product-grid .quick-add__submit,
.section-featured-collection .quick-add__submit {
  min-height: 38px;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
}

/* Collection page controls and rhythm */
.template-collection .facets-wrapper,
.template-collection .product-grid-container {
  margin-top: 12px;
}

.template-collection .facets-vertical-form,
.template-collection .facet-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.template-collection .facet-filters__label,
.template-collection .facet-filters__field label {
  font-size: 1.08rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.template-collection .facet-filters__sort,
.template-collection .select__select {
  min-height: 42px;
  font-size: 1.25rem !important;
}

/* Hide product count from filter bar on all breakpoints */
.template-collection .product-count,
.template-collection .product-count-vertical {
  display: none !important;
}

.template-collection .product-grid {
  row-gap: 22px !important;
}

.template-collection .grid__item {
  padding-bottom: 2px;
}

/* Collection cards row aligned to full-card visibility */
.collection-cards-row__scroll {
  gap: 16px;
}

@media screen and (min-width: 990px) {
  .collection-cards-row__scroll {
    overflow-x: hidden;
    scroll-snap-type: none;
  }

  .collection-cards-row__card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}

.collection-cards-row__card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: calc((100% - 64px) / 5);
  max-width: calc((100% - 64px) / 5);
}

@media screen and (max-width: 1199px) {
  .collection-cards-row__card {
    flex-basis: calc((100% - 48px) / 4);
    min-width: calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
  }
}

@media screen and (max-width: 989px) {
  .collection-cards-row__card {
    flex-basis: calc((100% - 32px) / 3);
    min-width: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}

/* Recently viewed aligned with card system */
.recently-viewed__scroll {
  gap: 16px;
}

@media screen and (min-width: 990px) {
  .recently-viewed__scroll {
    overflow-x: hidden;
    scroll-snap-type: none;
  }

  .recently-viewed__card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}

.recently-viewed__card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: calc((100% - 64px) / 5);
  max-width: calc((100% - 64px) / 5);
}

@media screen and (max-width: 1199px) {
  .recently-viewed__card {
    flex-basis: calc((100% - 48px) / 4);
    min-width: calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
  }
}

@media screen and (max-width: 989px) {
  .recently-viewed__card {
    flex-basis: calc((100% - 32px) / 3);
    min-width: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}

.recently-viewed__img-wrap {
  margin-bottom: 0;
  background: #f6f4f1;
}

.recently-viewed__img-wrap img {
  object-fit: var(--product-image-fit);
  object-position: center;
  padding: calc(var(--product-image-padding) + 2px);
}

.recently-viewed__info {
  padding: 12px 12px 14px;
  gap: 5px;
}

.recently-viewed__name {
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.38;
  white-space: normal;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recently-viewed__price {
  font-size: 1.22rem;
  font-weight: 600;
}

@media screen and (max-width: 749px) {
  .collection-cards-row__scroll {
    gap: 8px;
  }

  .collection-cards-row__card {
    flex-basis: calc((100% - 8px) / 2);
    min-width: calc((100% - 8px) / 2);
    max-width: calc((100% - 8px) / 2);
  }

  .recently-viewed__scroll {
    gap: 8px;
  }

  .recently-viewed__card {
    flex-basis: calc((100% - 8px) / 2);
    min-width: calc((100% - 8px) / 2);
    max-width: calc((100% - 8px) / 2);
  }

  .recently-viewed__name {
    font-size: 0.82rem;
  }

  .recently-viewed__price {
    font-size: 0.88rem;
  }
}

/* Product details tabs: keep Fragrance Details and Shipping/Returns compact */
.template-product .fragrance-details .details-title {
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: none !important;
  margin-bottom: 0.6rem;
}

.template-product .fragrance-details .detail-item label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
}

.template-product .fragrance-details .detail-item span {
  font-size: 1rem !important;
  line-height: 1.55;
}

.template-product .accordion summary,
.template-product .accordion .summary__title {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  padding: 0.9rem 0 !important;
}

.template-product .accordion .accordion__title {
  font-size: 1rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.template-product .accordion .svg-wrapper {
  height: 1.25rem !important;
  width: 1.25rem !important;
  margin-right: 0.75rem !important;
}

.template-product .accordion__content,
.template-product .accordion__content p,
.template-product .accordion__content li {
  font-size: 1.06rem !important;
  line-height: 1.62;
}

@media screen and (max-width: 749px) {
  .template-product .fragrance-details .details-title {
    font-size: 1.22rem !important;
  }

  .template-product .fragrance-details .detail-item label {
    font-size: 0.9rem !important;
  }

  .template-product .fragrance-details .detail-item span,
  .template-product .accordion summary,
  .template-product .accordion .summary__title,
  .template-product .accordion__content,
  .template-product .accordion__content p,
  .template-product .accordion__content li {
    font-size: 1rem !important;
  }
}
