/* ═══════════════════════════════════════════════════════════════
   ILAAN PARIS — Luxury Perfume Website Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────────── */
:root {
  --black:        #060810;
  --navy-deep:    #0D0B2B;
  --navy:         #1B1464;
  --charcoal:     #111120;
  --charcoal-lg:  #1A1A30;
  --gold:         #C9A84C;
  --gold-light:   #F0C040;
  --gold-dark:    #9A7B2F;
  --gold-glow:    rgba(201,168,76,0.25);
  --white:        #F8F4EE;
  --cream:        #E8DCC8;
  --silver:       #C0C0C8;
  --text-muted:   #7A7090;
  --glass-bg:     rgba(13,11,43,0.55);
  --glass-border: rgba(201,168,76,0.18);

  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-elegant: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Montserrat', 'Helvetica Neue', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-gold:  0 0 40px rgba(201,168,76,0.15), 0 4px 24px rgba(0,0,0,0.6);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.5);
  --transition:   0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

body.loading { overflow: hidden; }

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

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
iframe { border: 0; display: block; }

/* ── LOGO IMAGE (white-bg PNG on dark site) ─────────────────────── */
/*
  Trick: invert flips white→black, sepia+saturate restore warm gold tone,
  mix-blend-mode:screen makes the black background invisible on dark site.
*/
.logo-img {
  display: block;
  object-fit: contain;
  /* Step 1: invert – white bg becomes black, gold becomes blue-purple  */
  /* Step 2: sepia  – pushes toward warm amber tones                    */
  /* Step 3: saturate – makes the gold vivid                            */
  /* Step 4: hue-rotate – fine-tunes toward true gold                  */
  /* Step 5: brightness – compensates for darkening                    */
  filter: invert(1) sepia(1) saturate(2.5) hue-rotate(10deg) brightness(1.15);
  /* Step 6: screen blend – black areas (former white bg) vanish on dark bg */
  mix-blend-mode: screen;
  flex-shrink: 0;
}

.logo-img--nav    { width: 36px;  height: 36px; }
.logo-img--loader { width: 90px;  height: 90px; }
.logo-img--footer { width: 50px;  height: 50px; }

/* ── CUSTOM SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--black); }
::-webkit-scrollbar-thumb        { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold); }

/* ── CUSTOM CURSOR (disabled — using default OS cursor) ─────────── */
.cursor, .cursor-follower { display: none !important; }

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ── LOADER ──────────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-logo { margin-bottom: 24px; animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.95)} }

.loader-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  color: var(--white);
  margin-bottom: 32px;
}
.loader-brand span { color: var(--gold); }

.loader-bar {
  width: 240px; height: 2px;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 0.1s ease;
}
.loader-text {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────────── */
.announcement-bar {
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(90deg, #1a1000 0%, #2a1c00 40%, #1a1000 100%);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
  contain: layout;
}
.announcement-track {
  width: 100%;
  overflow: hidden;
}
.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: annScroll 28s linear infinite;
  padding-left: 100%;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.announcement-content strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ann-dot {
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.6;
}
@keyframes annScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-bar:hover .announcement-content {
  animation-play-state: paused;
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0;
  z-index: 999;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: rgba(6,8,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.1), 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s;
}
.navbar.scrolled .nav-container { padding: 14px 40px; }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon { color: var(--gold); flex-shrink: 0; }
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-ilaan {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
}
.logo-paris {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.nav-links {
  display: flex; gap: 40px; align-items: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.7);
  position: relative;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,244,238,0.7);
  border-radius: 50%;
  transition: color 0.3s, background 0.3s;
}
.nav-icon-btn:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

.nav-badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}
.nav-badge.visible { opacity: 1; transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px; padding: 4px 0;
}
.hamburger span {
  display: block; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(6,8,16,0.97);
  backdrop-filter: blur(20px);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.mobile-menu.open { max-height: 500px; padding: 24px 0 32px; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mobile-link {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-tagline {
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover { box-shadow: 0 6px 30px rgba(201,168,76,0.5); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-sm  { padding: 10px 20px; font-size: 0.7rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow--light { color: rgba(201,168,76,0.8); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: var(--white); }

.section-desc {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  text-align: center;
}

/* ── HERO CSS BACKGROUND ─────────────────────────────────────── */
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
}
.hero-bg-glow--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,20,100,0.7) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: glowDrift1 12s ease-in-out infinite alternate;
}
.hero-bg-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  bottom: -10%; right: 5%;
  animation: glowDrift2 15s ease-in-out infinite alternate;
}
.hero-bg-glow--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,20,100,0.4) 0%, transparent 70%);
  top: 30%; right: 20%;
  animation: glowDrift3 18s ease-in-out infinite alternate;
}
@keyframes glowDrift1 { 0%{transform:translate(0,0)} 100%{transform:translate(60px,40px)} }
@keyframes glowDrift2 { 0%{transform:translate(0,0)} 100%{transform:translate(-50px,-30px)} }
@keyframes glowDrift3 { 0%{transform:translate(0,0)} 100%{transform:translate(30px,-50px)} }

/* Thin vertical lines for depth */
.hero-lines {
  position: absolute; inset: 0;
  display: flex; justify-content: space-evenly; pointer-events: none;
}
.hero-lines span {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.06) 40%, rgba(201,168,76,0.04) 60%, transparent 100%);
}

/* canvas removed — CSS hero only */

.hero-particles {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.hero-particles .particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 40px;
  max-width: 860px;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  opacity: 0;
}
.hero-title-ilaan { display: block; color: var(--white); }
.hero-title-paris  { display: block; color: var(--gold); }

.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  opacity: 0;
}

.hero-divider {
  margin-bottom: 24px;
  opacity: 0;
  display: flex; justify-content: center;
}
.hero-divider span {
  display: block;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-tagline {
  font-family: var(--font-elegant);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 36px;
  opacity: 0;
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
}

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  opacity: 0;
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(201,168,76,0.25);
}

.hero-scroll {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: rgba(201,168,76,0.2);
  position: relative; overflow: hidden;
}
.scroll-dot {
  position: absolute; top: -100%;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -40%; }
  100% { top: 140%; }
}

/* ── MARQUEE ─────────────────────────────────────────────────────── */
.marquee-section {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-content {
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-content span {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 24px;
}
.marquee-content .dot { padding: 0 8px; font-size: 0.5rem; opacity: 0.5; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.about-container {
  max-width: 1300px; margin: 0 auto;
  padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about-visual { position: relative; }
.about-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 560px;
}
.about-img-main {
  width: 100%; height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal-lg);
  position: relative;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--charcoal-lg) 0%, var(--navy-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border);
}
.about-img-placeholder .about-img-text {
  text-align: center; padding: 20px;
  opacity: 0.5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-real-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.about-img-main:hover .about-real-img { transform: scale(1.03); }
/* Fallback if image missing */
.about-img-fallback {
  background: linear-gradient(135deg, var(--charcoal-lg) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
}
.about-img-fallback::after {
  content: 'ILAAN PARIS';
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.4;
}

.about-img-accent {
  position: absolute; bottom: -24px; right: -24px;
  padding: 20px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: right;
}

.about-badge {
  position: absolute; top: 24px; left: -24px;
  width: 88px; height: 88px;
}
.badge-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 1px solid var(--glass-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
.badge-year {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-divider {
  display: flex; align-items: center;
  margin-bottom: 28px;
}
.about-divider span {
  display: block; width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-lead {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.about-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-values { margin: 36px 0; display: flex; flex-direction: column; gap: 20px; }
.about-value {
  display: flex; gap: 16px; align-items: flex-start;
}
.value-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}
.about-value h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.about-value p { font-size: 0.84rem; color: var(--text-muted); }

.about-cta { margin-top: 8px; }

/* ── COLLECTION ─────────────────────────────────────────────────── */
.collection {
  padding: 120px 60px;
  background: var(--black);
  max-width: 1400px;
  margin: 0 auto;
}

.collection-filters {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 24px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── PRODUCT CARD ───────────────────────────────────────────────── */
.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
  position: relative;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.35);
}
.product-card.hidden { display: none; }

.card-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.card-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 12px 8px 0;
  transition: transform 0.6s ease;
  z-index: 1;
}
.product-card:hover .card-image { transform: scale(1.06); }

.card-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  transition: transform 0.6s ease;
  z-index: 0;
}
.product-card:hover .card-placeholder { transform: scale(1.04); }

.card-placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
  line-height: 1;
}
.card-placeholder-name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(248,244,238,0.4);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 16px;
}

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,8,16,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  opacity: 0; transition: opacity 0.4s;
  z-index: 2;
}
.product-card:hover .card-overlay { opacity: 1; }

.card-actions-top { display: flex; justify-content: flex-end; }
.card-wishlist-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(6,8,16,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
}
.card-wishlist-btn:hover, .card-wishlist-btn.active {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.card-wishlist-btn.active svg { fill: currentColor; }

.card-quick-view {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 20px;
  border: 1px solid rgba(248,244,238,0.4);
  border-radius: 2px;
  width: 100%;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  cursor: pointer;
}
.card-quick-view:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.card-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 2px;
  z-index: 3;
}

.card-info { padding: 24px; }
.card-category {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.card-price-wrap { display: flex; flex-direction: row; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card-price-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.card-mrp { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.card-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
}
.card-discount { font-size: 0.65rem; letter-spacing: 0.08em; padding: 2px 7px; background: rgba(200,160,60,0.15); color: var(--gold); border-radius: 20px; }

/* Modal price */
.modal-price-wrap { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.modal-mrp { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.modal-discount-badge { font-size: 0.68rem; letter-spacing: 0.08em; padding: 3px 9px; background: rgba(200,160,60,0.15); color: var(--gold); border-radius: 20px; }

/* Product page price row */
.product-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.product-mrp { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.product-discount-badge { font-size: 0.72rem; letter-spacing: 0.08em; padding: 4px 10px; background: rgba(200,160,60,0.15); color: var(--gold); border-radius: 20px; }

/* ── FRAGRANCE NOTES ─────────────────────────────────────────────── */
.frag-notes-section {
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--black) 0%, var(--navy-deep) 50%, var(--black) 100%);
  max-width: 100%;
  overflow: hidden;
}

.notes-pyramid {
  max-width: 1100px; margin: 0 auto 60px;
  display: flex; flex-direction: column; gap: 0;
}
.notes-tier {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 40px; align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.notes-tier:last-child { border-bottom: none; }

.tier-num {
  display: block;
  font-family: var(--font-elegant);
  font-size: 2.5rem;
  color: rgba(201,168,76,0.2);
  line-height: 1; margin-bottom: 8px;
}
.notes-tier-label h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.notes-tier-label p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.notes-tier-items {
  display: flex; flex-wrap: wrap; gap: 10px;
  min-height: 48px; align-items: center;
}
.note-pill {
  padding: 6px 18px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  color: var(--cream);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  animation: pillFadeIn 0.5s ease both;
  transition: border-color 0.3s, color 0.3s;
}
.note-pill:hover { border-color: var(--gold); color: var(--gold); }
@keyframes pillFadeIn { from { opacity:0; transform:scale(0.85) translateY(8px); } to { opacity:1; transform:scale(1) translateY(0); } }

.notes-tier--top    .note-pill { border-color: rgba(240,192,64,0.3); }
.notes-tier--mid    .note-pill { border-color: rgba(201,168,76,0.25); }
.notes-tier--base   .note-pill { border-color: rgba(154,123,47,0.35); }

.notes-selector {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.notes-selector-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.notes-selector-btns {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.notes-select-btn {
  padding: 8px 24px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.notes-select-btn:hover, .notes-select-btn.active {
  color: var(--gold); border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ── LUXURY EXPERIENCE ───────────────────────────────────────────── */
.luxury-exp {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0a082a 50%, var(--black) 100%);
  overflow: hidden;
}
.lux-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(27,20,100,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.lux-content {
  max-width: 1300px; margin: 0 auto;
  padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.lux-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 48px;
}

.lux-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.lux-stat { }
.lux-stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.lux-stat-suffix {
  font-family: var(--font-elegant);
  font-size: 1.4rem;
  color: var(--gold-dark);
}
.lux-stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.lux-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.lux-card {
  padding: 28px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
}
.lux-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
.lux-card-icon {
  font-size: 1.5rem;
  color: var(--gold);
  display: block; margin-bottom: 12px;
}
.lux-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
}
.lux-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials {
  padding: 120px 60px;
  background: var(--black);
  overflow: hidden;
}

.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 0 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.testimonial-quote {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 660px;
}
.testimonial-quote::before { content: '"'; color: var(--gold); font-size: 1.6em; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-quote::after  { content: '"'; color: var(--gold); font-size: 1.6em; line-height: 0; vertical-align: -0.4em; margin-left: 4px; }

.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-loc  { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s; cursor: pointer;
  border: none;
}
.carousel-dot.active {
  width: 24px; border-radius: 3px;
  background: var(--gold);
}

/* ── GALLERY ─────────────────────────────────────────────────────── */
.gallery-section {
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--black) 0%, var(--navy-deep) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--tall { aspect-ratio: 1/2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  min-height: 200px;
}
.gp-1 { background: linear-gradient(135deg,#1a0a12,#6b2040); }
.gp-2 { background: linear-gradient(135deg,#120a00,#6b4a00); }
.gp-3 { background: linear-gradient(135deg,#000a1a,#003366); }
.gp-4 { background: linear-gradient(135deg,#0a0015,#2d0050); }
.gp-5 { background: linear-gradient(135deg,#1a0a00,#6b3800); }
.gp-6 { background: linear-gradient(135deg,#0f0005,#4a0018); }

.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(6,8,16,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 20px;
}
.gallery-cta { text-align: center; }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact {
  padding: 120px 0 0;
  background: var(--black);
}
.contact-container {
  max-width: 1300px; margin: 0 auto;
  padding: 0 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.contact-intro { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-size: 0.88rem; color: var(--white); line-height: 1.5; transition: color 0.3s; }
a.contact-value:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.88rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group textarea { min-height: 120px; }

.form-submit { width: 100%; justify-content: center; margin-bottom: 12px; }
.form-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; letter-spacing: 0.05em; }

.map-wrap {
  width: 100%;
  filter: grayscale(0.6) invert(0.9) hue-rotate(160deg);
  opacity: 0.8;
}
.map-wrap iframe { display: block; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-section {
  padding: 100px 5%;
  border-top: 1px solid var(--glass-border);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.faq-item:first-child { border-top: 1px solid var(--glass-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.4s ease, background 0.3s, border-color 0.3s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  font-family: var(--font-elegant);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.82;
  padding: 0 4px 24px;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--glass-border);
  padding: 80px 60px 0;
}

.footer-top {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr; gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-text span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
}
.footer-logo-text span.gold { color: var(--gold); }

.footer-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.1); }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.84rem; color: var(--text-muted); transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(201,168,76,0.5); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── MODAL ───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(6,8,16,0.85);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-content {
  position: relative;
  background: var(--charcoal-lg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 900px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s ease;
}
.modal-overlay.open .modal-content { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
  cursor: pointer;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.modal-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
}
.modal-image-side {
  position: relative;
  aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.modal-image-side img,
.modal-img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  font-family: var(--font-serif); font-size: 1.2rem;
  color: rgba(248,244,238,0.4);
}
.modal-img-placeholder .modal-icon { font-size: 3.5rem; opacity: 0.4; }

.modal-details {
  padding: 40px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0;
}
.modal-category {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.modal-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.modal-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 20px;
}
.modal-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-notes { margin-bottom: 24px; }
.notes-row { margin-bottom: 12px; }
.notes-row-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.notes-row-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.notes-row-pills span {
  padding: 3px 12px;
  font-size: 0.7rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  color: var(--cream);
}

.modal-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 24px;
}
.meta-item { }
.meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.meta-value { font-size: 0.82rem; color: var(--white); font-weight: 500; }

.modal-size-select { margin-bottom: 24px; }
.size-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.size-btns { display: flex; gap: 10px; }
.size-btn {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  transition: all 0.3s;
  cursor: pointer;
}
.size-btn:hover, .size-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.modal-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.modal-actions { display: flex; flex-direction: column; gap: 10px; }

/* ── SIDEBARS ────────────────────────────────────────────────────── */
.sidebar {
  position: fixed; top: 0; right: 0;
  width: 420px; height: 100vh;
  background: var(--charcoal);
  border-left: 1px solid var(--glass-border);
  z-index: 4000;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-header h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.1em;
}
.sidebar-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s; cursor: pointer;
}
.sidebar-close:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.sidebar-body { flex: 1; overflow-y: auto; padding: 20px 28px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 60px 20px; text-align: center;
}
.cart-empty-icon { color: var(--text-muted); opacity: 0.4; }
.cart-empty p { font-size: 0.9rem; color: var(--text-muted); }

.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-thumb {
  position: relative;
  width: 64px; height: 80px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cart-item-thumb-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; opacity: 0.4;
  z-index: 0;
}
.cart-item-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
  z-index: 1;
}
.cart-item-info { flex: 1; }
.cart-item-name  { font-family: var(--font-serif); font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.cart-item-size  { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price { font-size: 0.88rem; color: var(--gold); font-weight: 600; }
.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.7rem; transition: color 0.3s; cursor: pointer;
  padding: 4px;
}
.cart-item-remove:hover { color: #e57373; }

.sidebar-footer { padding: 20px 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.cart-summary { margin-bottom: 20px; }
.cart-row {
  display: flex; justify-content: space-between;
  font-size: 0.84rem; color: var(--text-muted);
  padding: 8px 0;
}
.cart-row--total {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px; margin-top: 4px;
}
.cart-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* Cart terms checkbox */
.cart-terms { margin-bottom: 14px; }
.cart-terms-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
}
.cart-terms-label input[type="checkbox"] {
  flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px;
  accent-color: var(--gold); cursor: pointer;
}
.cart-terms-label a { color: var(--gold); text-decoration: underline; }
.cart-terms-label a:hover { opacity: 0.8; }

/* ── SEARCH OVERLAY ─────────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0;
  z-index: 4500;
  background: rgba(6,8,16,0.95);
  backdrop-filter: blur(16px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 15vh;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-close {
  position: absolute; top: 32px; right: 40px;
  color: var(--text-muted);
  transition: color 0.3s; cursor: pointer;
}
.search-close:hover { color: var(--white); }

.search-inner { width: 100%; max-width: 600px; padding: 0 40px; }
.search-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.search-input-wrap {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 16px; margin-bottom: 32px;
}
.search-input-wrap svg { color: var(--text-muted); flex-shrink: 0; }
#search-input {
  flex: 1;
  background: none; border: none; outline: none;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
}
#search-input::placeholder { color: rgba(255,255,255,0.15); }

.search-results { display: flex; flex-wrap: wrap; gap: 12px; }
.search-result-item {
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.search-result-item:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.search-result-name { font-family: var(--font-serif); font-size: 0.9rem; color: var(--white); }
.search-result-cat  { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* ── OVERLAY BACKDROP ────────────────────────────────────────────── */
.overlay-backdrop {
  position: fixed; inset: 0;
  background: rgba(6,8,16,0.6);
  backdrop-filter: blur(4px);
  z-index: 3500;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.overlay-backdrop.visible { opacity: 1; visibility: visible; }

/* ── TOAST ───────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--charcoal);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 9000;
  white-space: nowrap;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.gold { border-color: var(--gold); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(30px); }
.reveal-up.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }

.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-left.revealed, .reveal-right.revealed {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .lux-content { grid-template-columns: 1fr; gap: 48px; }
  .lux-right { display: none; }
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-image-side { aspect-ratio: 16/9; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu { display: flex; }
  .nav-container { padding: 16px 24px; }

  .hero-content { padding: 0 24px; }
  .hero-scroll { right: 24px; bottom: 24px; }

  .collection,
  .frag-notes-section,
  .testimonials,
  .gallery-section { padding: 80px 24px; }
  .about { padding: 80px 0; }
  .about-container { padding: 0 24px; }
  .contact-container { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .footer { padding: 60px 24px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .lux-content { padding: 0 24px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; }
  .notes-tier { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-stats { gap: 14px; }

  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .gallery-item--tall { aspect-ratio: 1; }

  .lux-stats { grid-template-columns: 1fr 1fr; }
  .modal-content { border-radius: var(--radius-md); }
  .modal-details { padding: 24px; }
  .sidebar { width: 100%; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .testimonial-card { padding: 0 20px; }
  .testimonial-quote { font-size: 1rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
