@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   AURA LUX — COMPLETE CLEAN STYLESHEET
   ============================================= */

:root {
  --bg: #f6f0e6;
  --fg: #2c2218;
  --card: #fbf6ee;
  --muted: #e9dfce;
  --muted-fg: #7a6a55;
  --border: #dcc9a8;
  --gold1: #caa24a;
  --gold2: #8a6826;
  --gold-deep: #6b4f1d;
  --gradient-gold: linear-gradient(135deg, #d4a64f, #8a6826);
  --gradient-card: linear-gradient(145deg, #fdf9f1, #f1e6cf);
  --shadow-luxe: 0 20px 50px -20px rgba(120,80,30,.25);
  --shadow-card: 0 10px 30px -12px rgba(60,40,20,.18);
  --radius: 1rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.5; min-height: 100vh; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; color: inherit; border: none; }
h1,h2,h3,h4,.font-display { font-family: 'Cormorant Garamond', serif; letter-spacing: .01em; font-weight: 500; }

/* ── Utilities ── */
.text-gold { color: #F8E4A0 !important; }
.glass { background: rgba(251,246,238,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(220,201,168,.5); }
.eyebrow { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: transparent; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; margin-bottom: .4rem; display: inline-block; }
.muted { color: var(--muted-fg); }
.fade-in { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes shimmer-load { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Navbar ── */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 40; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; }
.brand-aura, .brand-lux { color: #d4af37 !important; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; letter-spacing: .04em; }

/* Mobile nav */
.menu-toggle { display: none; flex-direction: column; justify-content: space-around; width: 28px; height: 22px; cursor: pointer; z-index: 1000; }
.menu-toggle span { width: 100%; height: 2px; background: #2c2218; border-radius: 2px; transition: all .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav-links { display: none; gap: 1.25rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-fg); }
.nav-links a:hover { color: var(--fg); }

/* ── Splash ── */
.splash { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at center, #fdf6e8, #e9d9b4); transition: opacity .8s; }
.splash.fade { opacity: 0; pointer-events: none; }
.splash .inner { text-align: center; padding: 0 1.5rem; animation: fadeIn .6s ease both; }
.splash p.eyebrow { font-size: .7rem; letter-spacing: .5em; margin-bottom: 1.5rem; }
.splash h1 { font-size: 5rem; font-weight: 300; line-height: 1; background: linear-gradient(90deg,#8a6826,#e8c977,#8a6826); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 3s linear infinite; }
.splash hr { margin: 2rem auto 0; height: 1px; width: 8rem; background: var(--gradient-gold); opacity: .7; border: 0; }
.splash .tag { margin-top: 1.5rem; color: var(--muted-fg); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; }

/* ── Main container ── */
main { width: 100%; padding-top: 60px; }

/* ── HERO SPLIT ── */
.hero-split {
  display: flex;
  width: 100%;
  height: 100svh;
  min-height: 500px;
  padding-top: 0;
}
.hero-split-img {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 20;
}
.hero-dot {
  height: 4px; width: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,.4);
  transition: all .3s;
  cursor: pointer;
  padding: 0; border: none;
}
.hero-dot.active { width: 28px; background: #c9a96e; }

/* Right text panel */
.hero-split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2.5rem;
  background: var(--bg);
  gap: 1.25rem;
}
.hero-eyebrow {
  font-size: 9px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: #c9a96e;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c9a96e;
}
.hero-split-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -.01em;
}
.hero-split-title em {
  font-style: italic;
  background: linear-gradient(135deg,#d4a64f,#8a6826);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-split-sub {
  font-size: .82rem;
  color: var(--muted-fg);
  line-height: 1.9;
  border-left: 2px solid #c9a96e;
  padding-left: 1rem;
}

/* Animated branch SVG */
.hero-branch { width: 160px; opacity: .8; }
.branch-main {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawBranch 2s ease forwards .3s;
}
.branch-l1, .branch-l2, .branch-l3 {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.branch-l1 { animation: drawBranch .8s ease forwards 1.5s; }
.branch-l2 { animation: drawBranch .8s ease forwards 1.8s; }
.branch-l3 { animation: drawBranch .8s ease forwards 2.1s; }
.branch-dot { opacity: 0; animation: popDot .4s ease forwards 2.4s; }
.branch-dot:nth-child(5) { animation-delay: 2.5s; }
.branch-dot:nth-child(6) { animation-delay: 2.6s; }
@keyframes drawBranch { to { stroke-dashoffset: 0; } }
@keyframes popDot { to { opacity: 1; } }
/* ── Bottle Animation Strip ── */
.bottle-animation-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  background: linear-gradient(135deg, #1a1208, #2e1f0e, #1a1208);
  padding: 3rem 2rem;
  border-top: 1px solid #c9a96e22;
  border-bottom: 1px solid #c9a96e22;
  overflow: hidden;
}
.bottle-scene {
  position: relative;
  width: 120px;
  height: 200px;
  flex-shrink: 0;
}
.bottle-3d {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  animation: bottleFloat 3s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotateY(0deg); }
  25% { transform: translateX(-50%) translateY(-12px) rotateY(8deg); }
  75% { transform: translateX(-50%) translateY(-6px) rotateY(-8deg); }
}
.bottle-body { position: relative; display: flex; flex-direction: column; align-items: center; }
.bottle-cap {
  width: 22px; height: 18px;
  background: linear-gradient(135deg, #d4a64f, #8a6826);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 2px 8px rgba(212,166,79,.4);
}
.bottle-neck {
  width: 16px; height: 14px;
  background: linear-gradient(135deg, #c9a96e, #7a5a20);
  border-radius: 2px;
}
.bottle-glass {
  width: 70px; height: 100px;
  background: linear-gradient(135deg,
    rgba(212,166,79,.15) 0%,
    rgba(139,104,38,.3) 40%,
    rgba(212,166,79,.1) 100%);
  border: 1px solid rgba(212,166,79,.4);
  border-radius: 8px 8px 12px 12px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 2px 0 8px rgba(212,166,79,.1), 0 8px 32px rgba(139,104,38,.3);
}
.bottle-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(180deg, rgba(180,120,30,.4), rgba(120,70,15,.7));
  border-radius: 0 0 11px 11px;
  animation: liquidWave 3s ease-in-out infinite;
}
@keyframes liquidWave {
  0%, 100% { height: 65%; }
  50% { height: 62%; }
}
.bottle-shine {
  position: absolute;
  top: 8px; left: 8px;
  width: 12px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent);
  border-radius: 6px;
  transform: rotate(-10deg);
}
.bottle-shine-2 {
  position: absolute;
  top: 12px; left: 20px;
  width: 5px; height: 20px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
}
.bottle-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.bottle-brand {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: .55rem;
  letter-spacing: .3em;
  color: #e8c977;
  font-weight: 600;
}
.bottle-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: .45rem;
  letter-spacing: .25em;
  color: #c9a96e;
}
.bottle-shadow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 12px;
  background: radial-gradient(ellipse, rgba(139,104,38,.5), transparent);
  border-radius: 50%;
  animation: shadowPulse 3s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: .5; }
  25% { transform: translateX(-50%) scaleX(.7); opacity: .2; }
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: #c9a96e;
  opacity: 0;
  animation: particleRise 4s ease-in-out infinite;
}
.p1 { width: 4px; height: 4px; left: 20%; bottom: 30%; animation-delay: 0s; }
.p2 { width: 3px; height: 3px; left: 70%; bottom: 40%; animation-delay: .8s; }
.p3 { width: 5px; height: 5px; left: 40%; bottom: 20%; animation-delay: 1.6s; }
.p4 { width: 2px; height: 2px; left: 60%; bottom: 50%; animation-delay: 2.4s; }
.p5 { width: 3px; height: 3px; left: 30%; bottom: 60%; animation-delay: 3.2s; }
@keyframes particleRise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  30% { opacity: .7; }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}
.bottle-text-side {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 320px;
}
.bottle-strip-tag {
  font-size: 9px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: #c9a96e;
}
.bottle-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #f0e6d6;
  line-height: 1.15;
}
.bottle-strip-title em {
  font-style: italic;
  background: linear-gradient(135deg, #d4a64f, #e8c977);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bottle-strip-sub {
  font-size: .75rem;
  color: #7a6a55;
  letter-spacing: .15em;
}
@media (max-width: 768px) {
  .bottle-animation-strip { flex-direction: column; gap: 1.5rem; padding: 2.5rem 1.5rem; }
  .bottle-strip-title { font-size: 1.6rem; }
  .bottle-text-side { text-align: center; align-items: center; }
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .hero-split { flex-direction: column; height: auto; min-height: unset; }
  .hero-split-img { width: 100%; height: 55vw; min-height: 260px; }
  .hero-split-text { padding: 2rem 1.25rem; gap: 1rem; }
  .hero-split-title { font-size: 2.2rem; }
  .hero-branch { width: 120px; }
}
.lux-divider{
  width:100%;
  padding:1.75rem 0 1rem;
  display:flex;
  justify-content:center;
  align-items:center;
}

.lux-divider span{
  width:72%;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(184,138,53,.25),
    #b88a35,
    rgba(184,138,53,.25),
    transparent
  );

  position:relative;
}

.lux-divider span::before{
  content:"✦";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-55%);
  font-size:.9rem;
  color:#b88a35;
  background:#f5efe6;
  padding:0 1rem;
  letter-spacing:.2em;
}

.lux-divider + .section{
  padding-top:1.25rem;
}


/* ── Sections ── */

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.section-head h3 { font-size: 2rem; }
.section-head.luxury-intro { max-width: 72rem; margin-bottom: 3rem; }
.section-head.luxury-intro .luxury-intro-copy { margin-top: .75rem; max-width: 42rem; color: #d7cab5; font-size: 1rem; line-height: 1.9; }
.see-more, .see-all { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-fg); white-space: nowrap; flex-shrink: 0; }
.see-more:hover, .see-all:hover { color: var(--gold-deep); }

.luxury-showcase { position: relative; padding: 4rem 1.5rem; background: radial-gradient(circle at top right, rgba(207,180,113,.15), transparent 30%), linear-gradient(180deg, #0b0604 0%, #160f0a 48%, #0f0906 100%); overflow: hidden; }
.luxury-showcase::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,238,212,.12), transparent 30%); pointer-events: none; }
.luxury-showcase .section-head { color: #f6eedf; }
.luxury-showcase .section-head h3 { font-size: 3rem; letter-spacing: .16em; text-transform: uppercase; color: #f9f2e8; }
.luxury-showcase .eyebrow { color: #d2b882; letter-spacing: .35em; text-transform: uppercase; font-size: .75rem; margin-bottom: .75rem; }
.luxury-showcase .showcase-grid { display: grid; gap: 2.5rem; }
.showcase-block { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; border-radius: 2rem; overflow: hidden; position: relative; min-height: 420px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); box-shadow: 0 48px 110px rgba(0,0,0,.36); }
.showcase-block::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 60%); pointer-events: none; }
.showcase-block:hover { transform: translateY(-6px); transition: transform .35s ease, box-shadow .35s ease; box-shadow: 0 58px 130px rgba(0,0,0,.42); }
.showcase-block.reveal { opacity: 0; transform: translateY(30px); }
.showcase-block.visible { opacity: 1; transform: translateY(0); transition: opacity .9s ease, transform .9s ease; }
.showcase-block.reversed { grid-template-columns: .9fr 1.1fr; }
.showcase-block .showcase-image { position: relative; min-height: 420px; overflow: hidden; }
.showcase-block .showcase-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .8s ease; filter: brightness(.96) contrast(1.05); }
.showcase-block:hover .showcase-image img { transform: scale(1.04); }
.image-plate { position: absolute; top: 1.5rem; right: 2rem; width: 120px; height: 120px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); box-shadow: 0 18px 40px rgba(0,0,0,.18); pointer-events: none; }
.showcase-copy { position: relative; z-index: 1; padding: 3rem 3rem 3rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.showcase-block.reversed .showcase-copy { padding-left: 3rem; padding-right: 2rem; }
.showcase-block .showcase-label { color: #c3ab7d; text-transform: uppercase; letter-spacing: .35em; font-size: .8rem; font-weight: 700; }
.showcase-block h2 { margin: 0; font-size: 3rem; line-height: 1.02; letter-spacing: .03em; font-family: Georgia, serif; color: #fffdf4; }
.showcase-tagline { margin: 0; color: #e7d7bf; font-size: 1.1rem; font-style: italic; line-height: 1.5; }
.showcase-block p { margin: 0; max-width: 36rem; color: #d7c9b2; line-height: 1.9; font-size: .98rem; }
.showcase-cta { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: .95rem 1.8rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.04); color: #fff; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; font-size: .75rem; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.showcase-cta:hover { background: rgba(255,255,255,.12); border-color: #d4ac6e; transform: translateY(-1px); }
@media(max-width:960px) {
  .luxury-showcase { padding: 3rem 1.25rem; }
  .showcase-block, .showcase-block.reversed { grid-template-columns: 1fr; }
  .showcase-block .showcase-copy, .showcase-block.reversed .showcase-copy { padding: 2rem; }
  .showcase-block .showcase-image { min-height: 320px; }
  .showcase-block h2 { font-size: 2.4rem; }
}
@media(max-width:720px) {
  .section-head.luxury-intro { margin-bottom: 2rem; }
  .section-head.luxury-intro .luxury-intro-copy { font-size: .95rem; max-width: 100%; }
  .showcase-block { border-radius: 1.5rem; }
  .showcase-block .showcase-copy { padding: 1.75rem; }
  .showcase-block h2 { font-size: 2rem; }
  .showcase-block .showcase-cta { width: 100%; }
}
.cats { display: flex; gap: 1.25rem; overflow-x: auto; padding: 0 0 .75rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.cats::-webkit-scrollbar { display: none; }
.cat { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: .5rem; scroll-snap-align: start; }
.cat-circle { height: 90px; width: 90px; border-radius: 9999px; padding: 2px; background: var(--gradient-gold); flex-shrink: 0; }
.cat-circle > div { height: 100%; width: 100%; border-radius: 9999px; overflow: hidden; background: var(--card); }
.cat-circle img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s; }
.cat:hover .cat-circle img { transform: scale(1.1); }
.cat span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-fg); }
.cat:hover span { color: var(--fg); }

/* Limited offer campaign */
.aura-offer-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4.5rem 1.25rem 5rem;
  background: #f6f0e6;
  overflow: hidden;
}

.aura-offer-card {
  position: relative;
  min-height: 560px;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #3b0508;
  border: 1px solid rgba(201, 169, 110, .42);
  box-shadow: 0 36px 90px rgba(59, 5, 8, .22);
  isolation: isolate;
}

.aura-offer-card::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(201, 169, 110, .28);
  border-radius: 22px;
  z-index: 4;
  pointer-events: none;
}

.aura-offer-image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56%;
  opacity: 0;
  transition: transform 1.05s cubic-bezier(.2,.72,.2,1), opacity 1.05s ease;
  will-change: transform, opacity;
}

.aura-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

.aura-offer-image-left {
  left: 0;
  transform: translateX(-22%);
}

.aura-offer-image-left img {
  object-position: center;
}

.aura-offer-image-right {
  right: 0;
  transform: translateX(22%);
  transition-delay: .16s;
}

.aura-offer-image-right img {
  object-position: center;
}

.aura-offer-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background:
    radial-gradient(circle at 48% 44%, rgba(201, 169, 110, .22), transparent 32%),
    linear-gradient(90deg, rgba(12, 5, 5, .42), rgba(59, 5, 8, .72) 45%, rgba(6, 4, 4, .82)),
    rgba(0, 0, 0, .24);
  transition: opacity .9s ease .46s;
}

.aura-offer-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  color: #fffaf0;
  opacity: 0;
  transform: translateY(26px);
  transition: transform .85s ease .72s, opacity .85s ease .72s;
}

.aura-offer-kicker {
  margin-bottom: .9rem;
  color: #c9a96e;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.aura-offer-content h2 {
  max-width: 720px;
  color: #fffaf0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: .95;
}

.aura-offer-copy {
  max-width: 560px;
  margin-top: 1.2rem;
  color: rgba(255, 250, 240, .84);
  font-size: .98rem;
  line-height: 1.9;
}

.aura-offer-discount {
  margin-top: 1.6rem;
  color: #c9a96e;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aura-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 1.8rem;
  padding: .95rem 2rem;
  border: 1px solid rgba(201, 169, 110, .75);
  background: rgba(255, 250, 240, .08);
  color: #fffaf0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.aura-offer-cta:hover {
  background: #c9a96e;
  color: #1b0808;
  transform: translateY(-2px);
}

.aura-offer-section.is-visible .aura-offer-image {
  opacity: 1;
  transform: translateX(0);
}

.aura-offer-section.is-visible .aura-offer-overlay,
.aura-offer-section.is-visible .aura-offer-content {
  opacity: 1;
}

.aura-offer-section.is-visible .aura-offer-content {
  transform: translateY(0);
}

/* Signature perfume feature tiles */
.signature-featured-section {
  width: 100%;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem;
  background: #fdf8f0;
}

.signature-featured-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.signature-featured-head {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.signature-featured-head h2 {
  color: #2c2218;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .08em;
}

.signature-featured-head p {
  margin-top: .85rem;
  color: #7a6a55;
  font-size: .92rem;
  line-height: 1.7;
}

.signature-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.signature-featured-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(201, 169, 110, .28);
  background: #23140f;
  box-shadow: 0 22px 55px rgba(66, 39, 16, .14);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease, box-shadow .3s ease;
}

.signature-featured-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.signature-featured-card:nth-child(2) {
  transition-delay: .08s;
}

.signature-featured-card:nth-child(3) {
  transition-delay: .16s;
}

.signature-featured-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}

.signature-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(18, 9, 7, .32) 52%, rgba(18, 9, 7, .88) 100%);
  pointer-events: none;
}

.signature-featured-card:hover {
  box-shadow: 0 28px 70px rgba(66, 39, 16, .2);
}

.signature-featured-card:hover img {
  transform: scale(1.045);
}

.signature-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .48rem .72rem;
  border: 1px solid rgba(201, 169, 110, .34);
  border-radius: 999px;
  background: rgba(20, 12, 10, .78);
  color: #fffaf0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.signature-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.35rem;
}

.signature-card-copy h3 {
  color: #fffaf0;
  font-size: 2.15rem;
  line-height: 1;
}

.signature-card-copy p {
  margin-top: .55rem;
  color: rgba(255, 250, 240, .82);
  font-size: .88rem;
  line-height: 1.6;
}

.signature-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1rem;
  padding: .68rem 1rem;
  border: 1px solid rgba(201, 169, 110, .72);
  border-radius: 999px;
  color: #fffaf0;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.signature-featured-card:hover .signature-card-button {
  background: #c9a96e;
  color: #1d0f0d;
}

@media (max-width: 768px) {
  .signature-featured-grid {
    grid-template-columns: 1fr;
  }

  .signature-featured-card,
  .signature-featured-card img {
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aura-offer-image,
  .aura-offer-overlay,
  .aura-offer-content,
  .signature-featured-card,
  .signature-featured-card img {
    transition: none;
  }
}

@media (max-width: 768px) {
  .aura-offer-section {
    padding: 3rem 1rem 3.5rem;
  }

  .aura-offer-card {
    min-height: 620px;
    border-radius: 22px;
  }

  .aura-offer-card::before {
    inset: .75rem;
    border-radius: 17px;
  }

  .aura-offer-image {
    width: 100%;
    height: 56%;
  }

  .aura-offer-image-left {
    top: 0;
    bottom: auto;
    transform: translateX(-28%);
  }

  .aura-offer-image-right {
    top: auto;
    bottom: 0;
    transform: translateX(28%);
  }

  .aura-offer-overlay {
    background:
      linear-gradient(180deg, rgba(59, 5, 8, .54), rgba(8, 5, 5, .82) 48%, rgba(59, 5, 8, .64)),
      rgba(0, 0, 0, .22);
  }

  .aura-offer-content {
    padding: 2.4rem 1.4rem;
  }

  .aura-offer-kicker {
    font-size: .58rem;
    letter-spacing: .32em;
  }

  .aura-offer-copy {
    font-size: .9rem;
    line-height: 1.75;
  }

  .aura-offer-cta {
    width: min(100%, 250px);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ── Horizontal scroll (mobile) ── */
.hscroll { display: flex; gap: 1rem; overflow-x: auto; padding: 0 0 1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.hscroll::-webkit-scrollbar { display: none; }
.hscroll { scrollbar-width: none; -ms-overflow-style: none; }
.hscroll > * { flex-shrink: 0; scroll-snap-align: start; width: 210px; }
.combo-scroll > * { width: 280px; }
#comboScroll { scroll-behavior: smooth; }
#comboScroll::-webkit-scrollbar { height: 0 !important; }

/* ── Product Card ── */
.card {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
}

.card:hover {
  box-shadow: none;
  transform: none;
}

.card .img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0ebe0;
  border-radius: .75rem;
}

.card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card .body {
  padding: .6rem 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  background: transparent;
}

.card h4 {
  font-size: .85rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #2c2218;
}

.card .cat-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-fg);
}

.card .price {
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-buy {
  width: 100%;
  background: var(--gradient-gold);
  color: #fffaf0;
  border-radius: 9999px;
  padding: .65rem 0;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
}

.size-btn {
  transition: all .2s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.size-btn:hover:not(.active) {
  border-color: var(--gold1) !important;
}

.size-btn.active {
  box-shadow: 0 4px 12px rgba(202,162,74,.3) !important;
}

.btn-heart {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: rgba(251,246,238,.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #8a6826;
}

.btn-heart.liked {
  background: #fff0f0;
  border-color: #e88;
  color: #9f1f2d;
}

.btn-heart .heart-icon {
  width: 17px;
  height: 17px;
  display: block;
}

.btn-heart .heart-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-heart.liked .heart-icon path {
  fill: currentColor;
}

/* ── Combo Card ── */
.combo { min-width: 0; background: linear-gradient(180deg, rgba(255,250,244,.94), rgba(244,235,218,.9)); border: 1px solid rgba(181,146,87,.18); border-radius: 1.75rem; overflow: hidden; box-shadow: 0 20px 45px rgba(24,14,6,.14); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.combo:hover { transform: translateY(-6px); box-shadow: 0 28px 65px rgba(22,12,6,.22), inset 0 0 0 1px rgba(255,255,255,.12); border-color: rgba(210,170,104,.3); }
.combo .img-wrap { aspect-ratio: 5/6; overflow: hidden; background: rgba(0,0,0,.04); }
.combo .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .6s ease; filter: brightness(.95) contrast(1.05); }
.combo:hover .img-wrap img { transform: scale(1.04); }
.combo .body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.combo h4 { margin: 0; font-size: 1.05rem; line-height: 1.25; color: #2a2017; letter-spacing: .05em; text-transform: uppercase; font-family: 'Cormorant Garamond', serif; }
.combo .offer { display: inline-block; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; background: rgba(184,144,70,.14); color: #4f3d24; padding: .55rem .85rem; border-radius: 9999px; font-weight: 700; }
.combo .btn-buy { width: fit-content; margin-top: .65rem; padding: .95rem 1.5rem; border-radius: 999px; border: 1px solid rgba(156,113,49,.24); background: linear-gradient(135deg, #b99864, #7a5f2d); color: #fff; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.combo .btn-buy:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(43,25,7,.18); background: linear-gradient(135deg, #d2af71, #8f6d39); }
.combo .btn-buy:active { transform: scale(.98); }

/* ── Skeleton ── */
.skeleton { background: linear-gradient(90deg, var(--muted) 25%, var(--card) 50%, var(--muted) 75%); background-size: 200% 100%; animation: shimmer-load 1.5s infinite; border-radius: var(--radius); }
.skeleton-card { background: var(--gradient-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); width: 210px; flex-shrink: 0; }
.skeleton-img { width: 100%; aspect-ratio: 1/1; }
.skeleton-body { padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.skeleton-title { height: 18px; width: 70%; border-radius: 4px; }
.skeleton-sub { height: 12px; width: 40%; border-radius: 4px; }
.skeleton-btn { height: 36px; width: 100%; border-radius: 9999px; }

/* ── Botanical Strip ── */
.botanical-strip { background: #2e1f0e; padding: 4.5rem 1.25rem; }
.botanical-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; max-width: 900px; margin: 0 auto; }
.botanical-left, .botanical-right { flex: 1; max-width: 200px; opacity: .85; }
.botanical-text { text-align: center; white-space: nowrap; flex-shrink: 0; }
.botanical-tag { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: #c9a96e; margin-bottom: 4px; }
.botanical-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: #f0e6d6; }

/* ── Particles Strip ── */
.particles-strip { position: relative; height: 72px; background: linear-gradient(135deg,#1a1208,#2e1f0e); overflow: hidden; display: flex; align-items: center; justify-content: center; }
#particlesCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.particles-text { position: relative; z-index: 2; display: flex; align-items: center; gap: 1.5rem; white-space: nowrap; animation: scrollText 22s linear infinite; }
.particles-tag { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: #c9a96e; }
.particles-divider { color: #c9a96e; opacity: .5; font-size: 8px; }
@keyframes scrollText { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ── Luxury Strip ── */
.luxury-strip { background: linear-gradient(135deg,#1a1208,#2e1f0e,#1a1208); padding: 2.5rem 1.5rem; text-align: center; border-top: 1px solid #c9a96e44; border-bottom: 1px solid #c9a96e44; }
.luxury-strip .strip-tag { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: #c9a96e; display: block; margin-bottom: .5rem; }
.luxury-strip .strip-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: #f0e6d6; font-style: italic; display: block; }
.luxury-strip .strip-sub { font-size: 11px; color: #7a6a55; letter-spacing: 2px; text-transform: uppercase; margin-top: .5rem; display: block; }

/* ── Editorial Banner ── */
.editorial-banner { position: relative; width: 100%; height: 70vh; min-height: 320px; overflow: hidden; }
.editorial-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.editorial-banner .editorial-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to left, rgba(0,0,0,0.65) 30%, rgba(0,0,0,0.1) 100%); }
.editorial-banner .editorial-text { position: absolute; z-index: 2; bottom: 10%; right: 5%; text-align: right; color: #f0e6d6; max-width: 520px; }
.editorial-banner .editorial-tag { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: #c9a96e; margin-bottom: .75rem; display: block; }
.editorial-banner .editorial-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; line-height: 1.15; margin-bottom: 1.25rem; color: #fff; }
.editorial-banner .editorial-title em { font-style: italic; }
.editorial-banner .editorial-links { display: flex; gap: 2rem; justify-content: flex-end; flex-wrap: wrap; }
.editorial-banner .editorial-links a { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #f0e6d6; border-bottom: 1px solid #c9a96e88; padding-bottom: 2px; transition: color .3s; }
.editorial-banner .editorial-links a:hover { color: #c9a96e; }

/* ── Why Us ── */
.why-us{
  background:#ffffff !important;
  margin-top:3rem !important;
  padding:4rem 1.25rem 5rem !important;
  border-radius:40px 40px 0 0;
}

.why-us::before,
.why-us::after{
  display:none !important;
}

.why-us .section-head{
  max-width:1100px;
  margin:0 auto 2rem !important;
}

.why-grid{
  max-width:1100px;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

.why-card{
  background:#fffaf3 !important;
  border:1px solid #c9a96e !important;
  border-radius:18px !important;
  padding:2.5rem 2rem !important;
  text-align:center !important;
  box-shadow:0 14px 35px rgba(80,45,10,.08) !important;
}

@media(max-width:768px){
  .why-grid{
    grid-template-columns:1fr !important;
  }
}

/* ── Wishlist ── */
.wishlist-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 190; }
.wishlist-overlay.show { display: block; }
.wishlist-fab-count { background: #fff; color: var(--gold2); border-radius: 9999px; width: 18px; height: 18px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; writing-mode: horizontal-tb; }
.wishlist-sidebar { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--gradient-card); border-left: 1px solid var(--border); z-index: 200; transition: right .35s ease; display: flex; flex-direction: column; box-shadow: -8px 0 30px rgba(60,40,20,.15); }
.wishlist-sidebar.open { right: 0; }
.wishlist-header { padding: 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.wishlist-header h3 { font-size: 1.3rem; }
.wishlist-header h3 span { font-size: 1rem; color: var(--muted-fg); font-family: 'Inter', sans-serif; font-weight: 400; }
.wishlist-close { font-size: 1.4rem; color: var(--muted-fg); padding: 4px 8px; }
.wishlist-items { flex: 1; overflow-y: auto; padding: .75rem; display: flex; flex-direction: column; gap: .75rem; }
.wishlist-item { display: flex; align-items: center; gap: .75rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem; position: relative; }
.wishlist-item img { width: 56px; height: 56px; object-fit: cover; border-radius: .5rem; flex-shrink: 0; }
.wishlist-item-info { flex: 1; min-width: 0; }
.wishlist-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wishlist-item-price { font-size: .8rem; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-top: 2px; }
.wishlist-item-buy { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--gradient-gold); color: #fffaf0; border-radius: 9999px; padding: 5px 10px; margin-top: 6px; display: inline-block; border: none; font-family: 'Inter', sans-serif; cursor: pointer; }
.wishlist-item-remove { position: absolute; top: 6px; right: 8px; font-size: .9rem; color: var(--muted-fg); opacity: .6; }
.wishlist-item-remove:hover { opacity: 1; color: #c0392b; }
.wishlist-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted-fg); gap: .75rem; padding: 2rem; text-align: center; }
.wishlist-empty-icon { font-size: 2.5rem; opacity: .4; }
.wishlist-footer { padding: 1rem; border-top: 1px solid var(--border); }
.wishlist-footer p { font-size: .75rem; color: var(--muted-fg); text-align: center; margin-bottom: .75rem; }
.wishlist-wa-btn { display: block; width: 100%; padding: .85rem; background: var(--gradient-gold); color: #fffaf0; border-radius: 9999px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; text-align: center; font-weight: 600; border: none; font-family: 'Inter', sans-serif; cursor: pointer; }

/* ── Store page ── */
.store-main { padding: 2rem 1.25rem; max-width: 72rem; margin: 0 auto; }
.store-main .eyebrow { display: block; text-align: center; margin-top: 2rem; margin-bottom: .5rem; }
.store-main h1 { font-size: 2.4rem; text-align: center; margin-bottom: 1.5rem; }
.filters {
  background: #ffffff;
  border: 1px solid #D8C7A8;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(44, 34, 24, .06);
  padding: .9rem;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.filters input {
  width: 100%;
  min-height: 44px;
  background: #F8F5EE;
  border-radius: 6px;
  padding: .7rem .9rem;
  font-size: .9rem;
  border: 1px solid #D8C7A8;
  outline: none;
  color: #2C2218;
}
.filters input::placeholder { color: rgba(44, 34, 24, .55); }
.filters input:focus {
  background: #ffffff;
  border-color: #B8903F;
  box-shadow: 0 0 0 3px rgba(184, 144, 63, .14);
}
.chips {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  min-height: 34px;
  padding: .48rem .78rem;
  border-radius: 5px;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: none;
  border: 1px solid #D8C7A8;
  color: #2C2218;
  background: #ffffff;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  cursor: pointer;
}
.chip:hover {
  border-color: #B8903F;
  background: #F8F5EE;
}
.chip.active {
  background: #B8903F;
  color: #ffffff;
  border-color: #B8903F;
  box-shadow: 0 5px 14px rgba(184, 144, 63, .22);
}
.chip.price { color: #B8903F; background: #ffffff; border-color: #D8C7A8; pointer-events: none; }
.price-filter {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding-top: .7rem;
  margin-top: .2rem;
  width: 100%;
  border-top: 1px solid rgba(216, 199, 168, .65);
}
.price-inputs {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.price-inputs input {
  width: 92px;
  min-height: 38px;
  padding: .52rem .6rem;
  border: 1px solid #D8C7A8;
  border-radius: 5px;
  font-size: .8rem;
  background: #ffffff;
  color: #2C2218;
}
.price-inputs input:focus {
  outline: none;
  border-color: #B8903F;
  box-shadow: 0 0 0 3px rgba(184, 144, 63, .12);
}
.price-inputs span { color: rgba(44, 34, 24, .55); font-size: .8rem; }
#priceSizeFilter {
  min-height: 38px;
  padding: .52rem 2rem .52rem .65rem;
  border: 1px solid #D8C7A8;
  border-radius: 5px;
  font-size: .8rem;
  background: #ffffff;
  color: #2C2218;
  cursor: pointer;
}
#priceSizeFilter:focus {
  outline: none;
  border-color: #B8903F;
  box-shadow: 0 0 0 3px rgba(184, 144, 63, .12);
}
.product-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.empty { text-align: center; color: var(--muted-fg); padding: 5rem 0; }
.load-more-wrap { text-align: center; margin-top: 1.5rem; }
.btn-load { background: var(--gradient-gold); color: #fffaf0; padding: .85rem 2rem; border-radius: 9999px; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; border: none; cursor: pointer; }
.count { text-align: center; font-size: .75rem; color: var(--muted-fg); margin-top: 1.5rem; }

/* ── Scroll to top ── */
#scrollTopBtn { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 9999px; background: var(--gradient-gold); color: #fff; font-size: 1.2rem; display: none; align-items: center; justify-content: center; z-index: 50; box-shadow: var(--shadow-luxe); cursor: pointer; border: none; }
#scrollTopBtn.visible { display: flex; }

/* ── Footer ── */
footer { background: #1a1208; margin-top: 0; }
footer * { color: #9a8878; }
.foot-grid { padding: 3rem 1.25rem; max-width: 64rem; margin: 0 auto; display: grid; gap: 2.5rem; }
.foot-brand { font-size: 1.9rem; color: #f0e6d6 !important; -webkit-text-fill-color: #f0e6d6 !important; }
.foot-grid .gold-link { color: #c9a96e !important; -webkit-text-fill-color: #c9a96e !important; background: none !important; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; display: block; }
.foot-bottom { text-align: center; font-size: .75rem; color: #4a3f35 !important; padding: 1.5rem; border-top: 1px solid #2a2016; }

/* ============================================
   MOBILE — max-width: 768px
   ============================================ */
@media (max-width: 768px) {
  /* Navbar */
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0;
    width: 100%;
    background: #fdf8f0;
    border-top: 1px solid var(--border);
    padding: .5rem 0;
    box-shadow: 0 10px 20px rgba(60,40,20,.1);
    z-index: 999;
  }
  .nav-links.active { display: flex !important; }
  .nav-links a { padding: .85rem 1.5rem; font-size: .8rem; letter-spacing: .15em; border-bottom: 1px solid var(--border); color: var(--fg); text-transform: uppercase; }

  /* Hero */
  .hero-content { width: 75%; bottom: 6%; }
  .hero-title { font-size: 1.6rem !important; line-height: 1.15 !important; margin-bottom: .75rem !important; }
  .hero-subtitle { font-size: .65rem !important; }
  .btn-primary { padding: .7rem 1.5rem !important; font-size: .65rem !important; }

  /* Sections */
  .section { padding: 2.5rem 1.25rem; }
  .section-head h3 { font-size: 1.6rem; }

  /* Fix card image ratio on mobile */
  .card .img-wrap { aspect-ratio: 1/1 !important; }

  /* Cards horizontal scroll on mobile */
  .hscroll { display: flex !important; overflow-x: auto !important; }
  #comboScroll > * { width: 80vw !important; max-width: 290px !important; flex-shrink: 0 !important; }
  #comboScroll .combo { width: 100% !important; min-width: 0 !important; }

  /* Categories */
  .cats { flex-wrap: nowrap; justify-content: flex-start; }
  .cat-circle { height: 78px !important; width: 78px !important; }
  .cat span { font-size: .6rem !important; }

  /* Editorial banners */
  .editorial-banner { height: 72vw; min-height: 260px; }
  .editorial-banner .editorial-overlay { background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
  .editorial-banner .editorial-text { bottom: 6%; right: 4%; left: 4%; text-align: left; max-width: 100%; }
  .editorial-banner .editorial-title { font-size: 1.3rem !important; line-height: 1.2 !important; margin-bottom: .5rem !important; }
  .editorial-banner .editorial-links { justify-content: flex-start; gap: 1rem; }
  .editorial-banner .editorial-links a { font-size: 8px !important; }

  /* Luxury strips */
  .luxury-strip { padding: 1.75rem 1.25rem; }
  .luxury-strip .strip-quote { font-size: 1.2rem; }

  /* Botanical strip */
  .botanical-left, .botanical-right { display: none; }
  .botanical-text { white-space: normal; }

  /* Price filter mobile */
  .filters {
    padding: .75rem;
    gap: .65rem;
    border-radius: 7px;
    margin-bottom: 1rem;
  }
  .filters input {
    min-height: 42px;
    padding: .65rem .75rem;
    font-size: .85rem;
  }
  .chips {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: visible;
    padding-bottom: .2rem;
  }
  .chip {
    min-height: 32px;
    padding: .42rem .7rem;
    font-size: .7rem;
    white-space: nowrap;
  }
  .price-filter {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    align-items: stretch;
    padding-top: .65rem;
    margin-top: .25rem;
  }
  .price-inputs {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: .45rem;
    width: 100%;
  }
  .price-inputs input {
    width: 100%;
    min-height: 38px;
    padding: .5rem .55rem;
    font-size: .78rem;
  }
  .price-inputs span {
    color: rgba(44, 34, 24, .5);
    font-size: .75rem;
  }
  #priceSizeFilter {
    width: 100%;
    min-height: 38px;
    padding: .5rem .6rem;
    font-size: .78rem;
  }
  .particles-strip { height: 60px; }
  .particles-tag { font-size: 8px; letter-spacing: 2px; }

  /* Why cards */
  .why-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .why-card { padding: 1.5rem 1rem; }

  /* About */
  .about-text { padding: 1.25rem !important; }
  .about-text h4 { font-size: 1rem !important; letter-spacing: .01em !important; }
  .about-text p { font-size: .72rem !important; line-height: 1.7 !important; }
  .about-img { min-height: 300px; }

#wlFabDesktop { display: none !important; }

  /* Wishlist full width */
  .wishlist-sidebar { width: 100% !important; right: -100% !important; }
  .wishlist-sidebar.open { right: 0 !important; }
  .wishlist-fab.shifted { right: 100% !important; }
  .wishlist-fab { padding: .4rem .35rem !important; font-size: 7px !important; letter-spacing: 1px !important; gap: 3px !important; }
  .wishlist-fab-count { width: 13px !important; height: 13px !important; font-size: 7px !important; }

  /* Store */
  .store-main { padding: 1.25rem !important; }
  .store-main h1 { font-size: 2rem !important; }
  .product-grid { gap: 1.1rem !important; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr !important; padding: 2rem 1.25rem !important; gap: 2rem !important; text-align: left !important; }

  /* Splash */
  .splash h1 { font-size: 4rem; }
}

/* ============================================
   TABLET — min-width: 640px
   ============================================ */
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(3,1fr); }
}

/* ============================================
   DESKTOP — min-width: 1024px
   ============================================ */
@media (min-width: 1024px) {
  /* Navbar */
  .menu-toggle { display: none; }
  #wlFab { display: none !important; }
  .nav-links { display: flex !important; flex-direction: row; position: static; background: transparent; box-shadow: none; padding: 0; gap: 2.5rem; width: auto; font-size: .8rem; }
  .nav-links a { border-bottom: none; padding: 0; }
  .brand-aura, .brand-lux { font-size: 2rem !important; }

  /* Main & sections */
  main { max-width: 1400px; margin: 0 auto; }
  .section { padding: 4rem 3rem; }
  .section-head { max-width: 1280px; margin: 0 auto 2.5rem; }
  .section-head h3 { font-size: 3rem; }

  /* Hero */
  .hero-title { font-size: 4.5rem !important; }

  /* Categories */
  .cats { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; gap: 2rem; max-width: 100%; margin: 0 auto; padding-bottom: 1rem; }
  .cat-circle { height: 150px; width: 150px; }
  .cat span { font-size: .85rem; letter-spacing: .25em; margin-top: .75rem; }

  /* Cards — switch to grid on desktop */
  .hscroll { display: grid !important; grid-template-columns: repeat(4,1fr) !important; overflow-x: unset !important; gap: 1.5rem !important; padding: 0 !important; max-width: 1280px; margin: 0 auto; }
  #comboScroll { grid-template-columns: repeat(3,1fr) !important; }
  .hscroll > * { width: 100% !important; flex-shrink: unset !important; }

  /* About */
  .about h3 { font-size: 3.5rem; text-align: center; margin-bottom: 3rem; }
  .about-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .about-text { justify-content: center; }
  .about-text h4 { font-size: 2.2rem; }
  .about-text p { font-size: .88rem; letter-spacing: .01em; text-transform: none; }
  .about-img { min-height: 500px; }

  /* Why */
  .why-grid { max-width: 1100px; margin: 0 auto; gap: 2rem; }

  /* Footer */
  .foot-grid { grid-template-columns: repeat(4,1fr) !important; text-align: left !important; align-items: start; padding: 4rem 2rem; max-width: 1100px; gap: 4rem; }
  .foot-brand { font-size: 2.4rem; }

  /* Store */
  .store-main { max-width: 1400px; padding: 2rem 4rem; }
  .store-main h1 { font-size: 3.5rem; }
  .product-grid { grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

  /* Filters */
  .filters {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 1.6rem;
    padding: 1rem;
    background: #ffffff;
    border-color: #D8C7A8;
    border-radius: 8px;
  }
  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
    justify-content: flex-start;
  }
  .chip {
    padding: .46rem .78rem;
    border: 1px solid #D8C7A8;
    border-radius: 5px;
    font-size: .74rem;
    letter-spacing: .03em;
    text-transform: none;
    background: #ffffff;
    color: #2C2218;
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    cursor: pointer;
  }
  .chip.active {
    background: #B8903F;
    color: #ffffff;
    border-color: #B8903F;
  }
  .chip:hover {
    background: #F8F5EE;
    border-color: #B8903F;
    color: #2C2218;
  }
  .chip.active:hover {
    background: #B8903F;
    color: #ffffff;
  }
  .chip.price { background: #ffffff; color: #B8903F; cursor: default; }

  /* Price filter */
  .price-filter {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: auto;
    padding-top: 0;
    margin-top: 0;
    width: auto;
    border-top: 0;
  }
  .price-inputs { display: flex; align-items: center; gap: .45rem; }
  .price-inputs input {
    width: 88px;
    padding: .5rem .6rem;
    border: 1px solid #D8C7A8;
    border-radius: 5px;
    font-size: .78rem;
    background: #ffffff;
    color: #2C2218;
  }
  .price-inputs input:focus { outline: none; border-color: #B8903F; }
  .price-inputs span { color: rgba(44, 34, 24, .55); font-size: .78rem; }
  #priceSizeFilter {
    padding: .5rem 1.8rem .5rem .65rem;
    border: 1px solid #D8C7A8;
    border-radius: 5px;
    font-size: .78rem;
    background: #ffffff;
    color: #2C2218;
    cursor: pointer;
  }
  #priceSizeFilter:focus { outline: none; border-color: #B8903F; }
}
@media (max-width: 768px) {
  .sig-block { grid-template-columns: 1fr !important; }
  .sig-block > div:first-child { min-height: 260px !important; order: -1; }
  .sig-block > div:last-child { padding: 1.5rem !important; }
  .sig-block h2 { font-size: 1.8rem !important; }
}
.card .img-wrap {
  background: #f0e8d8 !important;
  padding: 0 !important;
}

.card .img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

body.store-page {
  background: linear-gradient(135deg, #f3eee7 0%, #e8dfd2 50%, #f8f5f0 100%);
}

.featured-strip {
  margin-top: 6rem;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #fbf6ee, #eadfce);
}

.featured-head {
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.featured-head p {
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #b88a35;
}

.featured-head h2 {
  font-size: 3rem;
}

.featured-head span {
  color: #7a6a55;
}

.featured-scroll {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.featured-card {
  min-width: 520px;
  height: 320px;
  background: #fffaf3;
  border: 1px solid #dcc9a8;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(80, 50, 20, .12);
  position: relative;
  flex-shrink: 0;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.featured-card h3 {
  font-size: 1.6rem;
  padding: 1rem 1rem .2rem;
}

.featured-card p {
  padding: 0 1rem;
  color: #8a6826;
  font-size: .85rem;
}

.featured-card a {
  display: inline-block;
  margin: 1rem;
  padding: .75rem 1.4rem;
  background: #111;
  color: #f8e4a0;
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.card {
  transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card .img-wrap {
  transition: box-shadow .35s ease, transform .35s ease;
}

.card:hover .img-wrap {
  box-shadow: 0 22px 55px rgba(120, 80, 30, .18);
}
.card {
  opacity: 0;
  transform: translateY(18px);
  animation: cardReveal .6s ease forwards;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:nth-child(2) { animation-delay: .05s; }
.card:nth-child(3) { animation-delay: .1s; }
.card:nth-child(4) { animation-delay: .15s; }

.lux-cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(202,162,74,.16), transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.nav,
.filters,
.card,
.fab,
footer {
  position: relative;
  z-index: 2;
}
/* Strong interactive store effects */

.card {
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease !important;
}

.card:hover {
  transform: translateY(-14px) scale(1.025) !important;
  box-shadow: 0 30px 80px rgba(80, 45, 10, .28) !important;
  filter: brightness(1.03);
}

.card .img-wrap img {
  transition: transform .45s ease, filter .45s ease !important;
}

.card:hover .img-wrap img {
  transform: scale(1.08) translateY(-8px) !important;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.22)) !important;
}

.btn-buy {
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.btn-buy:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 30px rgba(138,104,38,.35) !important;
}

/* Fragrance Finder */

.fragrance-finder-section {
  width: 100vw;
  margin: clamp(4rem, 7vw, 7rem) calc(50% - 50vw);
  padding: clamp(4rem, 7vw, 7rem) 1.25rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 169, 110, .13), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f6f0e6 100%);
}

.fragrance-finder-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.fragrance-finder-head {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.fragrance-finder-kicker {
  margin-bottom: .75rem;
  color: #b88a35;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.fragrance-finder-head h2 {
  color: #2c2218;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
}

.fragrance-finder-head > p:last-child {
  margin-top: 1rem;
  color: #7a6a55;
  font-size: .98rem;
  line-height: 1.8;
}

.fragrance-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.fragrance-finder-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 1rem;
  background: rgba(255, 250, 243, .92);
  border: 1px solid rgba(201, 169, 110, .34);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(84, 55, 24, .1);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fragrance-finder-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, .68);
  box-shadow: 0 24px 60px rgba(84, 55, 24, .16);
}

.fragrance-finder-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.1rem;
}

.fragrance-finder-card h3 {
  color: #2c2218;
  font-size: 1.55rem;
  line-height: 1.1;
}

.fragrance-finder-card p {
  margin-top: .55rem;
  color: #7a6a55;
  font-size: .86rem;
  line-height: 1.7;
}

.fragrance-finder-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: .72rem 1.15rem;
  border: 1px solid rgba(201, 169, 110, .55);
  border-radius: 999px;
  color: #8a6826;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.fragrance-finder-card:hover span {
  background: #c9a96e;
  color: #fffaf0;
}

@media(max-width:900px) {
  .fragrance-finder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:640px) {
  .fragrance-finder-section {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    padding: 3.5rem 1rem;
  }

  .fragrance-finder-head {
    margin-bottom: 2rem;
  }

  .fragrance-finder-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fragrance-finder-card {
    min-height: 0;
    border-radius: 16px;
  }
}

.luxury-info-grid {
  max-width: 1350px;
  margin: 2rem auto;
  padding: 2rem 2rem;
  background: transparent;
}

.luxury-info-main {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
  background: transparent;
  padding: 0;
}

.luxury-info-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}

.luxury-info-card {
  background: transparent;
  padding: 0;
}

.luxury-info-grid span {
  display: block;
  color: #b88a35;
  letter-spacing: .3em;
  font-size: .8rem;
  margin-bottom: 1rem;
}

.luxury-info-grid h3,
.luxury-info-grid h4 {
  font-size: 2.6rem;
  line-height: 1.1;
  color: #2c2218;
  margin-bottom: 1.2rem;
}

.luxury-info-grid p {
  color: #7a6a55;
  font-size: 1rem;
  line-height: 1.9;
}

@media(max-width: 768px) {
  .luxury-info-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .luxury-info-grid h3,
  .luxury-info-grid h4 {
    font-size: 2rem;
  }
}

.fragrance-editorial {
  max-width: 1300px;
  margin: 2rem auto;
  padding: 2rem 2rem;
  background: #f7efe5;
}

.fragrance-editorial .editorial-small {
  text-align: center;
  color: #b88a35;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .75rem;
}

.fragrance-editorial h2 {
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  margin: .8rem 0 4rem;
}

.fragrance-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr 1fr;
  gap: 2rem;
  align-items: center;
}

.fragrance-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.img-one {
  grid-column: 1 / 2;
  grid-row: 2;
}

.img-two {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.fragrance-copy {
  max-width: 320px;
}

.fragrance-copy h4 {
  font-size: 1.5rem;
  margin-bottom: .7rem;
}

.fragrance-copy p {
  color: #7a6a55;
  line-height: 1.8;
}

.top-copy {
  grid-column: 1 / 2;
  grid-row: 1;
}

.middle-copy {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.bottom-copy {
  grid-column: 2 / 3;
  grid-row: 3;
}

@media(max-width: 900px) {
  .fragrance-layout {
    grid-template-columns: 1fr;
  }

  .img-one,
  .img-two,
  .top-copy,
  .middle-copy,
  .bottom-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .fragrance-editorial h2 {
    font-size: 2.6rem;
  }
}
.fragrance-editorial{
  position:relative;
  overflow:hidden;
}

/* giant faded background text */
.fragrance-editorial::before{
  content:"AURA LUX";
  position:absolute;
  top:120px;
  left:50%;
  transform:translateX(-50%);
  font-size:10rem;
  font-weight:700;
  letter-spacing:.25em;
  color:rgba(184,138,53,0.04);
  white-space:nowrap;
  pointer-events:none;
}

/* luxury gold line */
.fragrance-editorial h2::after{
  content:"";
  display:block;
  width:120px;
  height:1px;
  background:#b88a35;
  margin:1.5rem auto 0;
  opacity:.5;
}

/* image styling */
.fragrance-img{
  border-radius:18px;
  box-shadow:
  0 20px 50px rgba(0,0,0,.08);
  transition:transform .5s ease;
}

.fragrance-img:hover{
  transform:translateY(-10px);
}

/* decorative numbers */
.fragrance-copy span{
  font-size:1rem;
  font-weight:600;
  color:#b88a35;
  letter-spacing:.35em;
  margin-bottom:1.5rem;
}

/* luxury heading */
.fragrance-copy h4{
  font-size:2rem;
  line-height:1.1;
  margin-bottom:1rem;
}

/* better paragraph */
.fragrance-copy p{
  font-size:1.02rem;
  line-height:2;
  color:#6e5f4d;
}

/* decorative divider */
.middle-copy{
  position:relative;
}

.middle-copy::before{
  content:"";
  position:absolute;
  left:-60px;
  top:20px;
  width:1px;
  height:180px;
  background:linear-gradient(to bottom,
  transparent,
  #b88a35,
  transparent);
}

/* subtle floating glow */
.img-two{
  position:relative;
}

.img-two::after{
  content:"";
  position:absolute;
  inset:-20px;
  background:radial-gradient(rgba(184,138,53,.12), transparent 70%);
  z-index:-1;
}

.card h4 {
  font-size: .95rem !important;
  line-height: 1.25 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.card .img-wrap {
  aspect-ratio: 1 / 1 !important;
}
.top-copy {
  grid-column: 1 / 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  margin-bottom: 1.5rem !important;
}

.img-one {
  grid-column: 1 / 2 !important;
  grid-row: 2 / 4 !important;
}

.middle-copy {
  grid-column: 2 / 3 !important;
  grid-row: 2 !important;
  align-self: center !important;
}

.img-two {
  grid-column: 3 / 4 !important;
  grid-row: 1 / 3 !important;
}

.bottom-copy {
  grid-column: 3 / 4 !important;
  grid-row: 3 !important;
  align-self: start !important;
  margin-top: 1.5rem !important;
}

.memory-text-section{
  padding:70px 7% 40px;
  margin-top:90px;
  overflow:hidden;
}

.memory-text-container{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.memory-text-container h2{
  font-family:"Cormorant Garamond", serif;
  font-size:82px;
  line-height:1.05;
  font-weight:300;
  color:#111;
  letter-spacing:-3px;
  max-width:1600px;
}

.memory-text-container .line{
  display:block;
  white-space:nowrap;
}

/* horizontal image */
.memory-pill{
  display:inline-flex;
  width:210px;
  height:85px;
  border-radius:60px;
  overflow:hidden;
  vertical-align:middle;
  margin:0 14px;
}

/* vertical image */
.memory-pill.vertical{
  width:110px;
  height:150px;
  border-radius:60px;
}

.memory-pill img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.perfume-icon{
  font-size:55px;
  vertical-align:middle;
  margin-left:10px;
}
/* mobile */
@media(max-width:768px){

  .memory-text-container h2{
    font-size:15vw;
    letter-spacing:-2px;
  }

  .memory-pill{
    width:120px;
    height:50px;
  }

  .memory-pill.vertical{
    width:70px;
    height:100px;
  }
}

.memory-text-container h2{
  font-size:82px;
  line-height:1.25;
  letter-spacing:-3px;
}

.memory-text-container .line{
  display:block;
  white-space:nowrap;
}

/* ===== MEMORY TEXT SECTION FIX ===== */

.memory-text-section{
  padding:70px 7% 40px;
  margin-top:40px;
  overflow:hidden;
}

.memory-text-container{
  width:100%;
  display:flex;
  justify-content:center;
}

.memory-text-container h2{
  font-family:"Cormorant Garamond", serif !important;
  font-size:82px !important;
  line-height:1.1 !important;
  font-weight:300 !important;
  color:#111 !important;
  letter-spacing:-3px !important;
}

.memory-text-container .line{
  display:block;
  white-space:nowrap;
}

.memory-pill{
  display:inline-flex !important;
  width:210px !important;
  height:85px !important;
  border-radius:60px !important;
  overflow:hidden !important;
  vertical-align:middle;
  margin:0 14px;
}

.memory-pill.vertical{
  width:110px !important;
  height:150px !important;
  border-radius:60px !important;
}

.memory-pill img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block;
}

.perfume-icon{
  font-size:55px;
  vertical-align:middle;
  margin-left:10px;
}
/* ===== TRUE FULL SCREEN MOBILE LAYOUT ===== */

@media (max-width:768px){

  html,
  body{
    width:100%;
    overflow-x:hidden;
  }

  main,
  section,
  div{
    max-width:100% !important;
  }

  /* remove boxed layout */
  .luxury-showcase,
  .fragrance-editorial,
  .luxury-info-grid,
  .featured-strip,
  .memory-text-section,
  .editorial-banner,
  .hero-split,
  .section{
    width:100vw !important;
    max-width:100vw !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    border-radius:0 !important;
  }

  /* remove side gaps */
  .fragrance-editorial,
  .luxury-info-grid,
  .featured-strip,
  .memory-text-section,
  .section{
    padding-left:16px !important;
    padding-right:16px !important;
  }

  /* images full width */
  img{
    max-width:100%;
  }

  .hero-split-img,
  .hero-slider,
  .hero-slide{
    width:100vw !important;
  }

}

/* ===== PHONE FIX: PRODUCT STANDARD QUALITIES ===== */
@media (max-width:768px){

  .fragrance-editorial{
    padding:45px 20px !important;
    overflow:hidden !important;
  }

  .fragrance-editorial h2{
    font-size:38px !important;
    line-height:1.05 !important;
    margin-bottom:35px !important;
  }

  .fragrance-layout{
    display:flex !important;
    flex-direction:column !important;
    gap:28px !important;
  }

  .top-copy,
  .middle-copy,
  .bottom-copy{
    max-width:100% !important;
    width:100% !important;
    text-align:left !important;
    margin:0 !important;
  }

  .fragrance-copy h4{
    font-size:30px !important;
    line-height:1.05 !important;
  }

  .fragrance-copy p{
    font-size:15px !important;
    line-height:1.7 !important;
  }

  .fragrance-img{
    width:100% !important;
    height:auto !important;
    max-height:none !important;
    object-fit:cover !important;
    border-radius:22px !important;
  }

  .img-one,
  .img-two{
    width:100% !important;
    height:auto !important;
  }

  .middle-copy::before{
    display:none !important;
  }

  .lux-divider{
    padding:1rem 0 .6rem !important;
  }

  .lux-divider + .section{
    padding-top:.75rem !important;
  }
}

/* Ecommerce product cards */
.product-card.card {
  position: relative;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}

.product-card .product-card-link {
  display: block;
}

.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 14px !important;
  background: #f3eadb !important;
  border: 1px solid rgba(201, 169, 110, .18);
  box-shadow: 0 14px 35px rgba(80, 45, 10, .08);
}

.product-card .img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: .65rem;
  transition: transform .35s ease !important;
}

.product-card:hover .img-wrap img {
  transform: scale(1.04) !important;
  filter: none !important;
}

.product-card .body {
  padding: .75rem .1rem 0 !important;
  gap: .25rem !important;
}

.product-card h4 {
  color: #2c2218 !important;
  font-size: .92rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.product-card .cat-label {
  color: #9a8878 !important;
  font-size: .58rem !important;
  letter-spacing: .18em !important;
  text-transform: uppercase;
}

.product-card .price {
  margin-top: .1rem;
  font-size: .98rem !important;
  font-weight: 600 !important;
}

.product-card .btn-heart {
  top: .55rem;
  right: .55rem;
  background: rgba(255, 250, 240, .94);
  z-index: 5;
}

.product-card .size-selector,
.product-card .btn-buy {
  display: none !important;
}

@media (max-width: 767px) {
  .product-card.card {
    width: clamp(240px, 74vw, 320px) !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .hscroll > .product-card {
    width: clamp(240px, 74vw, 320px) !important;
    max-width: calc(100vw - 32px) !important;
    flex-shrink: 0 !important;
  }

  .hscroll > *:has(.product-card) {
    width: clamp(240px, 74vw, 320px) !important;
    max-width: calc(100vw - 32px) !important;
    flex: 0 0 clamp(240px, 74vw, 320px) !important;
    scroll-snap-align: start;
  }

  .hscroll > *:has(.product-card) .product-card {
    width: 100% !important;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)) !important;
    align-items: stretch;
  }

  .product-grid .product-card.card {
    width: 100% !important;
  }

  .product-card .product-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .product-card .img-wrap {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
  }

  .product-card .img-wrap img {
    padding: .5rem;
  }

  .product-card .body {
    min-height: 76px;
    padding: .85rem .15rem 0 !important;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .28rem !important;
  }

  .product-card h4 {
    font-size: .98rem !important;
    line-height: 1.28 !important;
  }

  .product-card .price {
    margin-top: auto;
    font-size: 1.08rem !important;
  }
}

/* Product detail page */
.product-page {
  background: #f7f4ee;
}

.product-main {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  animation: productContentIn .45s ease both;
}

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

.product-detail-skeleton {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(30, 30, 30, .08);
  border-radius: 8px;
}

.skeleton-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #eee5d7 0%, #f8f1e7 45%, #e6dac8 100%);
  background-size: 220% 100%;
  animation: productSkeletonShimmer 1.45s ease-in-out infinite;
}

@keyframes productSkeletonShimmer {
  0% {
    background-position: 220% 0;
  }
  100% {
    background-position: -220% 0;
  }
}

.product-skeleton-image {
  min-height: 520px;
  border-radius: 8px;
}

.product-skeleton-info {
  padding: .5rem 0;
}

.product-skeleton-kicker {
  width: 34%;
  height: 12px;
  border-radius: 999px;
  margin-bottom: 1.35rem;
}

.product-skeleton-title {
  width: 82%;
  height: clamp(56px, 6vw, 86px);
  border-radius: 12px;
}

.product-skeleton-price {
  width: 32%;
  height: 38px;
  border-radius: 999px;
  margin-top: 1.2rem;
}

.product-skeleton-sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin-top: 1.8rem;
}

.product-skeleton-sizes span {
  height: 46px;
  border-radius: 4px;
}

.product-skeleton-line {
  width: 78%;
  height: 14px;
  border-radius: 999px;
  margin-top: 1rem;
}

.product-skeleton-line.long {
  width: 92%;
  margin-top: 2rem;
}

.product-skeleton-line.short {
  width: 54%;
}

.product-skeleton-button {
  width: 48%;
  height: 52px;
  border-radius: 4px;
  margin-top: 2rem;
}

.product-detail-gallery {
  position: sticky;
  top: 5.5rem;
}

.product-detail-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  border: 1px solid rgba(30, 30, 30, .09);
  border-radius: 8px;
  background: #f1eee8;
  padding: 1.5rem;
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform: scale(1.08);
  transform-origin: center;
}

.product-detail-info {
  min-width: 0;
  padding: .25rem 0 0;
  color: #25211b;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
  color: #6f604f;
  font-size: .78rem;
  line-height: 1.45;
  margin-bottom: .85rem;
}

.product-breadcrumb a {
  color: #8a6826;
  font-weight: 600;
}

.product-breadcrumb span:last-child {
  max-width: 34ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-brand,
.product-option-group > p,
.product-quantity > p {
  color: #8a6826;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-brand {
  margin-bottom: .45rem;
}

.product-detail-info h1 {
  color: #1f1f1f;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  max-width: 820px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .85rem;
  color: #5f5a51;
  font-size: .9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(30, 30, 30, .1);
}

.product-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  min-height: 26px;
  padding: .2rem .55rem;
  border-radius: 4px;
  background: #2f8f46;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}

.product-rating-badge span {
  font-size: .78rem;
}

.product-price-block {
  padding: 1rem 0 1.1rem;
  border-bottom: 1px solid rgba(30, 30, 30, .1);
}

.product-price-label {
  color: #2f8f46;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .15rem;
}

.product-detail-price {
  color: #1f1f1f;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
}

.product-option-group,
.product-description,
.product-quantity,
.product-actions,
.product-details-box,
.product-notes-box {
  margin-top: 1.35rem;
}

.product-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .7rem;
}

.product-size-btn {
  min-width: 84px;
  min-height: 42px;
  padding: .6rem .85rem;
  border: 1px solid rgba(30, 30, 30, .22);
  border-radius: 4px;
  color: #302a22;
  background: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.product-size-btn.active {
  border-color: #b88a35;
  box-shadow: inset 0 0 0 1px #b88a35;
  color: #8a6826;
  background: #fffaf3;
}

.product-size-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.product-description {
  color: #4c463e;
  line-height: 1.75;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(30, 30, 30, .1);
}

.product-description h2,
.product-details-box h2,
.product-notes-box h2 {
  margin-bottom: .65rem;
  color: #25211b;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.product-details-box,
.product-notes-box {
  background: #fffdf8;
  border: 1px solid rgba(30, 30, 30, .08);
  border-radius: 6px;
  padding: 1rem;
}

.product-details-box dl {
  display: grid;
  gap: 0;
}

.product-details-box dl div {
  display: grid;
  grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr);
  gap: 1rem;
  padding: .72rem 0;
  border-top: 1px solid rgba(30, 30, 30, .08);
}

.product-details-box dl div:first-child {
  border-top: 0;
  padding-top: 0;
}

.product-details-box dl div:last-child {
  padding-bottom: 0;
}

.product-details-box dt {
  color: #6f604f;
  font-size: .88rem;
  font-weight: 600;
}

.product-details-box dd {
  min-width: 0;
  color: #25211b;
  font-size: .9rem;
  font-weight: 500;
}

.product-notes-box p {
  color: #4c463e;
  line-height: 1.7;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 44px 64px 44px;
  min-height: 44px;
  margin-top: .7rem;
  overflow: hidden;
  border: 1px solid rgba(30, 30, 30, .18);
  border-radius: 4px;
  background: #fff;
}

.qty-control button,
.qty-control input {
  text-align: center;
  border: 0;
  color: #2c2218;
  background: transparent;
}

.qty-control input {
  width: 64px;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(30, 30, 30, .1);
}

.product-wa-btn,
.product-wishlist-btn,
.product-sticky-buy button,
.product-not-found a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .95rem 1.45rem;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.product-wa-btn,
.product-sticky-buy button {
  background: linear-gradient(135deg, #d4a64f, #8a6826);
  color: #fffaf0;
}

.product-wishlist-btn,
.product-not-found a {
  border: 1px solid rgba(138, 104, 38, .5);
  color: #8a6826;
  background: #fff;
}

.product-wishlist-btn.liked {
  background: #2c2218;
  color: #fffaf0;
  border-color: #2c2218;
}

.product-detail-loading,
.product-not-found {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(30, 30, 30, .08);
  border-radius: 8px;
}

.product-not-found h1 {
  font-size: 3rem;
  color: #2c2218;
}

.product-sticky-buy {
  display: none;
}

@media (max-width: 840px) {
  .product-main {
    padding: 5rem 0 6rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-detail-skeleton {
    grid-template-columns: 1fr;
    margin: 0 1rem;
    padding: .75rem;
  }

  .product-detail-gallery {
    position: static;
    padding: 0 1rem;
  }

  .product-detail-image {
    min-height: 340px;
    border-radius: 6px;
  }

  .product-skeleton-image {
    min-height: 330px;
  }

  .product-skeleton-info {
    padding: 1rem .4rem 1.25rem;
  }

  .product-skeleton-title {
    width: 92%;
    height: 58px;
  }

  .product-skeleton-price {
    width: 44%;
  }

  .product-skeleton-sizes {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-skeleton-button {
    width: 100%;
  }

  .product-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    padding: 0;
    transform: scale(1.04);
  }

  .product-detail-info {
    padding: 1rem 1rem 1.25rem;
    background: #fff;
    margin-top: 1rem;
    border-top: 1px solid rgba(30, 30, 30, .08);
    border-bottom: 1px solid rgba(30, 30, 30, .08);
  }

  .product-breadcrumb {
    font-size: .72rem;
  }

  .product-breadcrumb span:last-child {
    max-width: 20ch;
  }

  .product-detail-info h1 {
    font-size: 1.18rem;
  }

  .product-size-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-size-btn {
    width: 100%;
  }

  .product-details-box dl div {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .product-wa-btn {
    display: none;
  }

  .product-sticky-buy {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    padding: .8rem 1rem;
    background: rgba(255, 250, 243, .94);
    border-top: 1px solid rgba(201, 169, 110, .32);
    backdrop-filter: blur(14px);
  }

  .product-sticky-buy button {
    width: 100%;
  }
}
