/* ═══════════════════════════════════════════════
   FRANCE MINÉRAUX — V6 Design System
   Variables, Typography, Components, Layout
   ═══════════════════════════════════════════════ */

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

:root {
  --aubergine: #3C2A3C;
  --aubergine-90: #4A334A;
  --aubergine-70: #5B3A5B;
  --aubergine-50: #7A5A7A;
  --aubergine-20: #C4AFC4;
  --aubergine-05: #F3EDF3;
  --gold: #C4A265;
  --gold-bright: #D4B478;
  --gold-light: #E8D9BE;
  --gold-pale: #F0E6D0;
  --gold-ultra: #F8F2E8;
  --cream: #F5EDE0;
  --cream-warm: #FAF7F2;
  --white: #FFFFFF;
  --text: #2D1B2D;
  --text-soft: #5A4A5A;
  --text-muted: #8A7A8A;
  --sh-xs: 0 1px 3px rgba(60,42,60,.04);
  --sh-sm: 0 2px 12px rgba(60,42,60,.06);
  --sh-md: 0 8px 30px rgba(60,42,60,.08);
  --sh-lg: 0 20px 60px rgba(60,42,60,.1);
  --sh-gold: 0 8px 30px rgba(196,162,101,.12);
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --dur: .5s;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream-warm);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  color: var(--aubergine);
  line-height: 1.25;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p { color: var(--text-soft); }
a { text-decoration: none; color: inherit; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .container { padding: 0 20px; } }

/* ══════════════════════════════════════════════════
   SHARED ELEMENTS
   ══════════════════════════════════════════════════ */
.eyebrow {
  font-size: .62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.sep {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.sep-center { margin: 20px auto; }

/* ══════════════════════════════════════════════════
   TOPBAR (V6 Styles)
   ══════════════════════════════════════════════════ */
.topbar-promo {
  background: var(--aubergine);
  padding: 9px 0;
  text-align: center;
  border-bottom: 1px solid rgba(196,162,101,.15);
}
.topbar-promo-text {
  font-size: .68rem;
  letter-spacing: 1.8px;
  color: var(--gold-light);
  font-weight: 400;
}
.topbar-promo-text strong {
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
}
.topbar-promo-text .promo-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: .92rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}
.topbar-promo-note {
  font-size: .52rem;
  opacity: .5;
  margin-left: 8px;
}
.topbar-promo-sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(196,162,101,.3);
  margin: 0 14px;
  vertical-align: middle;
}

.topbar {
  background: var(--aubergine);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.topbar-track {
  display: flex;
  justify-content: center;
  gap: 48px;
  animation: topbar-scroll 20s linear infinite;
}
@keyframes topbar-scroll {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: .6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.topbar-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .4; }

/* ══════════════════════════════════════════════════
   HEADER (V6 Styles)
   ══════════════════════════════════════════════════ */
.header {
  background: var(--cream-warm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all .4s var(--ease);
}
.header.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--cream);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--aubergine);
  line-height: 1;
}
.logo-crystal {
  width: 30px;
  height: 42px;
  margin: 0 6px;
  flex-shrink: 0;
}
.logo-sub {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: .5rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

.nav { flex: 1; display: flex; justify-content: center; }
.nav > ul { display: flex; list-style: none; gap: 0; }
.nav > ul > li { position: relative; }
.nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 15px;
  font-size: .62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--aubergine);
  transition: color .3s ease;
}
.nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s var(--ease);
}
.nav > ul > li:hover > a { color: var(--gold); }
.nav > ul > li:hover > a::after { transform: scaleX(1); }

.h-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.h-act {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--aubergine);
  border-radius: 50%;
  transition: all .3s ease;
  position: relative;
}
.h-act:hover { background: var(--aubergine-05); color: var(--gold); }
.h-act svg { width: 18px; height: 18px; }
.h-act .dot {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--cream-warm);
}

/* ══════════════════════════════════════════════════
   MEGA MENU (V6 Styles)
   ══════════════════════════════════════════════════ */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  min-width: 880px;
  padding: 40px 44px 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .35s var(--ease);
  box-shadow: var(--sh-lg);
  border-top: 2px solid var(--gold);
}
.nav > ul > li:hover > .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.mega-section h5 {
  font-family: 'Raleway', sans-serif;
  font-size: .6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--cream);
}
.mega-section a {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  padding: 3.5px 0;
  transition: all .25s ease;
}
.mega-section a:hover {
  color: var(--aubergine);
  transform: translateX(4px);
}
.mega-divider { grid-column: 1/-1; height: 1px; background: var(--cream); }

/* Mega map styles */
.mega-map { min-width: 700px; }
.mega-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mega-map-visual img { width: 100%; border-radius: 8px; margin-top: 16px; }
.mega-map-visual h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--aubergine); }
.mega-map-visual p { font-size: .8rem; color: var(--text-muted); margin-top: 8px; }
.mega-map-cities ul { list-style: none; }
.mega-map-cities li { padding: 4px 0; }
.mega-map-cities a { font-size: .82rem; color: var(--text-muted); transition: all .25s ease; }
.mega-map-cities a:hover { color: var(--gold); transform: translateX(4px); }
.mega-map-cta { margin-top: 16px; }
.btn-gold { display: inline-block; padding: 10px 24px; background: var(--gold); color: var(--white); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; border-radius: 4px; transition: background .3s; }
.btn-gold:hover { background: var(--gold-bright); }

/* ══════════════════════════════════════════════════
   GOOGLE BADGE (V6 Styles)
   ══════════════════════════════════════════════════ */
.site-google-badge {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  background: var(--aubergine);
  border: 1px solid rgba(196,162,101,.25);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.site-google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(0,0,0,.35);
}
.site-google-badge .g-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.site-google-badge .g-info { line-height: 1.3; }
.site-google-badge .g-stars {
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: 1px;
}
.site-google-badge .g-label {
  font-size: .55rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.site-google-badge .g-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ══════════════════════════════════════════════════
   NEWSLETTER (V6 Styles)
   ══════════════════════════════════════════════════ */
.newsletter {
  padding: 88px 0;
  background: var(--aubergine);
  position: relative;
  overflow: hidden;
}
.newsletter-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,101,.06) 0%, transparent 70%);
  top: -200px;
  right: 10%;
}
.nl-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.nl-inner h2 { color: var(--white); }
.nl-inner p { color: var(--gold-pale); opacity: .6; margin: 12px auto 36px; max-width: 480px; font-size: .88rem; }
.nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.nl-form input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,162,101,.25);
  border-right: none;
  color: var(--cream-warm);
  font-family: 'Raleway', sans-serif;
  font-size: .82rem;
  outline: none;
  transition: all .3s ease;
}
.nl-form input::placeholder { color: var(--gold-pale); opacity: .4; }
.nl-form input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }
.nl-form button {
  padding: 16px 32px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s ease;
}
.nl-form button:hover { background: var(--gold-bright); }
.nl-note {
  margin-top: 16px;
  font-size: .65rem;
  color: var(--gold-pale);
  opacity: .4;
}

/* ══════════════════════════════════════════════════
   FOOTER (V6 Styles)
   ══════════════════════════════════════════════════ */
footer {
  background: var(--aubergine);
  border-top: 1px solid rgba(196,162,101,.1);
  padding: 64px 0 0;
  color: var(--cream-warm);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196,162,101,.1);
}
.ft-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--cream-warm);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ft-brand p {
  font-size: .8rem;
  color: var(--gold-pale);
  opacity: .6;
  line-height: 1.9;
  max-width: 260px;
}
.ft-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.ft-col a {
  display: block;
  font-size: .78rem;
  color: var(--gold-pale);
  opacity: .6;
  padding: 3.5px 0;
  transition: all .25s ease;
}
.ft-col a:hover { opacity: 1; color: var(--gold); transform: translateX(3px); }
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .68rem;
  color: var(--gold-pale);
  opacity: .4;
}
.ft-pays {
  display: flex;
  gap: 10px;
}
.ft-pays span {
  padding: 3px 8px;
  border: 1px solid rgba(196,162,101,.15);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════
   TRUST SECTION
   ══════════════════════════════════════════════════ */
.trust-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--cream);
}
.trust-section .container {
  text-align: center;
  margin-bottom: 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust-card {
  text-align: center;
  padding: 32px;
  background: var(--gold-ultra);
  border-radius: 8px;
  transition: all .3s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.8rem;
}
.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.trust-card p {
  font-size: .85rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: var(--cream-warm);
  border-top: 1px solid var(--cream);
}
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--cream);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aubergine);
  text-align: left;
  transition: color .3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-toggle {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ══════════════════════════════════════════════════
   SEO CONTENT SECTION
   ══════════════════════════════════════════════════ */
.seo-block {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--cream);
}
.seo-content {
  max-width: 860px;
  margin: 0 auto;
}
.seo-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--aubergine);
}
.seo-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--aubergine-90);
}
.seo-content p {
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}
.seo-content strong { color: var(--text); }

/* ══════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════ */
.breadcrumb {
  padding: 14px 0;
  font-size: .7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--cream);
  background: var(--white);
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color .3s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span {
  margin: 0 8px;
  opacity: .4;
}

/* ══════════════════════════════════════════════════
   BIJOUX HERO
   ══════════════════════════════════════════════════ */
.bijoux-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--aubergine-70) 0%, var(--aubergine-50) 100%);
}
.bijoux-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://www.france-mineraux.fr/wp-content/uploads/2026/03/SMO_03.jpg");
  background-size: cover;
  background-position: center;
  opacity: .15;
  z-index: 0;
}
.bijoux-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.bijoux-hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.bijoux-hero-content .sep { background: var(--gold); }
.bijoux-hero-content p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}
.bijoux-hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(196,162,101,.25);
}
.bijoux-hero-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,162,101,.35);
}
.bijoux-hero-decor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  place-items: center;
}
.bijoux-hero-decor img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(60,42,60,.2);
  transition: transform .4s ease;
  cursor: pointer;
}
.bijoux-hero-decor img:hover { transform: scale(1.05); }
.bijoux-hero-decor img:nth-child(3) {
  grid-column: 1/-1;
  width: 140px;
  height: 140px;
}

/* ══════════════════════════════════════════════════
   CATEGORY GRID
   ══════════════════════════════════════════════════ */
.category-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--cream);
}
.category-section .container {
  text-align: center;
  margin-bottom: 40px;
}
.category-section h2 {
  margin-bottom: 12px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.category-card {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  group: card;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(60,42,60,.8) 0%, rgba(60,42,60,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
}
.category-card-overlay h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.category-card-overlay p {
  color: var(--gold-light);
  font-size: .85rem;
}

/* ══════════════════════════════════════════════════
   PRODUCT SECTIONS
   ══════════════════════════════════════════════════ */
.bijoux-section {
  padding: 80px 0;
  background: var(--cream-warm);
  border-top: 1px solid var(--cream);
}
.bijoux-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.bijoux-section-header h2 {
  margin-bottom: 12px;
}
.bijoux-section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: .92rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all .3s ease;
  text-align: center;
}
.product-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-info {
  padding: 20px 16px;
}
.product-card-info h4 {
  font-size: .95rem;
  margin-bottom: 12px;
  color: var(--aubergine);
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 6px;
}
.product-stars .stars {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: 1px;
}
.product-stars .rating-count {
  font-size: .65rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .bijoux-hero .container { grid-template-columns: 1fr; }
  .bijoux-hero-decor { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav > ul { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .category-grid { grid-template-columns: 1fr; }
  .bijoux-hero-content h1 { font-size: 2rem; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .topbar-track { gap: 20px; font-size: .5rem; }
  .megamenu { min-width: 650px; }
  .container { padding: 0 16px; }
  .section-eyebrow { font-size: .55rem; letter-spacing: 2px; }
  h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 2.8vw, 1.7rem); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .container { padding: 0 14px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
