/* ===============================================
   ROYALSTRAP — Premium CSS
   Theme: Dark Luxury / Gold Accents
=============================================== */

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

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #9a7a2c;
  --bg: #080810;
  --bg2: #0d0d1a;
  --bg3: #12121f;
  --bg4: #1a1a2e;
  --card: #111120;
  --border: rgba(201,168,76,0.15);
  --border-strong: rgba(201,168,76,0.35);
  --text: #f0ece0;
  --text-muted: #8a8a9a;
  --text-dim: #5a5a6a;
  --white: #ffffff;
  --success: #2ecc71;
  --error: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* ── Selection ── */
::selection { background: var(--gold); color: #000; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p { color: var(--text-muted); font-weight: 300; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: 4px; } .gap-8 { gap: 8px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { max-width: 500px; margin: 0 auto; }
.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 16px auto; border-radius: 2px; }

/* ═══════════════════════
   NAVIGATION
═══════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center;
  background: rgba(8,8,16,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8,8,16,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner { width: 100%; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

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

.nav-cart {
  position: relative;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
  padding: 8px;
}
.nav-cart:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.nav-lang { display: flex; gap: 4px; }
.lang-btn {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-dim);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-user-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.nav-user-btn:hover { border-color: var(--gold); color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ═══════════════════════
   HERO
═══════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(26,26,46,0.8) 0%, transparent 60%),
              linear-gradient(135deg, #080810 0%, #0d0d1a 50%, #080810 100%);
}

.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold);
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.hero-text { }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title { color: var(--white); margin-bottom: 8px; }
.hero-title .accent { color: var(--gold); display: block; font-style: italic; }

.hero-subtitle { font-size: 1.05rem; line-height: 1.8; margin: 24px 0 40px; max-width: 480px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.1);
}
.hero-image-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}
.hero-image-wrap img { width: 100%; height: auto; display: block; }

.hero-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--bg);
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: spin-slow 20s linear infinite;
}
.hero-badge .num { font-size: 1.8rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.hero-badge .label { font-size: 0.55rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }

@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ═══════════════════════
   BUTTONS
═══════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.6s, height 0.6s, opacity 0.6s;
  opacity: 0;
}
.btn:active::before { width: 200px; height: 200px; opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0a0a;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); color: #0a0a0a; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); transform: translateY(-2px); color: var(--gold); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.btn-danger { background: #e74c3c; color: #fff; }
.btn-danger:hover { background: #c0392b; transform: translateY(-1px); }

.btn-sm { padding: 8px 18px; font-size: 0.75rem; }
.btn-lg { padding: 18px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: 8px; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ═══════════════════════
   PRODUCT CARDS
═══════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg3);
}

.product-card-color-bg {
  position: absolute; inset: 0;
  opacity: 0.15;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-color-bg { opacity: 0.25; }

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-card-no-image {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

.product-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-new { background: var(--gold); color: #000; }
.badge-out { background: rgba(231,76,60,0.2); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }

.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }

.product-card-body { padding: 20px; }
.product-color-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.color-dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); }
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}
.product-add-btn {
  flex: 1;
  padding: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.product-add-btn:hover { background: var(--gold); color: #000; }
.product-add-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ═══════════════════════
   WHY US SECTION
═══════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; }

/* ═══════════════════════
   FORMS
═══════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control::placeholder { color: var(--text-dim); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════
   CARDS & PANELS
═══════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.card-sm { padding: 20px; }
.card-header { padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.card-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); }

/* ═══════════════════════
   CART
═══════════════════════ */
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto auto;
  align-items: center; gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: var(--transition);
}
.cart-item:hover { border-color: var(--border-strong); }
.cart-item-image {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-name { font-weight: 600; color: var(--white); font-family: var(--font-display); margin-bottom: 4px; }
.cart-item-color { font-size: 0.8rem; color: var(--text-dim); }
.qty-control { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 32px; height: 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.qty-btn:first-child { border-radius: 8px 0 0 8px; }
.qty-btn:last-child { border-radius: 0 8px 8px 0; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-input {
  width: 48px; height: 32px;
  text-align: center;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-left: none; border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

/* ═══════════════════════
   CART SUMMARY
═══════════════════════ */
.cart-summary { position: sticky; top: 90px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.summary-label { color: var(--text-muted); }
.shipping-progress { margin: 16px 0; }
.shipping-bar { height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; margin-top: 8px; }
.shipping-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; transition: width 0.5s; }

/* ═══════════════════════
   FLASH MESSAGES
═══════════════════════ */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 500;
  animation: slideDown 0.3s ease;
}
.flash span { font-size: 1rem; }
.flash-success { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); color: #2ecc71; }
.flash-error { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: #e74c3c; }
.flash-info { background: rgba(52,152,219,0.1); border: 1px solid rgba(52,152,219,0.3); color: #3498db; }
.flash-warning { background: rgba(243,156,18,0.1); border: 1px solid rgba(243,156,18,0.3); color: #f39c12; }

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

/* ═══════════════════════
   STATUS BADGES
═══════════════════════ */
.status-badge {
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.5px;
}

/* ═══════════════════════
   TABLES
═══════════════════════ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th { padding: 14px 16px; text-align: left; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); background: var(--bg3); border-bottom: 1px solid var(--border); }
td { padding: 14px 16px; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ═══════════════════════
   LIVE CHAT
═══════════════════════ */
.chat-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  transition: var(--transition);
  animation: pulse-bubble 3s ease infinite;
}
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(201,168,76,0.5); }
.chat-bubble svg { width: 28px; height: 28px; fill: #000; }

@keyframes pulse-bubble {
  0%, 100% { box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 8px 40px rgba(201,168,76,0.7); }
}

.chat-notification {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #e74c3c;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.chat-window {
  position: fixed; bottom: 96px; right: 24px; z-index: 998;
  width: 360px;
  background: var(--bg2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  max-height: 480px;
}
.chat-window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

.chat-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg4), var(--bg3));
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #000;
}
.chat-header-info h4 { font-size: 0.9rem; color: var(--white); font-family: var(--font-body); font-weight: 600; }
.chat-status { font-size: 0.75rem; color: var(--success); display: flex; align-items: center; gap: 4px; }
.chat-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: blink 1.5s ease infinite; }
@keyframes blink { 50% { opacity: 0.4; } }

.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 250px;
}
.chat-msg { max-width: 80%; }
.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.chat-msg.agent { align-self: flex-start; }
.chat-msg.agent .chat-msg-bubble { background: var(--bg4); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user { align-self: flex-end; }
.chat-msg.user .chat-msg-bubble { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #000; font-weight: 500; border-bottom-right-radius: 4px; }
.chat-msg-time { font-size: 0.65rem; color: var(--text-dim); margin-top: 4px; padding: 0 4px; }

.chat-start-form { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-start-form input {
  padding: 10px 14px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-family: var(--font-body); font-size: 0.875rem; outline: none;
}
.chat-start-form input:focus { border-color: var(--gold); }

.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex; gap: 8px;
}
.chat-input {
  flex: 1; padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-family: var(--font-body); font-size: 0.875rem; outline: none;
}
.chat-input:focus { border-color: var(--gold); }
.chat-send-btn {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; border-radius: 8px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-send-btn:hover { transform: scale(1.05); }
.chat-send-btn svg { width: 16px; height: 16px; fill: #000; }

/* ═══════════════════════
   PAYMENT CARDS
═══════════════════════ */
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.payment-option {
  padding: 20px;
  background: var(--bg3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.payment-option:hover, .payment-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.payment-option input[type=radio] { display: none; }
.payment-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.payment-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.payment-info { margin-top: 16px; padding: 16px; background: rgba(52,152,219,0.08); border: 1px solid rgba(52,152,219,0.2); border-radius: 8px; font-size: 0.85rem; color: #7fb8db; }

/* ═══════════════════════
   ACCOUNT DASHBOARD
═══════════════════════ */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.account-sidebar { }
.account-menu { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.account-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.account-menu a:hover, .account-menu a.active {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border: 1px solid var(--border);
}
.account-menu a .icon { width: 18px; text-align: center; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); letter-spacing: 4px; margin-bottom: 16px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; max-width: 260px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-dim); font-size: 0.875rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* ═══════════════════════
   ANIMATIONS
═══════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.15) 50%, transparent 100%);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
}

/* ═══════════════════════
   TOAST NOTIFICATIONS
═══════════════════════ */
.toast-container {
  position: fixed; top: 80px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  padding: 14px 20px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  pointer-events: all;
  animation: slideInRight 0.3s ease;
  min-width: 260px;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--error); }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ═══════════════════════
   PAGE HEADER
═══════════════════════ */
.page-header {
  padding: 120px 0 60px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ═══════════════════════
   ADMIN STYLES
═══════════════════════ */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 24px 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-logo { padding: 0 24px 24px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.admin-logo h1 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); letter-spacing: 3px; }
.admin-logo span { color: var(--gold); }
.admin-logo p { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; }
.admin-nav { padding: 0 12px; }
.admin-nav-section { margin-bottom: 24px; }
.admin-nav-title { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); padding: 0 12px; margin-bottom: 8px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  transition: var(--transition); margin-bottom: 2px;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(201,168,76,0.08);
  color: var(--gold); border: 1px solid var(--border);
}
.admin-nav a .icon { width: 18px; font-size: 1rem; }
.admin-main { padding: 32px; overflow-y: auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-header h1 { font-size: 1.6rem; color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; position: relative; overflow: hidden;
}
.stat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.stat-label { font-size: 0.8rem; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }

/* ═══════════════════════
   MODAL
═══════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 32px;
  width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto;
  transform: scale(0.95); transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-close { background: none; border: none; color: var(--text-dim); font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.modal-close:hover { color: var(--white); }

/* ═══════════════════════
   RESPONSIVE — TABLET
═══════════════════════ */
/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { display: none; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-text > div:last-child { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .account-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; transform: translateX(-100%); transition: transform .3s; z-index: 200; height: 100vh; }
  .admin-sidebar.open { transform: translateX(0); box-shadow: 4px 0 30px rgba(0,0,0,.6); }
  .admin-main { margin-left: 0 !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Base ── */
  html { font-size: 15px; }
  .container, .container-sm { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .section-title { margin-bottom: 36px; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); line-height: 1.15; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  h3 { font-size: 1.15rem; }

  /* ── Navbar ── */
  .navbar { padding: 0 16px; height: 64px; }
  .nav-logo { font-size: 1.2rem; letter-spacing: 2px; }
  .nav-links { display: none !important; }
  .nav-lang { display: none !important; }
  .nav-user-btn { display: none !important; }
  /* Masquer le bouton CONNEXION sur mobile */
  .hide-mobile { display: none !important; }
  .nav-user-dropdown { display: none !important; }
  .nav-actions { gap: 10px; }
  /* Hamburger — toujours visible, bien dimensionné */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 10;
    padding: 10px 8px;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 40px;
    min-height: 40px;
  }
  .hamburger span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    display: block !important;
    transition: all .3s ease;
  }

  /* ── Mobile Menu Overlay ── */
  #mobileMenu {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important; right: 0 !important;
    bottom: 0 !important;
    background: rgba(8,8,16,0.98) !important;
    backdrop-filter: blur(20px);
    z-index: 998 !important;
    overflow-y: auto;
    padding: 24px 20px 40px !important;
    border-bottom: none !important;
  }
  #mobileMenu ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }
  #mobileMenu ul a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    font-weight: 500;
    border: 1px solid transparent;
    transition: .2s;
  }
  #mobileMenu ul a:hover,
  #mobileMenu ul a:active {
    background: rgba(201,168,76,.08) !important;
    color: var(--gold) !important;
    border-color: var(--border) !important;
  }
  #mobileMenu .mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
  }
  #mobileMenu .mobile-lang {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
  }

  /* ── Hero ── */
  .hero { min-height: auto; padding: 90px 0 48px; }
  .hero-eyebrow { font-size: .65rem; padding: 5px 12px; letter-spacing: 1.5px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-text > div:last-child {
    flex-wrap: wrap; justify-content: center; gap: 24px;
    padding-top: 24px; margin-top: 28px;
  }

  /* ── Products ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-body { padding: 10px; }
  .product-card-name { font-size: .9rem; margin-bottom: 8px; line-height: 1.3; }
  .product-price { font-size: .95rem; }
  .product-add-btn { font-size: .62rem; padding: 8px 6px; letter-spacing: .3px; }
  .product-card-image { aspect-ratio: 1; }

  /* ── Features ── */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-card { padding: 18px 12px; }
  .feature-icon { font-size: 1.6rem; margin-bottom: 8px; }
  .feature-card h3 { font-size: .9rem; }
  .feature-card p { font-size: .8rem; }

  /* ── Grids ── */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ── Cards ── */
  .card { padding: 18px 14px; border-radius: 14px; }
  .card-sm { padding: 12px; }

  /* ── Cart ── */
  .cart-item {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 10px;
    padding: 12px;
  }
  .cart-item > *:nth-child(3),
  .cart-item > *:nth-child(4) { grid-column: 2; }
  .cart-item-name { font-size: .875rem; }
  .cart-layout-grid { display: flex !important; flex-direction: column !important; gap: 16px !important; }
  .cart-summary { position: static !important; }

  /* ── Checkout ── */
  .checkout-layout { display: flex !important; flex-direction: column !important; gap: 16px !important; }
  .checkout-sticky { position: static !important; }
  .checkout-steps { gap: 0; overflow-x: auto; padding-bottom: 4px; }
  .checkout-step { font-size: .68rem; white-space: nowrap; }
  .checkout-step .step-num { width: 22px; height: 22px; font-size: .68rem; }
  .checkout-step-line { width: 20px; margin: 0 4px; }
  .payment-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .payment-option { padding: 12px 8px; }
  .payment-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .payment-name { font-size: .72rem; }

  /* ── Product detail ── */
  .product-detail-grid { display: flex !important; flex-direction: column !important; gap: 20px !important; }

  /* ── Account ── */
  .account-layout { grid-template-columns: 1fr; gap: 16px; }
  .account-menu { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .account-menu a { padding: 8px 12px; font-size: .78rem; gap: 6px; min-height: 40px; }

  /* ── Footer ── */
  footer { padding: 36px 0 20px; margin-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col ul { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* ── Chat widget ── */
  .chat-bubble {
    width: 52px; height: 52px;
    bottom: 80px; right: 16px;
    box-shadow: 0 4px 24px rgba(201,168,76,.6);
  }
  .chat-bubble svg { width: 22px; height: 22px; }
  .chat-window {
    width: calc(100vw - 20px);
    right: 10px; left: 10px;
    bottom: 144px;
    max-height: 60vh;
  }

  /* ── Tables ── */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 560px; }

  /* ── Buttons ── */
  .btn-lg { padding: 14px 20px; font-size: .82rem; }
  .btn { min-height: 44px; }

  /* ── Page header ── */
  .page-header { padding: 86px 0 32px; }
  .breadcrumb { font-size: .7rem; }

  /* ── Flash ── */
  .flash { font-size: .8rem; padding: 10px 14px; }

  /* ── Toast ── */
  .toast-container { right: 10px; top: 72px; left: 10px; }
  .toast { min-width: unset; font-size: .8rem; }

  /* ── Admin (emergency mobile) ── */
  .admin-main-content { padding: 14px !important; }
  .admin-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 14px; }
  .stat-value { font-size: 1.4rem; }
  .admin-mobile-toggle { display: flex !important; }

  /* ── Input zoom fix iOS ── */
  input, select, textarea { font-size: 16px !important; }

  /* ── Touch targets ── */
  .nav-cart { padding: 10px; }
  .qty-btn { width: 40px; height: 40px; }
  .lang-btn { padding: 6px 12px; min-height: 36px; }
}

/* ── Extra small (≤380px) ── */
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .hero-eyebrow { display: none; }
  .checkout-steps { display: none; }
  .account-menu a { padding: 7px 10px; font-size: .72rem; }
  .footer-col ul { flex-direction: column; gap: 8px; }
}

/* ═══════════════════════════════════════
   DESIGN AMÉLIORATIONS GLOBALES
═══════════════════════════════════════ */

/* Navbar — logo plus beau */
.nav-logo {
  font-size: 1.5rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero buttons — plus de padding, ombres */
.hero-ctas .btn-primary {
  box-shadow: 0 8px 32px rgba(201,168,76,.35);
  font-size: .9rem;
}
.hero-ctas .btn-outline {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.04);
}

/* Product card — ombre colorée au hover */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.2);
}

/* Navbar — border bottom animée au scroll */
.navbar.scrolled {
  border-bottom-color: rgba(201,168,76,.2);
}

/* Section titles — plus d'impact */
.section-title h2 {
  background: linear-gradient(135deg, #ffffff 0%, #e0d0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold line — plus belle */
.gold-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  border-radius: 2px;
}

/* Feature cards — hover glow */
.feature-card:hover {
  box-shadow: 0 0 30px rgba(201,168,76,.08);
}

/* Buttons — meilleure transition */
.btn-primary {
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  background-size: 200% auto;
  transition: background-position .4s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,.4);
  color: #0a0a0a;
}

/* Cart badge — plus visible */
.cart-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 800;
  font-size: .6rem;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 4px;
}

/* Page header — meilleure typographie */
.page-header h1 {
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form controls — focus plus élégant */
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12), 0 0 20px rgba(201,168,76,.05);
}

/* Mobile — hero stats block centré */
@media (max-width: 768px) {
  .nav-logo {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  /* Chat bubble — ne cache pas le contenu */
  .chat-bubble {
    bottom: 20px;
    right: 16px;
    box-shadow: 0 4px 24px rgba(201,168,76,.6);
  }
  /* Hero text centré sur mobile */
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
}

/* ── Mobile menu animation ── */
#mobileMenu {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
#mobileMenu[style*="display: block"] {
  opacity: 1;
  transform: translateY(0);
}
