/* ═══════════════════════════════════════
   ALY'S CANDLE — Glam Edition
   taste-skill dials: DESIGN_VARIANCE 6 / MOTION_INTENSITY 4 / VISUAL_DENSITY 3
═══════════════════════════════════════ */

:root {
  --rose:        #E8A0B4;
  --rose-light:  #F7D6E0;
  --rose-deep:   #C06A8A;
  --rose-dark:   #8B3A58;
  --cream:       #FAF7F2;
  --cream-dark:  #F0E8DC;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-shine:  #F5E4B8;
  --charcoal:    #1E1612;
  --charcoal-2:  #2C2420;
  --gray:        #7A6B65;
  --white:       #FFFFFF;
  --font-logo:   'Pinyon Script', cursive;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --gold-grad:   linear-gradient(90deg, #C9A96E, #F5E4B8, #C9A96E);
  --rose-grad:   linear-gradient(135deg, #C06A8A, #E8A0B4);
  --shadow-sm:   0 4px 20px rgba(192,106,138,.12);
  --shadow-md:   0 12px 40px rgba(192,106,138,.18);
  --shadow-lg:   0 24px 60px rgba(192,106,138,.25);
  --radius:      18px;
  --t:           .38s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--charcoal); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── TYPE ── */
.logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: goldShift 4s linear infinite;
}
@keyframes goldShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--rose-deep); margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; color: var(--charcoal); line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--rose-deep); }
.section-desc {
  font-size: .92rem; color: var(--gray); max-width: 540px;
  margin: 1.2rem auto 0; line-height: 1.85; text-align: center;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header.light .section-title { color: var(--white); }

/* Gold rule divider — motivated: replaces generic divider-floral, signals luxury tier */
.gold-rule {
  height: 1px; width: 80px;
  background: var(--gold-grad); background-size: 200% auto;
  animation: goldShift 3s linear infinite;
  margin: 1rem auto 0;
  border: none;
}
.gold-rule.left { margin-left: 0; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold-grad); background-size: 200% auto;
  animation: goldShift 3s linear infinite;
  color: var(--charcoal);
  font-family: var(--font-sans); font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .9rem 2.6rem; border-radius: 50px; border: none; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 20px rgba(201,169,110,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,169,110,.55); }
.btn-gold.full  { width: 100%; text-align: center; }
.btn-gold.small { padding: .6rem 1.6rem; font-size: .7rem; }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.6); color: var(--white);
  font-family: var(--font-sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .85rem 2.2rem; border-radius: 50px; cursor: pointer;
  transition: var(--t); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-ghost-dark {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.7); color: var(--white);
  font-family: var(--font-sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .85rem 2.4rem; border-radius: 50px; cursor: pointer;
  transition: var(--t);
}
.btn-ghost-dark:hover { background: var(--white); color: var(--charcoal); }

/* ══════════════ NAVBAR ══════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.88); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,.15);
  transition: box-shadow var(--t);
}
#navbar.scrolled { box-shadow: 0 2px 30px rgba(30,22,18,.1); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-wrap { display: flex; align-items: center; gap: .6rem; }
.nav-logo-img  { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: .73rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray); transition: color .2s;
}
.nav-links a:hover { color: var(--rose-deep); }
.cart-btn {
  background: none; border: none; cursor: pointer; position: relative;
  color: var(--charcoal); padding: .4rem; display: flex;
  align-items: center; transition: color .2s;
}
.cart-btn:hover { color: var(--rose-deep); }
.cart-count {
  position: absolute; top: -5px; right: -7px;
  background: var(--gold-grad); background-size: 200%;
  color: var(--charcoal); font-size: .6rem; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0); transition: var(--t);
}
.cart-count.show { opacity: 1; transform: scale(1); }

/* Burger button — hidden on desktop */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem; z-index: 1001;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; align-items: center; gap: 0;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,169,110,.15);
  padding: 1.2rem 0 1.6rem;
  position: absolute; top: 70px; left: 0; right: 0;
  box-shadow: 0 8px 32px rgba(30,22,18,.1);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform .25s, opacity .25s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-link {
  display: block; width: 100%; text-align: center;
  padding: .85rem 2rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gray);
  transition: color .2s, background .2s;
}
.mobile-link:hover { color: var(--rose-deep); background: rgba(201,169,110,.05); }

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
/* Ken Burns — motivated: creates sense of depth for a tactile product that invites touch */
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1);    object-position: center 40%; }
  to   { transform: scale(1.08); object-position: center 55%; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,22,18,.62) 0%,
    rgba(139,58,88,.35) 50%,
    rgba(30,22,18,.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.hero-eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-light); opacity: .9;
}
/* Shimmer on hero title — motivated: luxury brand signal, single use on hero only */
.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(3.4rem, 7.5vw, 6.2rem);
  line-height: 1.2;
  padding: .12em .2em;
  max-width: 90vw;
  background: linear-gradient(90deg,
    rgba(255,255,255,.7) 0%,
    #FFFFFF 30%,
    var(--gold-shine) 50%,
    #FFFFFF 70%,
    rgba(255,255,255,.7) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 5s linear infinite;
  filter: drop-shadow(0 2px 24px rgba(245,228,184,.3));
}
@keyframes titleShimmer {
  0%   { background-position: 100% center; }
  100% { background-position: -100% center; }
}
.hero-tagline {
  font-family: var(--font-serif); font-size: clamp(1rem, 2.2vw, 1.45rem);
  color: rgba(255,255,255,.88); font-weight: 300; letter-spacing: .06em;
  font-style: italic;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .4rem; }
.hero-scroll-line {
  position: absolute; bottom: 2.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll-line span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(245,228,184,.8));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(.6); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}

/* ══════════════ BAND ══════════════ */
.band {
  background: linear-gradient(90deg, var(--rose-dark) 0%, var(--rose-deep) 50%, var(--rose-dark) 100%);
  overflow: hidden; padding: .7rem 0; white-space: nowrap;
}
.band-track {
  display: inline-flex; gap: 1.6rem; align-items: center;
  animation: bandScroll 28s linear infinite;
}
.band-track span { font-size: .74rem; font-weight: 500; letter-spacing: .1em; color: var(--white); }
.band-track .dot  { color: var(--gold-light); font-size: .7rem; }
.flag-ch { width: 1.1em; height: 1.1em; object-fit: contain; vertical-align: middle; border-radius: 2px; }
@keyframes bandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════ CATEGORIES ══════════════ */
.categories { padding: 6rem 2rem; max-width: 1240px; margin: 0 auto; position: relative; }
.categories::before {
  content: '';
  position: absolute;
  top: 0; left: -8%;
  width: min(340px, 32%); aspect-ratio: 1;
  background: url('Logo.jpeg') center / contain no-repeat;
  opacity: .13;
  pointer-events: none;
  z-index: 0;
}
.categories .section-header,
.categories .cat-bento { position: relative; z-index: 1; }

/* Bento grid — no equal cells, asymmetric by design */
.cat-bento {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: 300px 240px;
  gap: 1rem;
}
.cat-tile { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.cat-tile.cat-hero { grid-row: 1 / 3; }
.cat-tile.cat-wide { grid-column: 2 / 4; }

.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.cat-tile:hover img { transform: scale(1.07); }

/* Glassmorphism label — motivated: creates luxury depth layer, consistent with high-end boutique UI */
.cat-glass {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top,
    rgba(30,22,18,.78) 0%,
    rgba(30,22,18,.3) 70%,
    transparent 100%
  );
  padding: 2.8rem 1.6rem 1.6rem;
  color: var(--white); transform: translateY(0); transition: padding var(--t);
}
.cat-tile:hover .cat-glass { padding-bottom: 2.2rem; }
.cat-glass h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; }
.cat-glass p  { font-size: .76rem; opacity: .75; margin-top: .2rem; }
.cat-arrow {
  display: inline-block; font-size: 1.1rem; margin-top: .6rem;
  opacity: 0; transform: translateX(-6px); transition: var(--t);
  color: var(--gold-light);
}
.cat-tile:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════ SHOP ══════════════ */
.shop { padding: 5rem 2rem 6rem; background: var(--cream); position: relative; overflow: hidden; }
.shop .section-header,
.shop .filters,
.shop .products-grid { position: relative; z-index: 1; }
.shop .section-header { max-width: 1240px; margin-left: auto; margin-right: auto; }

.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  background: none; border: 1.5px solid var(--rose-light); color: var(--gray);
  font-family: var(--font-sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .55rem 1.5rem; border-radius: 50px; cursor: pointer; transition: var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose-deep); border-color: var(--rose-deep); color: var(--white);
  box-shadow: 0 4px 16px rgba(192,106,138,.35);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem; max-width: 1240px; margin: 0 auto;
}

/* Product card with glass effect */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; position: relative;
  border: 1px solid rgba(201,169,110,.1);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,169,110,.35); }
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 1;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--gold-grad); background-size: 200%;
  animation: goldShift 3s linear infinite;
  color: var(--charcoal); font-size: .6rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 50px;
}
.product-wishlist {
  position: absolute; top: .9rem; right: .9rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: transform var(--t); box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.product-wishlist:hover { transform: scale(1.2); }

.product-info { padding: 1.4rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .64rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .3rem;
}
.product-name {
  font-family: var(--font-serif); font-size: 1.18rem; font-weight: 400;
  color: var(--charcoal); line-height: 1.25; margin-bottom: .8rem;
}
.product-fragrance-select {
  width: 100%; font-family: var(--font-sans); font-size: .78rem;
  padding: .55rem .9rem; border: 1.5px solid var(--cream-dark);
  border-radius: 10px; background: var(--cream); color: var(--charcoal);
  margin-bottom: .9rem; cursor: pointer; outline: none; transition: border-color .2s;
  flex: 1;
}
.product-fragrance-select:focus { border-color: var(--gold); }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: auto; }
.product-price {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--charcoal);
}
.product-price span { font-size: .72rem; font-weight: 400; color: var(--gray); margin-right: .1rem; }
.add-to-cart {
  background: var(--gold-grad); background-size: 200%; animation: goldShift 3s linear infinite;
  border: none; color: var(--charcoal); border-radius: 50px;
  padding: .55rem 1.3rem; cursor: pointer; font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap; box-shadow: 0 2px 12px rgba(201,169,110,.3);
}
.add-to-cart:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(201,169,110,.5); }

/* ══════════════ BANNER MID ══════════════ */
.banner-mid {
  position: relative; height: 65vh; min-height: 420px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.banner-mid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.banner-mid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,22,18,.68) 0%, rgba(192,106,138,.45) 60%, rgba(30,22,18,.6) 100%);
}
.banner-mid-text {
  position: relative; z-index: 2; text-align: center; color: var(--white); padding: 2rem;
}
.banner-mid-text h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.banner-mid-text em { font-style: italic; color: var(--gold-light); }

/* ══════════════ COFFRETS ══════════════ */
.coffrets { padding: 6rem 2rem; background: var(--cream); }
.coffrets .section-header { max-width: 1240px; margin-left: auto; margin-right: auto; }
.coffrets .section-eyebrow { color: var(--gold); }

.coffrets-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.6rem;
  max-width: 1240px; margin: 0 auto;
  align-items: stretch;
}

.coffret-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  border: 1px solid rgba(201,169,110,.12);
  transition: transform var(--t), box-shadow var(--t);
}
.coffret-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,169,110,.4); }
.coffret-card.coffret-featured { border-color: rgba(201,169,110,.35); box-shadow: var(--shadow-md); }

.coffret-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.coffret-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.coffret-card:hover .coffret-img img { transform: scale(1.06); }

.coffret-ribbon {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold-grad); background-size: 200%;
  animation: goldShift 3s linear infinite;
  color: var(--charcoal); font-size: .6rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
}
.coffret-ribbon-rose { background: var(--rose-grad); color: var(--white); animation: none; }

.coffret-body { padding: 1.6rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; gap: .6rem; }
.coffret-tag { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.coffret-body h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: var(--charcoal); line-height: 1.2; }
.coffret-featured .coffret-body h3 { font-size: 1.5rem; }
.coffret-body p { font-size: .85rem; line-height: 1.75; color: var(--gray); flex: 1; }
.coffret-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .6rem; }
.coffret-price { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--charcoal); }
.coffret-price span { font-size: .75rem; font-weight: 400; color: var(--gray); margin-right: .1rem; }

@media (max-width: 900px) {
  .coffrets-grid { grid-template-columns: 1fr; }
  .coffret-img { aspect-ratio: 16/9; }
}

/* ══════════════ FRAGRANCES ══════════════ */
.fragrances { padding: 6rem 0; background: var(--white); position: relative; overflow: hidden; }
.fragrances .section-header,
.fragrances .fragrance-scroll { position: relative; z-index: 1; }
.fragrances .section-header { padding: 0 2rem; }

/* Horizontal scroll carousel — motivated: 34 items suit scannable scroll over crowded grid */
.fragrance-scroll {
  display: flex; gap: .85rem;
  overflow-x: auto; padding: 1rem 2rem 2rem;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.fragrance-scroll::-webkit-scrollbar { display: none; }

.fragrance-pill {
  flex-shrink: 0; scroll-snap-align: start;
  background: var(--cream); border-radius: 14px;
  padding: 1.1rem 1.3rem; text-align: center;
  border: 1.5px solid transparent; cursor: pointer; transition: var(--t);
  min-width: 130px;
}
.fragrance-pill:hover {
  border-color: var(--gold); background: linear-gradient(135deg, #FFF9F0, #FAF6F2);
  transform: translateY(-4px); box-shadow: var(--shadow-sm);
}
.fragrance-pill .f-emoji { font-size: 1.7rem; display: block; margin-bottom: .4rem; }
.fragrance-pill .f-name { font-family: var(--font-serif); font-size: .92rem; color: var(--charcoal); }
.fragrance-pill .f-family { font-size: .62rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-top: .25rem; font-weight: 600; }

/* ══════════════ ABOUT ══════════════ */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; overflow: hidden; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* Floating badge — motivated: communicates brand depth number at a glance on key visual */
.about-img-badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  background: var(--gold-grad); background-size: 200%; animation: goldShift 3s linear infinite;
  border-radius: 50%; width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(201,169,110,.45);
}
.badge-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--charcoal); line-height: 1; }
.badge-txt { font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal-2); }

.about-text {
  background: var(--cream); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center; gap: .85rem;
  position: relative; overflow: hidden;
}
/* Ghost logo watermark */
.about-text::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; aspect-ratio: 1;
  background: url('Logo.jpeg') center / contain no-repeat;
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
.about-text > * { position: relative; z-index: 1; }
.about-text .section-title { text-align: left; }
.about-text p { font-size: .93rem; line-height: 1.9; color: var(--gray); }
.about-text strong { color: var(--charcoal); font-weight: 600; }
.about-pills { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.about-pills span {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 50px; padding: .45rem 1.1rem;
  font-size: .74rem; font-weight: 600; color: var(--charcoal-2);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* ══════════════ MARCHÉS ══════════════ */
.marches { background: linear-gradient(135deg, #1E1218 0%, #3D1F2D 50%, #5A2840 100%); padding: 6rem 2rem; }
.marches-header { max-width: 1000px; margin: 0 auto 3rem; display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.marches-header .section-title { color: var(--white); }
.marches-sub { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.marches-asymmetric { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.2rem; }
.marche-featured {
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,169,110,.4);
  border-radius: var(--radius); padding: 2.6rem 3rem; display: flex; flex-direction: column;
  justify-content: space-between; gap: 2rem; backdrop-filter: blur(10px); transition: var(--t);
}
.marche-featured:hover { background: rgba(255,255,255,.12); }
.marche-featured-top { display: flex; align-items: flex-start; justify-content: space-between; }
.marche-big-date { text-align: right; }
.big-day { font-family: var(--font-serif); font-size: 4.5rem; font-weight: 300; color: var(--white); line-height: 1; display: block; }
.big-month { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.marche-featured-body h3 { font-family: var(--font-serif); font-size: 1.55rem; color: var(--white); font-weight: 300; margin-bottom: .4rem; }
.marche-time { font-size: .8rem; color: var(--gold-light); letter-spacing: .08em; margin-bottom: .5rem; }
.marche-note { font-size: .84rem; color: rgba(255,255,255,.6); font-style: italic; }
.badge-prochain { background: var(--gold-grad); background-size: 200%; animation: goldShift 3s linear infinite; color: var(--charcoal); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: .3rem 1rem; border-radius: 50px; }
.marches-stack { display: flex; flex-direction: column; gap: 1.2rem; }
.marche-small { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.6rem 2rem; display: flex; gap: 1.5rem; align-items: center; flex: 1; transition: var(--t); backdrop-filter: blur(8px); }
.marche-small:hover { background: rgba(255,255,255,.12); border-color: rgba(201,169,110,.3); }
.marche-small-date { text-align: center; flex-shrink: 0; min-width: 44px; }
.marche-small-date span:first-child { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--white); display: block; line-height: 1; }
.marche-small-date span:last-child { font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-top: .2rem; }
.marche-small h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--white); font-weight: 400; }
.marche-small p  { font-size: .74rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* ══════════════ INSTAGRAM MOSAIC ══════════════ */
.insta-section { padding: 6rem 2rem; background: var(--cream); }
.insta-handle { font-size: .74rem; font-weight: 600; letter-spacing: .2em; color: var(--rose-deep); margin-top: .4rem; }
.insta-cta { text-align: center; margin-top: 2.5rem; }

/* Asymmetric mosaic — no equal columns, varied heights */
.insta-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: .8rem; max-width: 1100px; margin: 0 auto;
}
.insta-cell { overflow: hidden; border-radius: 14px; position: relative; }
.insta-cell.insta-large { grid-row: 1 / 3; }
.insta-cell.insta-tall  { grid-row: 1 / 3; }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.insta-cell:hover img { transform: scale(1.06); }
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(192,106,138,.45); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--white); opacity: 0; transition: opacity .35s;
}
.insta-cell:hover .insta-hover { opacity: 1; }

/* ══════════════ CONTACT ══════════════ */
.contact-section { background: linear-gradient(135deg, #1E1218, #3D1F2D, #5A2840); padding: 6rem 2rem; }
.contact-inner { max-width: 620px; margin: 0 auto; }
.contact-sub { color: rgba(255,255,255,.65); font-family: var(--font-serif); font-style: italic; font-size: .95rem; margin-top: .6rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px; padding: .9rem 1.2rem; width: 100%;
  font-family: var(--font-sans); font-size: .88rem; color: var(--white); outline: none;
  transition: border-color .2s; backdrop-filter: blur(8px);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.38); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══════════════ FOOTER ══════════════ */
footer { background: var(--charcoal); color: rgba(255,255,255,.65); }
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 4.5rem 2rem 3.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: .5rem; }
.footer-logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,169,110,.4); }
.footer-brand .logo { font-size: 2.2rem; }
.footer-brand > p { font-size: .8rem; opacity: .55; }
.footer-insta {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .6rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; color: var(--rose-light);
  transition: color .2s;
}
.footer-insta:hover { color: var(--rose); }
.footer-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; font-size: .84rem; line-height: 2.1; opacity: .6; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; color: var(--rose-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); text-align: center; padding: 1.6rem; font-size: .74rem; opacity: .75; }

/* ══════════════ CART ══════════════ */
.cart-overlay { position: fixed; inset: 0; z-index: 980; background: rgba(30,22,18,.55); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .35s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: 0; bottom: 0; z-index: 990; width: 420px; max-width: 96vw; background: var(--white); box-shadow: -10px 0 60px rgba(30,22,18,.15); transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 1.8rem 2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--cream-dark); }
.cart-header h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; }
.cart-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--gray); padding: .3rem; transition: color .2s; }
.cart-close:hover { color: var(--rose-deep); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 2rem; }
.cart-empty { text-align: center; padding: 4rem 2rem; color: var(--gray); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty p { font-size: .9rem; margin-bottom: 1.5rem; }
.cart-item { display: flex; gap: 1.1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--cream-dark); }
.cart-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-serif); font-size: 1rem; }
.cart-item-frag { font-size: .73rem; color: var(--gray); font-style: italic; margin: .2rem 0; }
.cart-item-price { font-weight: 700; font-size: .92rem; color: var(--charcoal); }
.cart-item-qty { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.qty-btn { background: var(--cream); border: none; border-radius: 50%; width: 25px; height: 25px; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: var(--rose-light); }
.qty-val { font-size: .85rem; font-weight: 700; min-width: 1.4rem; text-align: center; }
.remove-item { background: none; border: none; color: #ccc; cursor: pointer; font-size: 1rem; padding: .2rem; transition: color .2s; margin-left: auto; }
.remove-item:hover { color: var(--rose-deep); }
.cart-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--cream-dark); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.cart-shipping { font-size: .76rem; color: var(--gray); margin-bottom: 1.2rem; }

/* ══════════════ CHECKOUT ══════════════ */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(30,22,18,.65); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .35s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: 22px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 2.6rem; transform: translateY(24px); transition: transform .4s ease; position: relative; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--gray); }
.modal-logo { text-align: center; margin-bottom: 1.4rem; }
.modal-logo .logo { font-size: 2.2rem; }
.modal-steps { display: flex; gap: .5rem; margin-bottom: 2rem; }
.step { flex: 1; text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .6rem; border-radius: 10px; background: var(--cream); color: var(--gray); transition: var(--t); }
.step.active { background: var(--gold-grad); background-size: 200%; animation: goldShift 3s linear infinite; color: var(--charcoal); }
.step.done { background: var(--rose-light); color: var(--rose-deep); }
.modal-step-content { display: none; flex-direction: column; gap: 1rem; }
.modal-step-content.active { display: flex; }
.modal-step-content h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: .2rem; }
.modal-step-content input { width: 100%; padding: .85rem 1.1rem; border: 1.5px solid var(--cream-dark); border-radius: 12px; font-family: var(--font-sans); font-size: .87rem; outline: none; transition: border-color .2s; color: var(--charcoal); background: var(--white); }
.modal-step-content input:focus { border-color: var(--gold); }
.payment-methods { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: .5rem; }
.pay-method { flex: 1; min-width: 100px; border: 1.5px solid var(--cream-dark); border-radius: 14px; padding: .9rem 1rem; cursor: pointer; display: flex; align-items: center; gap: .6rem; font-size: .82rem; transition: var(--t); }
.pay-method input[type=radio] { accent-color: var(--gold); }
.pay-method.active { border-color: var(--gold); background: linear-gradient(135deg, #FFF9F0, #FAFAF8); }
.order-summary { background: var(--cream); border-radius: 14px; padding: 1.2rem 1.4rem; font-size: .84rem; margin: .5rem 0; }
.order-summary-row { display: flex; justify-content: space-between; padding: .3rem 0; }
.order-summary-row.total { border-top: 1px solid var(--cream-dark); margin-top: .5rem; padding-top: .7rem; font-weight: 700; font-size: .95rem; }
.secure-note { font-size: .7rem; color: var(--gray); text-align: center; }
.success-wrap { text-align: center; padding: 1rem 0; display: flex; flex-direction: column; gap: 1rem; }
.success-icon { font-size: 4rem; animation: popIn .7s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes popIn { from { transform: scale(0) rotate(-20deg); } to { transform: scale(1) rotate(0); } }
.success-wrap h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; }
.success-wrap p { font-size: .88rem; color: var(--gray); line-height: 1.7; }
.success-sig { color: var(--rose-deep); font-style: italic; font-family: var(--font-serif); font-size: 1rem; }

/* ══════════════ TOAST ══════════════ */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--charcoal); color: var(--white);
  padding: .85rem 2.2rem; border-radius: 50px; font-size: .83rem; font-weight: 500;
  z-index: 2000; transition: transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none; white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  border: 1px solid rgba(201,169,110,.25);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .cat-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 240px; }
  .cat-tile.cat-hero { grid-row: 1 / 3; }
  .cat-tile.cat-wide { grid-column: 1 / 3; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: 420px; }
  .about-text { padding: 4rem 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .insta-mosaic { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 200px 200px; }
  .insta-cell.insta-large { grid-row: auto; }
  .insta-cell.insta-tall  { grid-row: auto; }
}

@media (max-width: 768px) {
  /* Navbar — show burger, hide links */
  .nav-links.left { display: none; }
  .nav-links.right a { display: none; }
  .burger { display: flex; }
  #navbar { position: sticky; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }

  /* Categories */
  .categories { padding: 3.5rem 1.2rem; }
  .cat-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cat-tile { aspect-ratio: 4/3; }
  .cat-tile.cat-hero { grid-row: auto; aspect-ratio: 1; }
  .cat-tile.cat-wide { grid-column: 1; aspect-ratio: 16/9; }

  /* Shop */
  .shop { padding: 3.5rem 1.2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Coffrets */
  .coffrets-grid { grid-template-columns: 1fr; }

  /* Fragrances */
  .fragrances { padding: 3.5rem 0; }
  .frag-card { min-width: 130px; padding: .9rem .7rem; }

  /* About */
  .about-text { padding: 3rem 1.5rem; }

  /* Marchés */
  .marches-asymmetric { grid-template-columns: 1fr; }
  .marches-stack { flex-direction: row; }
  .marche-small { flex: 1; }

  /* Instagram */
  .insta-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 160px); }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  /* Navbar */
  .nav-inner { padding: 0 1.2rem; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  /* Categories */
  .cat-bento { gap: .6rem; }

  /* Shop */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .product-img-wrap { aspect-ratio: 3/4; }
  .product-info { padding: .9rem .8rem; }
  .product-name { font-size: .85rem; }

  /* Fragrance carousel */
  .frag-card { min-width: 110px; }

  /* Marchés */
  .marches-stack { flex-direction: column; }

  /* Instagram */
  .insta-mosaic { grid-template-columns: 1fr 1fr; }

  /* Cart & modal */
  .cart-sidebar { width: 100vw; }
  .modal { padding: 1.6rem 1.2rem; border-radius: 16px 16px 0 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }

  /* Section spacing */
  .categories, .shop, .fragrances,
  .coffrets, .about, .marches, .contact { scroll-margin-top: 70px; }
}
