/** Shopify CDN: Minification failed

Line 38:0 All "@import" rules must come first

**/
/* ============================================================
   LUXE — Black/Gold Perfume Store Design System
   Drop-in stylesheet for Shopify Dawn theme.
   Loaded once; every custom section below uses these tokens.
   ============================================================ */

:root {
  /* Black + white premium palette */
  --luxe-navy:       #111111;
  --luxe-teal:       #111111;
  --luxe-yellow:     #111111;
  --luxe-red:        #111111;

  --luxe-black:      #111111;
  --luxe-ink:        #111111;
  --luxe-charcoal:   #1f1f1f;
  /* brand-accent tokens -> black so existing rules adopt the black brand color */
  --luxe-gold:       #111111;
  --luxe-gold-soft:  #333333;
  --luxe-gold-dark:  #111111;
  --luxe-cream:      #f7f7f7;
  --luxe-white:      #ffffff;
  --luxe-muted:      #7b7b7b;
  --luxe-line:       #ebebeb;

  --luxe-serif: "Poppins", "Inter", "Helvetica Neue", Arial, sans-serif;
  --luxe-sans:  "Inter", "Poppins", "Helvetica Neue", Arial, sans-serif;

  --luxe-maxw: 1400px;
  --luxe-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
/* Load Palette fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');


/* ---- Base resets scoped to luxe sections ---- */
.luxe * { box-sizing: border-box; }
.luxe {
  font-family: var(--luxe-sans);
  color: var(--luxe-ink);
  -webkit-font-smoothing: antialiased;
}
.luxe-wrap { max-width: var(--luxe-maxw); margin: 0 auto; padding: 0 24px; }

.luxe-eyebrow {
  font-family: var(--luxe-sans);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--luxe-gold-dark);
  font-weight: 500;
  margin: 0 0 14px;
}
.luxe-title {
  font-family: var(--luxe-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0;
}
.luxe-h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.luxe-h2 { font-size: clamp(2rem, 4vw, 3rem); }
.luxe-sub {
  font-family: var(--luxe-sans);
  font-weight: 300;
  color: var(--luxe-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  max-width: 560px;
}

/* ---- Buttons ---- */
.luxe-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--luxe-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 34px;
  border: 1px solid var(--luxe-gold);
  background: var(--luxe-gold);
  color: var(--luxe-black);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--luxe-ease);
}
.luxe-btn:hover { background: transparent; color: var(--luxe-gold); }
.luxe-btn--ghost {
  background: transparent;
  color: var(--luxe-cream);
  border-color: var(--luxe-gold);
}
.luxe-btn--ghost:hover { background: var(--luxe-gold); color: var(--luxe-black); }
.luxe-btn--dark {
  background: var(--luxe-black); color: var(--luxe-cream); border-color: var(--luxe-black);
}
.luxe-btn--dark:hover { background: transparent; color: var(--luxe-black); }

/* ---- Section rhythm ----
   Every major section is at least one screen tall and vertically centres its
   content, giving a consistent premium "one section per scroll" cadence.
   Content taller than the screen (e.g. large product grids) simply grows with
   generous padding instead of being clipped. */
.luxe-section { padding: clamp(48px, 6vw, 80px) 0; }
.luxe-section > .luxe-wrap { width: 100%; }
.luxe-section--dark { background: var(--luxe-black); color: var(--luxe-cream); }
.luxe-section--cream { background: var(--luxe-cream); }
.luxe-center { text-align: center; }
.luxe-head { margin-bottom: clamp(32px, 4vw, 48px); }
.luxe-head.luxe-center .luxe-sub { margin-left: auto; margin-right: auto; }

/* ---- Announcement bar ---- */
.luxe-announce {
  background: var(--luxe-black);
  color: var(--luxe-gold-soft);
  font-family: var(--luxe-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 10px 16px;
  text-transform: uppercase;
}
.luxe-announce a { color: var(--luxe-white); text-decoration: underline; }

/* ---- Hero ---- */
.luxe-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: var(--luxe-black);
  overflow: hidden;
}
.luxe-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 1;
}
/* Base uniform darkening so text is always legible on any image */
.luxe-hero__veil {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.55);
}
/* Extra directional scrim toward the text side for stronger contrast */
.luxe-hero__inner { position: relative; z-index: 2; color: var(--luxe-cream); max-width: 640px; }
.luxe-hero__inner::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.35) 45%, transparent 75%);
  pointer-events: none;
}
.luxe-hero__inner .luxe-title { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.luxe-hero__inner .luxe-eyebrow { text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.luxe-hero__inner .luxe-sub { color: rgba(247,243,236,0.92); margin-top: 22px; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.luxe-hero__cta { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Collection cards (large, portrait, text below — like reference) ---- */
.luxe-collections {
  display: grid;
  /* Explicit columns per breakpoint — avoids auto-fit orphan rows (5+1, 3+1) */
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) { .luxe-collections { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 989px)  { .luxe-collections { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 749px)  { .luxe-collections { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.luxe-col-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.luxe-col-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: #f4f4f4;
  margin-bottom: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.luxe-col-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.7s var(--luxe-ease);
}
.luxe-col-card:hover .luxe-col-card__img { transform: scale(1.06); }
/* Title + caption always below the image (readable, works on mobile) */
.luxe-col-card__label { text-align: center; }
.luxe-col-card__label h3 {
  font-family: var(--luxe-sans); font-size: 1.35rem; font-weight: 600;
  color: #111111; margin: 0 0 5px; letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.luxe-col-card:hover .luxe-col-card__label h3 { color: var(--luxe-navy); }
.luxe-col-card__label span {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #999;
}

/* ---- Product grid / cards (Perfume Palette style) ---- */
.luxe-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px 18px;
}
/* Carousel variant: horizontal scroll */
.luxe-products--carousel {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  padding-bottom: 16px;
  scrollbar-width: thin;
}
.luxe-products--carousel .luxe-card {
  flex: 0 0 clamp(200px, 22vw, 250px);
  scroll-snap-align: start;
}
.luxe-products--carousel::-webkit-scrollbar { height: 6px; }
.luxe-products--carousel::-webkit-scrollbar-thumb { background: #d0d0d0; border-radius: 4px; }

.luxe-card {
  text-align: left;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--luxe-ease), transform 0.3s var(--luxe-ease);
}
.luxe-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.luxe-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #f6f6f4;
  overflow: hidden;
}
.luxe-card__media img,
.luxe-card__media .luxe-ph {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--luxe-ease);
}
.luxe-card:hover .luxe-card__media img { transform: scale(1.05); }
.luxe-ph {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f3f3f1, #e8e8e4);
  color: #888; font-size: 1rem; text-align: center; padding: 20px;
}
.luxe-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: #111111; color: #fff;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px;
}
.luxe-card__wish {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: #111111;
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.25s ease;
}
.luxe-card__wish:hover { background: #111111; color: #fff; }
.luxe-card__wish.is-active { background: #111111; color: #fff; }

.luxe-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.luxe-card__brand {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #999; margin: 0 0 6px;
}
.luxe-card__name {
  font-size: 0.98rem; font-weight: 500; color: #111111;
  margin: 0 0 8px; line-height: 1.35; text-decoration: none; display: block;
  min-height: 2.6em;
}
.luxe-card__name:hover { color: #111111; }
.luxe-card__price { font-size: 1rem; font-weight: 600; color: #111111; margin-bottom: 14px; }
.luxe-card__price del { color: #aaa; font-weight: 400; margin-right: 6px; }
.luxe-card__price ins { color: #111111; text-decoration: none; }
.luxe-card__form { margin-top: auto; }
.luxe-card__btn {
  display: block; width: 100%; text-align: center;
  margin-top: auto;
  background: #111111; color: #fff;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  padding: 12px 14px; border: 1px solid #111111; border-radius: 4px;
  cursor: pointer; text-decoration: none; transition: all 0.3s var(--luxe-ease);
}
.luxe-card__btn:hover { background: #fff; color: #111111; }
.luxe-card__btn--out { background: #f0f0f0; color: #999; border-color: #e0e0e0; cursor: default; }

/* ---- Trust strip ---- */
.luxe-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--luxe-navy);
}
/* Tablet: clean 2×2, no orphan row */
@media (min-width: 750px) and (max-width: 989px) {
  .luxe-trust { grid-template-columns: repeat(2, 1fr); }
  /* Suppress divider on the first item of each 2-col row */
  .luxe-trust__item:nth-child(2n + 1)::before { display: none; }
}
.luxe-trust__item {
  background: var(--luxe-navy); padding: 40px 24px; text-align: center;
  position: relative;
}
/* subtle divider between items */
.luxe-trust__item + .luxe-trust__item::before {
  content: ''; position: absolute; left: 0; top: 24%; bottom: 24%;
  width: 1px; background: rgba(255,255,255,0.14);
}
.luxe-trust__item svg {
  width: 34px; height: 34px; margin-bottom: 16px;
  stroke: #ffffff !important; fill: none; stroke-width: 1.5;
  display: inline-block;
}
.luxe-trust__item h4 {
  font-family: var(--luxe-sans); font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #ffffff; margin: 0 0 6px; font-weight: 600;
}
.luxe-trust__item p { font-size: 12.5px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }
@media (max-width: 749px) {
  .luxe-trust { grid-template-columns: repeat(2, 1fr); }
  .luxe-trust__item::before { display: none; }
  /* Tighter side padding on phones for more breathing room */
  .luxe-wrap { padding: 0 18px; }
}
/* Overflow safety — clip only the sections that can overflow (marquee, carousels).
   Do NOT put overflow-x on html/body: it breaks position:sticky and hurts scroll smoothness. */
.luxe-section { max-width: 100%; }
.luxe-rev-marq, .luxe-annc, .luxe-marquee, ul.product-grid.luxe-shelf { overflow-x: clip; }
/* Large screens: let content breathe a bit wider so ≥1920px isn't so empty */
@media (min-width: 1600px) { :root { --luxe-maxw: 1520px; } }

/* ---- FAQ ---- */
.luxe-faq { max-width: 820px; margin: 0 auto; }
.luxe-faq__item { border-bottom: 1px solid var(--luxe-line); }
.luxe-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--luxe-serif); font-size: 1.3rem; color: var(--luxe-ink);
  padding: 24px 40px 24px 0; position: relative;
}
.luxe-section--dark .luxe-faq__q { color: var(--luxe-cream); }
.luxe-faq__q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--luxe-gold); font-size: 1.6rem; transition: transform 0.3s var(--luxe-ease);
}
.luxe-faq__item[open] .luxe-faq__q::after { content: '\2212'; }
.luxe-faq__a {
  padding: 0 40px 26px 0; color: var(--luxe-muted); font-weight: 300; line-height: 1.8;
  font-size: 0.98rem;
}
.luxe-section--dark .luxe-faq__a { color: rgba(247,243,236,0.65); }

/* ---- Reviews ---- */
.luxe-reviews {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.luxe-review {
  background: var(--luxe-white); border: 1px solid #ececec; padding: 34px 30px;
}
.luxe-review__stars { color: var(--luxe-gold); letter-spacing: 3px; margin-bottom: 16px; }
.luxe-review__text {
  font-family: var(--luxe-serif); font-size: 1.25rem; line-height: 1.5;
  color: var(--luxe-ink); margin: 0 0 20px; font-style: italic;
}
.luxe-review__name { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--luxe-gold-dark); }

/* ---- Newsletter / CTA band ---- */
.luxe-cta-band { text-align: center; }
.luxe-cta-band .luxe-title { color: var(--luxe-white); }
.luxe-cta-band form {
  display: flex; gap: 0; max-width: 480px; margin: 30px auto 0; flex-wrap: wrap;
}
.luxe-cta-band input {
  flex: 1; min-width: 220px; background: transparent; border: 1px solid var(--luxe-line);
  color: var(--luxe-cream); padding: 16px 20px; font-family: var(--luxe-sans); font-size: 13px;
}
.luxe-cta-band input::placeholder { color: var(--luxe-muted); }

/* ---- Responsive ---- */
@media (max-width: 749px) {
  .luxe-hero { min-height: 78vh; }
  .luxe-hero__veil { background: linear-gradient(180deg, rgba(10,10,10,0.5), rgba(10,10,10,0.9)); }
  .luxe-head { margin-bottom: 36px; }
}
