@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --teal: #0DBFD1;
  --teal-dark: #0A8A9E;
  --teal-light: #5DE0EE;
  --gold: #C87D0A;
  --gold-dark: #A06008;
  --gold-light: #F5A623;
  --coral: #E8206A;
  --hibiscus: #D1224A;
  --green: #2E7D32;
  --bg: #FAF6F0;
  --bg2: #F2E8DA;
  --bg3: #E8DBCA;
  --bgcard: rgba(255, 255, 255, 0.97);
  --txt: #1C0D04;
  --muted: #8C6A50;
  --border: rgba(165, 100, 20, 0.18);
  --glass: rgba(255, 255, 255, 0.72);
  --fd: 'Pacifico', cursive;
  --fb: 'Nunito', sans-serif;
  --nav-h: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: all 0.3s var(--ease);
  --steal: 0 0 28px rgba(13, 191, 209, 0.28);
  --sgold: 0 0 28px rgba(200, 125, 10, 0.28);
  --shadow: 0 12px 48px rgba(50, 15, 0, 0.11);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--fb); background: var(--bg); color: var(--txt); overflow-x: hidden; line-height: 1.7; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.grad-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; border: none; padding: 15px 34px;
  border-radius: 50px; font-family: var(--fb);
  font-weight: 800; font-size: 0.95rem; cursor: pointer;
  transition: var(--trans); text-decoration: none;
  box-shadow: var(--steal); letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(13,191,209,0.48); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg); border: none; padding: 15px 34px;
  border-radius: 50px; font-family: var(--fb);
  font-weight: 800; font-size: 0.95rem; cursor: pointer;
  transition: var(--trans); text-decoration: none;
  box-shadow: var(--sgold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(245,166,35,0.48); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold); border: 1.5px solid rgba(245,166,35,0.5);
  padding: 13px 32px; border-radius: 50px;
  font-family: var(--fb); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: var(--trans); text-decoration: none;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: translateY(-3px); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--fd); font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold); margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(245,166,35,0.25);
}
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.8; }
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 18px auto; width: 180px;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; height: 1px;
}
.ornament::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament span {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px rgba(245,166,35,0.7);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000; transition: var(--trans); padding: 0 28px;
}
#navbar.scrolled {
  background: rgba(250, 246, 240, 0.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(60,20,0,0.08);
}
.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 54px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(13,191,209,0.35)); transition: var(--trans); }
.nav-logo img:hover { filter: drop-shadow(0 0 18px rgba(245,166,35,0.5)); transform: scale(1.04); }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.8px; text-transform: uppercase; transition: var(--trans); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1.5px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s var(--ease); border-radius: 1px; transform-origin: left;
}
.nav-links a:hover { color: var(--txt); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--muted); padding: 9px 18px; border-radius: 50px;
  cursor: pointer; transition: var(--trans); font-family: var(--fb); font-size: 0.85rem; font-weight: 700;
}
.cart-btn svg { flex-shrink: 0; }
.cart-btn:hover { border-color: rgba(245,166,35,0.45); color: var(--txt); }
.cart-count {
  background: var(--gold); color: var(--bg); min-width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800;
  padding: 0 4px;
}

.admin-nav-btn {
  background: transparent; border: none; color: var(--muted); cursor: pointer;
  transition: var(--trans); padding: 8px; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
}
.admin-nav-btn:hover { color: var(--gold); transform: scale(1.1) rotate(5deg); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--muted); transition: var(--trans); border-radius: 1px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); background: var(--txt); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); background: var(--txt); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(250, 246, 240, 0.99); backdrop-filter: blur(24px);
  padding: 20px 28px; z-index: 999; border-bottom: 1px solid var(--border);
  transform: translateY(-8px); opacity: 0; transition: var(--trans);
}
.mobile-menu.active { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a { display: block; padding: 15px 0; color: var(--muted); text-decoration: none; font-weight: 600; font-size: 1rem; letter-spacing: 0.5px; transition: var(--trans); }
.mobile-menu a:hover { color: var(--gold); padding-left: 10px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 90% 75% at 50% 45%, #FEF0CC 0%, #FBF0E0 30%, #FAF4EA 60%, #F5EDE0 100%);
}

/* Color blobs */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  filter: blur(80px);
  animation: blobFloat 20s ease-in-out infinite alternate;
  will-change: transform;
}
.blob-1 { width: 520px; height: 420px; background: rgba(245,166,35,0.32); top: -8%; left: -12%; border-radius: 62% 38% 54% 46% / 48% 62% 38% 52%; animation-delay: 0s; }
.blob-2 { width: 440px; height: 520px; background: rgba(13,191,209,0.22); top: 15%; right: -14%; border-radius: 42% 58% 66% 34% / 60% 40% 50% 50%; animation-delay: -7s; }
.blob-3 { width: 380px; height: 360px; background: rgba(232,32,106,0.16); bottom: 8%; left: 22%; border-radius: 68% 32% 44% 56% / 38% 56% 44% 62%; animation-delay: -14s; }
.blob-4 { width: 300px; height: 320px; background: rgba(245,166,35,0.22); bottom: 12%; right: 12%; border-radius: 50% 50% 38% 62% / 62% 38% 62% 38%; animation-delay: -4s; }

@keyframes blobFloat {
  0%   { transform: translate(0,0) scale(1) rotate(0deg); }
  33%  { transform: translate(28px,-18px) scale(1.06) rotate(4deg); }
  66%  { transform: translate(-18px,26px) scale(0.94) rotate(-3deg); }
  100% { transform: translate(12px,-12px) scale(1.03) rotate(7deg); }
}

/* hero real PNG flowers handled by .hero-hib-real in the wave/deco block */

@keyframes hibFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-16px) rotate(8deg); }
  60% { transform: translateY(-8px) rotate(-4deg); }
}

.hero-content { text-align: center; position: relative; z-index: 2; padding: 20px; }
.hero-logo {
  width: min(500px, 80vw); margin: 0 auto 32px;
  animation: heroIn 1.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 60px rgba(245,166,35,0.4)) drop-shadow(0 6px 24px rgba(0,0,0,0.6));
}
@keyframes heroIn { from { opacity:0; transform: translateY(-40px) scale(0.85); } to { opacity:1; transform: translateY(0) scale(1); } }

.hero-tagline {
  font-family: var(--fd); font-size: clamp(1.2rem, 3vw, 1.85rem);
  color: var(--txt); text-shadow: 0 2px 10px rgba(120,50,0,0.18);
  margin-bottom: 10px; animation: fadeUp 1.2s ease-out 0.4s both;
}
.hero-sub {
  color: var(--muted); font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  margin-bottom: 44px; animation: fadeUp 1.2s ease-out 0.6s both; letter-spacing: 0.3px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1.2s ease-out 0.8s both; }

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

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 1.5px solid rgba(245,166,35,0.35); border-radius: 12px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px; background: var(--gold); border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(8px);opacity:0} }
.scroll-hint span { color: var(--muted); font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; }

/* ── MARQUEE ── */
.marquee-band {
  background: rgba(245,166,35,0.06);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden;
}
.marquee-inner { display: flex; gap: 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 28px; padding: 0 28px; }
.marquee-item span { color: var(--muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.6; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── FEATURES ── */
.features { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 24px; padding: 44px 32px; text-align: center;
  transition: var(--trans); position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -5%, rgba(245,166,35,0.1) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { transform: translateY(-10px); border-color: rgba(245,166,35,0.4); box-shadow: var(--sgold); }
.feature-card:hover::after { opacity: 1; }

.feat-icon-circle {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,166,35,0.25);
  background: rgba(245,166,35,0.08);
  transition: var(--trans);
  position: relative; z-index: 1;
}
.feature-card:hover .feat-icon-circle {
  background: rgba(245,166,35,0.16);
  box-shadow: 0 0 24px rgba(245,166,35,0.2);
}
.feat-icon-circle svg { color: var(--gold); }

.feature-card h3 { font-family: var(--fd); color: var(--gold); font-size: 1.4rem; margin-bottom: 14px; position: relative; z-index: 1; }
.feature-card p { color: var(--muted); line-height: 1.85; font-size: 0.93rem; position: relative; z-index: 1; }

/* ── SHOP ── */
.shop { background: var(--bg2); padding: 108px 0; }
.shop-filters { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }

.filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 9px 24px; border-radius: 50px;
  cursor: pointer; transition: var(--trans); font-family: var(--fb);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

.search-wrap { max-width: 400px; margin: 0 auto 52px; position: relative; }
.search-wrap input {
  width: 100%; background: rgba(255,255,255,0.9); border: 1px solid var(--border);
  border-radius: 50px; padding: 13px 20px 13px 48px; color: var(--txt);
  font-family: var(--fb); font-size: 0.92rem; outline: none; transition: var(--trans);
}
.search-wrap input::placeholder { color: var(--muted); }
.search-wrap input:focus { border-color: var(--teal); box-shadow: var(--steal); }
.search-icon {
  position: absolute; left: 17px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}

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

.product-card {
  background: var(--bgcard); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden; transition: var(--trans); cursor: pointer;
  position: relative;
}
.product-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.product-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 23px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  z-index: 0; opacity: 0; transition: opacity 0.35s;
}
.product-card:hover::before { opacity: 1; }
.product-card-inner { position: relative; z-index: 1; background: var(--bgcard); border-radius: 22px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }

.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); display: block; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-placeholder {
  width: 100%; height: 100%;
  position: relative;
}
.product-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,191,209,0.85); color: white; backdrop-filter: blur(12px);
  padding: 4px 13px; border-radius: 20px; font-size: 0.68rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
}
.sold-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(216,38,38,0.85); color: white;
  padding: 4px 12px; border-radius: 20px; font-size: 0.68rem; font-weight: 800;
}
.featured-indicator {
  position: absolute; bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(245,166,35,0.9); color: #fff; backdrop-filter: blur(12px);
  padding: 4px 11px; border-radius: 20px; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.5px;
}

.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-family: var(--fd); color: var(--txt); font-size: 1.1rem; margin-bottom: 6px; line-height: 1.3; }
.product-price { font-family: var(--fd); color: var(--gold); font-size: 1.5rem; margin-bottom: 9px; }
.product-desc { color: var(--muted); font-size: 0.82rem; margin-bottom: 12px; line-height: 1.55; flex: 1; }
.product-colors { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.color-pill {
  background: rgba(165,100,20,0.07); border: 1px solid var(--border);
  padding: 3px 11px; border-radius: 20px; font-size: 0.72rem; color: var(--muted);
  font-weight: 600; letter-spacing: 0.3px;
}
.product-actions { display: flex; gap: 9px; }
.btn-cart {
  flex: 1; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border: none; color: white; padding: 11px 8px;
  border-radius: 12px; cursor: pointer; transition: var(--trans);
  font-family: var(--fb); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.btn-cart:hover { transform: translateY(-2px); box-shadow: var(--steal); }
.btn-cart:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-details {
  background: var(--glass); border: 1px solid var(--border);
  color: var(--muted); padding: 11px 13px;
  border-radius: 12px; cursor: pointer; transition: var(--trans);
  display: flex; align-items: center;
}
.btn-details:hover { border-color: rgba(245,166,35,0.5); color: var(--gold); }

.shop-more { text-align: center; }
.empty-section { text-align: center; padding: 64px 0; color: var(--muted); }
.empty-section .empty-icon-wrap { width: 80px; height: 80px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.empty-section p { font-size: 1rem; line-height: 1.8; }

/* ── GALLERY ── */
.creations { background: var(--bg); padding: 108px 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 14px; margin-bottom: 52px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 16px;
  cursor: pointer; border: 1px solid var(--border); transition: var(--trans);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); display: block; }
.gallery-placeholder { width: 100%; height: 100%; position: relative; }
.gallery-placeholder::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1.5px, transparent 1.5px); background-size: 20px 20px; }
.gallery-item:hover { border-color: rgba(13,191,209,0.4); box-shadow: var(--steal); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 16px; opacity: 0; transition: var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .zoom-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.8);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: var(--trans);
}
.gallery-item:hover .gallery-overlay .zoom-circle { transform: translate(-50%,-50%) scale(1); }
.gallery-caption { color: white; font-size: 0.8rem; font-weight: 600; text-align: center; letter-spacing: 0.5px; }

/* ── ÉTOILES DE MER DÉCO ── */
.deco-etoile {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  filter: drop-shadow(0 4px 12px rgba(50,15,0,0.18));
}
.deco-etoile--1 {
  width: 88px;
  bottom: -22px;
  left: -22px;
  opacity: 0.92;
  animation: etoile-sway-1 9s ease-in-out infinite;
}
.deco-etoile--2 {
  width: 70px;
  top: 60px;
  right: 40px;
  opacity: 0.85;
  animation: etoile-sway-2 11s ease-in-out 3s infinite;
}
@keyframes etoile-sway-1 {
  0%,100% { transform: rotate(-30deg) translateY(0px); }
  50%      { transform: rotate(-26deg) translateY(-8px) scale(1.05); }
}
@keyframes etoile-sway-2 {
  0%,100% { transform: rotate(20deg) translateY(0px); }
  50%      { transform: rotate(24deg) translateY(-7px) scale(1.04); }
}
@media (max-width: 640px) {
  .deco-etoile--1 { width: 56px; bottom: -14px; left: -14px; }
  .deco-etoile--2 { display: none; }
}

/* ── ABOUT ── */
.about { background: var(--bg2); padding: 108px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-outer { position: relative; }
.about-img-outer::before {
  content: ''; position: absolute; inset: -3px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 50%, var(--coral) 100%);
  border-radius: 26px; z-index: 0;
}
.about-img-inner {
  position: relative; z-index: 1; width: 100%; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #E0EEE8, #F0E4D8);
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
}
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-inner svg { opacity: 0.4; }

.about-content h2 { font-family: var(--fd); font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 24px; }
.about-content p { color: var(--muted); line-height: 1.9; margin-bottom: 18px; font-size: 0.97rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-num { font-family: var(--fd); color: var(--teal); font-size: 2.1rem; display: block; }
.stat-lbl { color: var(--muted); font-size: 0.8rem; margin-top: 5px; letter-spacing: 0.5px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 22px; padding: 34px 28px; transition: var(--trans);
}
.testi-card:hover { border-color: rgba(245,166,35,0.35); transform: translateY(-5px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { color: var(--gold); }
.testi-text { color: var(--muted); line-height: 1.85; margin-bottom: 22px; font-style: italic; font-size: 0.93rem; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
}
.testi-av svg { color: rgba(255,255,255,0.8); }
.testi-name { font-weight: 800; font-size: 0.88rem; color: var(--txt); }
.testi-loc { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── CONTACT ── */
.contact { background: var(--bg2); padding: 108px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { font-family: var(--fd); color: var(--gold); font-size: 1.9rem; margin-bottom: 18px; }
.contact-info p { color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.social-link {
  display: flex; align-items: center; gap: 10px; background: var(--glass);
  border: 1px solid var(--border); padding: 11px 20px; border-radius: 50px;
  color: var(--muted); text-decoration: none; transition: var(--trans); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.3px;
}
.social-link:hover { border-color: rgba(245,166,35,0.5); color: var(--gold); transform: translateY(-3px); }
.info-card { padding: 20px 22px; background: var(--glass); border: 1px solid var(--border); border-radius: 16px; }
.info-card p { color: var(--muted); font-size: 0.87rem; margin: 0; line-height: 1.8; }
.info-card strong { color: var(--gold); }

.contact-form-box { background: var(--glass); border: 1px solid var(--border); border-radius: 26px; padding: 42px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; color: var(--muted); font-size: 0.76rem; margin-bottom: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: rgba(255,255,255,0.88); border: 1px solid var(--border);
  border-radius: 13px; padding: 13px 16px; color: var(--txt);
  font-family: var(--fb); font-size: 0.92rem; outline: none; transition: var(--trans);
}
.fg select option { background: #FAF6F0; color: #1C0D04; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--teal); box-shadow: var(--steal); }
.fg textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer { background: #1C0A00; border-top: 1px solid rgba(245,166,35,0.12); padding: 68px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand img { height: 56px; margin-bottom: 18px; filter: drop-shadow(0 0 10px rgba(13,191,209,0.3)); }
.footer-brand p { color: #B89A72; line-height: 1.85; font-size: 0.87rem; max-width: 270px; }
.footer-col h4 { font-family: var(--fd); color: var(--gold-light); font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #B89A72; text-decoration: none; font-size: 0.87rem; transition: var(--trans); display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--teal); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(245,166,35,0.1); padding-top: 28px; text-align: center; color: #B89A72; font-size: 0.82rem; }
.footer-bottom span { color: var(--gold-light); }
.footer-credit { margin-top: 10px; font-size: 0.75rem; opacity: 0.5; letter-spacing: 0.5px; }
.footer-credit-link {
  color: #B89A72;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,166,35,0.2);
  padding-bottom: 1px;
  transition: color 0.25s, border-color 0.25s, opacity 0.25s;
}
.footer-credit-link:hover { color: var(--teal); border-color: var(--teal); opacity: 1; }

/* ── CART SIDEBAR ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.72); z-index: 2000; opacity: 0; pointer-events: none; transition: var(--trans); backdrop-filter: blur(4px); }
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(400px, 96vw);
  background: var(--bg2); border-left: 1px solid var(--border);
  z-index: 2001; transform: translateX(100%); transition: var(--trans);
  display: flex; flex-direction: column; padding: 28px;
}
.cart-sidebar.active { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-family: var(--fd); color: var(--gold); font-size: 1.5rem; }
.close-cart { background: none; border: none; color: var(--muted); cursor: pointer; transition: var(--trans); padding: 6px; display: flex; align-items: center; border-radius: 8px; }
.close-cart:hover { color: var(--coral); background: rgba(232,32,106,0.1); }
.cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-thumb { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--glass); display: flex; align-items: center; justify-content: center; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { color: var(--txt); font-size: 0.9rem; margin-bottom: 4px; font-weight: 700; }
.cart-item-price { color: var(--gold); font-weight: 800; font-size: 0.92rem; }
.remove-item { background: none; border: none; color: var(--muted); cursor: pointer; transition: var(--trans); padding: 5px; border-radius: 7px; }
.remove-item:hover { color: var(--coral); background: rgba(232,32,106,0.1); }
.cart-footer { padding-top: 20px; margin-top: auto; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cart-total-row span:first-child { color: var(--muted); font-size: 0.9rem; }
.cart-total-row span:last-child { font-family: var(--fd); color: var(--gold); font-size: 1.5rem; }
.cart-ctas { display: flex; flex-direction: column; gap: 10px; }
.cart-ctas a, .cart-ctas button { justify-content: center; text-align: center; }
.empty-cart { text-align: center; padding: 60px 0; color: var(--muted); }
.empty-cart-icon { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.empty-cart p { font-size: 0.95rem; }

/* ── PRODUCT MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: var(--trans); backdrop-filter: blur(10px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.product-modal {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 26px; max-width: 880px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: scale(0.88); transition: var(--trans);
}
.modal-overlay.active .product-modal { transform: scale(1); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img-col { position: relative; min-height: 420px; border-radius: 26px 0 0 26px; overflow: hidden; }
.modal-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-img-placeholder { width: 100%; height: 100%; min-height: 420px; display: flex; align-items: center; justify-content: center; position: relative; }
.modal-img-placeholder::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px); background-size: 22px 22px; }
.modal-img-placeholder svg { position: relative; z-index: 1; opacity: 0.4; }
.modal-thumbs { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; gap: 8px; justify-content: center; padding: 0 12px; }
.modal-thumb { width: 46px; height: 46px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 1.5px solid transparent; transition: var(--trans); }
.modal-thumb.active, .modal-thumb:hover { border-color: var(--gold); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-close-btn { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.55); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 1; transition: var(--trans); }
.modal-close-btn:hover { background: var(--coral); }
.modal-body-col { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.modal-body-col .cat-badge { position: static; display: inline-block; margin-bottom: 14px; }
.modal-body-col h2 { font-family: var(--fd); color: var(--txt); font-size: 1.85rem; margin-bottom: 8px; line-height: 1.2; }
.modal-price { font-family: var(--fd); color: var(--gold); font-size: 2.5rem; margin-bottom: 20px; text-shadow: var(--sgold); }
.modal-desc { color: var(--muted); line-height: 1.85; margin-bottom: 20px; font-size: 0.93rem; }
.modal-colors-label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px; font-weight: 700; }
.modal-colors-row { margin-bottom: 24px; }
.modal-note { color: var(--muted); font-size: 0.75rem; text-align: center; margin-top: 12px; letter-spacing: 0.3px; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--trans); backdrop-filter: blur(12px);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; border-radius: 12px; border: 1px solid var(--border); }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: var(--glass); border: 1px solid var(--border); color: white; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.lightbox-close:hover { background: var(--coral); border-color: var(--coral); }

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.87rem; z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap; box-shadow: var(--steal); pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ─── Scroll Reveal ─────────────────────────── */
/* Section headers: container stays visible, children animate */
.section-header.reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
.reveal {
  opacity: 0;
  transform: translateY(56px) scale(0.94);
  filter: blur(8px);
  transition:
    opacity  1s   cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s   cubic-bezier(0.16, 1, 0.3, 1),
    filter   0.7s  ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-72px) scale(0.95);
  filter: blur(7px);
  transition:
    opacity  1.05s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter   0.7s  ease;
}
.reveal-l.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(72px) scale(0.95);
  filter: blur(7px);
  transition:
    opacity  1.05s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter   0.7s  ease;
}
.reveal-r.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

/* Section header: children stagger in sequence */
.section-header h2 {
  opacity: 0;
  transform: translateY(32px) scale(0.91);
  filter: blur(6px);
  transition:
    opacity  0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter   0.65s ease;
}
.section-header.visible h2 {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.section-header .ornament {
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: opacity 0.5s ease 0.3s, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.section-header.visible .ornament {
  opacity: 1;
  transform: scaleX(1);
}
.section-header > p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.46s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.46s;
}
.section-header.visible > p {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid, .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-img-col { border-radius: 26px 26px 0 0; min-height: 300px; }
}
@media (max-width: 640px) {
  .container { padding: 0 12px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Navbar icônes seulement */
  #userBtnText { display: none; }
  .user-btn { padding: 8px; width: 36px; height: 36px; border-radius: 50%; justify-content: center; }
  .cart-label { display: none; }
  .cart-btn { padding: 8px 10px; gap: 5px; }
  .user-dropdown { right: 0; left: auto; min-width: 180px; }

  /* Boutique 3 colonnes */
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .product-card-inner { border-radius: 14px; }
  .product-img-wrap { aspect-ratio: 3/4; }
  .product-body { padding: 8px 10px 12px; }
  .product-body h3 { font-size: 0.72rem; margin-bottom: 2px; }
  .product-price { font-size: 1rem; margin-bottom: 4px; }
  .product-desc { display: none; }
  .product-colors { display: none; }
  .product-actions { gap: 5px; }
  .btn-cart { padding: 7px 8px; font-size: 0.68rem; gap: 3px; }
  .btn-details { width: 30px; height: 30px; }

  /* Galerie 3 colonnes */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* Esprit Avaya — une ligne */
  .features-grid { grid-template-columns: repeat(3, 1fr) !important; max-width: 100% !important; gap: 10px; }
  .feature-card { padding: 16px 10px; }
  .feature-card h3 { font-size: 0.78rem; margin-bottom: 6px; }
  .feature-card p { font-size: 0.7rem; line-height: 1.5; }
  .feat-icon-circle { width: 42px; height: 42px; margin-bottom: 10px; }
  .feat-icon-circle svg { width: 20px; height: 20px; }

  /* Mon Histoire — côte à côte */
  .about-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; align-items: start; }
  .about-img-outer { width: 100%; }
  .about-content h2 { font-size: 1.05rem; margin-bottom: 8px; }
  .about-content p { font-size: 0.67rem; line-height: 1.5; margin-bottom: 8px; }
  .about-stats { gap: 6px; padding-top: 12px; margin-top: 12px; }
  .stat-num { font-size: 1.2rem; }
  .stat-lbl { font-size: 0.6rem; }

  /* Badges boutique — réduction mobile */
  .cat-badge {
    top: 6px; left: 6px;
    padding: 2px 6px;
    font-size: 0.52rem;
    letter-spacing: 0.5px;
    border-radius: 10px;
  }
  .sold-badge {
    top: 6px; right: 6px;
    padding: 2px 6px;
    font-size: 0.52rem;
    border-radius: 10px;
  }
  .featured-indicator {
    bottom: 6px; right: 6px;
    padding: 2px 6px;
    font-size: 0.52rem;
    gap: 2px;
    border-radius: 10px;
  }
  .featured-indicator svg { width: 9px; height: 9px; }

  /* Fleurs décoratives — visibles mais petites */
  .deco-wrap { display: block; }
  .deco-wrap img { max-width: 80px !important; }
  .deco-r { right: -8px; }
  .deco-l { left: -8px; }
  .deco-t { top: 30px; }
  .deco-m { top: 25%; }
  .deco-b { bottom: 24px; }
}

/* ===== WAVE DIVIDERS ===== */
.wave-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ===== SECTION DECO IMAGES ===== */
.features, .shop, .creations, .about, .contact { position: relative; overflow: visible; }

.deco-wrap {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  will-change: transform;
}
.deco-wrap img {
  display: block;
  filter: none;
}
.deco-r  { right: -20px; }
.deco-l  { left: -20px; }
.deco-t  { top: 60px; }
.deco-m  { top: 30%; }
.deco-b  { bottom: 50px; }

@keyframes deco-sway {
  0%,100% { transform: translateY(0px) rotate(-4deg); }
  50%      { transform: translateY(-28px) rotate(4deg); }
}
@keyframes deco-sway-r {
  0%,100% { transform: translateY(0px) rotate(6deg); }
  50%      { transform: translateY(-22px) rotate(-2deg); }
}
@keyframes deco-sway-s {
  0%,100% { transform: translateY(0px) rotate(-2deg) scale(1); }
  50%      { transform: translateY(-16px) rotate(3deg) scale(1.04); }
}

/* ===== FALLING PETALS (hero) ===== */
.petals-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.petal {
  position: absolute;
  top: -90px;
  opacity: 0;
  animation: petal-fall linear infinite;
  filter: none;
}
@keyframes petal-fall {
  0%   { transform: translateY(-90px) rotate(0deg) scale(0.7); opacity: 0; }
  6%   { opacity: 0.22; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(108vh) rotate(480deg) scale(1.1); opacity: 0; }
}

/* hero-hibiscus real PNGs */
.hero-hib-real {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: none;
}

@media (min-width: 641px) and (max-width: 900px) {
  .deco-wrap { display: none; }
}

/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 55%, var(--coral) 100%);
  z-index: 10001;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(13,191,209,0.5);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ===== NAV ACTIVE INDICATOR ===== */
.nav-links { position: relative !important; }
.nav-indicator {
  position: absolute;
  bottom: -8px; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(13,191,209,0.7), 0 0 20px rgba(245,166,35,0.3);
  transition: left 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
              width 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.nav-links a.nav-active {
  color: var(--gold) !important;
}

/* ── USER BUTTON & DROPDOWN ── */
.user-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 50px;
  font-family: var(--f); font-weight: 700; font-size: 0.85rem; color: var(--txt);
  cursor: pointer; transition: var(--trans); position: relative; white-space: nowrap;
}
.user-btn:hover { border-color: var(--gold); color: var(--gold); }
.user-btn.logged { background: rgba(13,191,209,0.08); border-color: rgba(13,191,209,0.28); color: var(--teal-dark); }
.user-btn svg { flex-shrink: 0; }
.fav-count-badge {
  background: var(--coral); color: white; font-size: 0.62rem; font-weight: 800;
  min-width: 16px; height: 16px; border-radius: 50%; display: none;
  align-items: center; justify-content: center; padding: 0 3px;
}

.user-menu-wrap { position: relative; }
.user-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bgcard); border: 1px solid var(--border); border-radius: 16px;
  padding: 8px; min-width: 190px;
  box-shadow: 0 12px 48px rgba(50,15,0,0.13);
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease; z-index: 4000;
}
.user-dropdown.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-user-info { padding: 10px 14px 8px; border-bottom: 1px solid var(--border); margin-bottom: 6px; }
.dropdown-user-info strong { display: block; font-size: 0.9rem; color: var(--txt); }
.dropdown-user-info span { font-size: 0.75rem; color: var(--muted); }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px; cursor: pointer;
  font-size: 0.87rem; font-weight: 600; color: var(--txt);
  transition: var(--trans); border: none; background: none;
  width: 100%; font-family: var(--f); text-decoration: none; text-align: left;
}
.dropdown-item:hover { background: var(--bg2); }
.dropdown-item.danger { color: var(--coral); }
.dropdown-item.danger:hover { background: rgba(232,32,106,0.07); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* ── AUTH MODAL ── */
.auth-modal {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(28,10,0,0.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.auth-modal.active { opacity: 1; pointer-events: auto; }
.auth-box {
  background: var(--bgcard); border: 1px solid var(--border); border-radius: 28px;
  padding: 40px 36px; width: 100%; max-width: 420px; position: relative;
  box-shadow: 0 24px 80px rgba(60,20,0,0.15);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.auth-modal.active .auth-box { transform: translateY(0) scale(1); }
.auth-close {
  position: absolute; top: 14px; right: 14px; background: none; border: none;
  color: var(--muted); cursor: pointer; font-size: 1rem; padding: 7px; border-radius: 8px;
  transition: var(--trans); line-height: 1;
}
.auth-close:hover { background: var(--bg2); color: var(--txt); }
.auth-logo { display: block; height: 64px; margin: 0 auto 20px; filter: drop-shadow(0 0 14px rgba(200,125,10,0.3)); }
.auth-tabs {
  display: flex; gap: 4px; background: var(--bg2); border-radius: 50px;
  padding: 4px; margin-bottom: 26px;
}
.auth-tab {
  flex: 1; padding: 10px 16px; border: none; background: none; border-radius: 50px;
  font-family: var(--f); font-weight: 700; font-size: 0.88rem; cursor: pointer; color: var(--muted);
  transition: var(--trans);
}
.auth-tab.active { background: var(--bgcard); color: var(--txt); box-shadow: 0 2px 10px rgba(50,15,0,0.08); }
.auth-form-title { font-family: var(--fd); color: var(--gold); font-size: 1.4rem; margin-bottom: 4px; text-align: center; }
.auth-form-sub { color: var(--muted); font-size: 0.85rem; margin-bottom: 22px; text-align: center; }
.auth-input {
  width: 100%; background: rgba(255,255,255,0.9); border: 1px solid var(--border);
  border-radius: 14px; padding: 13px 16px; color: var(--txt); font-family: var(--f);
  font-size: 0.95rem; outline: none; transition: var(--trans); margin-bottom: 11px;
}
.auth-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,191,209,0.1); }
.auth-btn {
  width: 100%; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border: none; color: white; padding: 15px; border-radius: 50px; font-family: var(--f);
  font-weight: 800; font-size: 1rem; cursor: pointer; transition: var(--trans); margin-top: 4px;
}
.auth-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(13,191,209,0.3); }
.auth-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.auth-error { color: #c62828; font-size: 0.82rem; margin-top: 10px; min-height: 18px; text-align: center; }
.auth-switch { text-align: center; margin-top: 16px; font-size: 0.83rem; color: var(--muted); }
.auth-switch button { background: none; border: none; color: var(--teal-dark); font-weight: 700; cursor: pointer; font-size: 0.83rem; font-family: var(--f); padding: 0; }
.auth-switch button:hover { text-decoration: underline; }

/* ── HEART (FAVORIS) ── */
.btn-heart {
  position: absolute; top: 10px; right: 10px; left: auto; width: 34px; height: 34px;
  background: rgba(255,255,255,0.92); border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); z-index: 2; backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(50,15,0,0.1);
}
.btn-heart:hover { background: white; transform: scale(1.15); }
.btn-heart svg { transition: var(--trans); }
.btn-heart.faved svg { color: var(--coral); fill: var(--coral); }
.btn-heart:not(.faved) svg { color: var(--muted); }

/* ── FAVORIS SIDEBAR ── */
.fav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.72); z-index: 3000;
  opacity: 0; pointer-events: none; transition: var(--trans); backdrop-filter: blur(4px);
}
.fav-overlay.active { opacity: 1; pointer-events: all; }
.fav-sidebar {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(400px, 96vw);
  background: var(--bg2); border-left: 1px solid var(--border);
  z-index: 3001; transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 28px;
}
.fav-sidebar.active { transform: translateX(0); }

