/* ============================================================
   style.css — Magnetic SARL · Redesign Premium
   Inspiré : eurofragance.com + tournaire.fr
   Couleurs logo : Bleu #29ABE2 · Vert #6DBE45
   ============================================================ */

/* --- FONTS --- */

/* --- VARIABLES --- */
:root {
  --cream:      #F7F4EF;
  --cream-mid:  #EDE9E1;
  --cream-dark: #DDD8CF;
  --blue:       #29ABE2;
  --blue-dark:  #1a8abf;
  --green:      #6DBE45;
  --green-dark: #4fa030;
  --dark:       #0E1C26;
  --dark2:      #162534;
  --ink:        #1A1A1A;
  --ink-mid:    #4A4A4A;
  --ink-light:  #8A8A8A;
  --border:     #D9D4CB;
  --white:      #FFFFFF;
  --gold:       #C5A55A;
  --gold-light: #F2EAD8;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;

  --radius: 4px;
  --shadow: 0 2px 20px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- TYPOGRAPHY --- */
.label-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.label-tag.green { color: var(--green); }
.label-tag.gold  { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--blue);
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,.65); }

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark2); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); }
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-link {
  background: none;
  border: none;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-link::after { content: '→'; transition: transform .25s; }
.btn-link:hover::after { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 0 40px;
  max-width: 1380px;
  margin: 0 auto;
}

.nav-logo {
  background: transparent;
  padding: 0 8px 0 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo:hover { background: transparent; }
.nav-logo img {
  height: 78px;
  width: auto;
  display: block;
  filter: url(#remove-white);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  margin-left: 12px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  font-size: .75rem;
  letter-spacing: .1em;
}
.nav-links .nav-cta:hover { background: var(--blue-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 1px;
  transition: var(--transition);
}

/* ============================================================
   HERO — Éditorial Grand Format
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px 60px;
  padding-top: 140px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero-title strong {
  font-weight: 600;
  color: var(--blue);
  display: block;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,.6);
}
.hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
}
.hero-meta-item { }
.hero-meta-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-meta-label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(14,28,38,.0), rgba(14,28,38,.5));
  z-index: 1;
}
.hero-image-block {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(41,171,226,.08) 0%, transparent 60%),
    linear-gradient(to bottom, #162534, #0E1C26);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-inner {
  text-align: center;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-bottle-visual {
  width: 100%;
  height: 100%;
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(41,171,226,.25);
  background: linear-gradient(145deg, rgba(41,171,226,.07), rgba(109,190,69,.04));
}
.hero-bottle-visual::before {
  content: 'Ajouter une photo via Admin → Paramètres';
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(41,171,226,.5);
  text-align: center;
  padding: 0 20px;
}
.hero-bottle-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: 8px;
}
.hero-tournaire-badge {
  position: absolute;
  bottom: 60px;
  right: 40px;
  background: rgba(197,165,90,.12);
  border: 1px solid rgba(197,165,90,.3);
  color: var(--gold);
  padding: 10px 18px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 3;
}

/* ============================================================
   STATS BAR — Sobre et élégant
   ============================================================ */
#stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: var(--border);
}
.stat-item {
  padding: 36px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--blue); }
.stat-lbl {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ============================================================
   CATEGORIES — Magazine Layout
   ============================================================ */
#categories {
  padding: 96px 0;
  background: var(--cream);
}
.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  height: 560px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}
.cat-card:first-child {
  grid-row: 1 / 3;
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.04); }
.cat-card-bg.cat-fragrance {
  background: linear-gradient(165deg, #1a3a4a 0%, #0e2030 60%, #0a1825 100%);
}
.cat-card-bg.cat-flaconnage {
  background: linear-gradient(165deg, #1a2e1a 0%, #0e2010 100%);
}
.cat-card-bg.cat-tournaire {
  background: linear-gradient(165deg, #2a2010 0%, #1a1408 100%);
}
.cat-card-bg.cat-oparfum {
  background: linear-gradient(165deg, #1a1a2e 0%, #0e0e20 100%);
}

/* Geometric decoration inside each card */
.cat-card-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .12;
}
.cat-card-deco svg { width: 60%; max-width: 200px; }

.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  z-index: 2;
}
.cat-card:first-child .cat-card-content {
  padding: 36px 44px;
}
.cat-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.cat-badge.gold { color: var(--gold); }
.cat-badge.green { color: var(--green); }
.cat-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.cat-card:first-child .cat-title { font-size: 2.2rem; }
.cat-count {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.cat-card:hover .cat-arrow { color: var(--white); gap: 14px; }

/* ============================================================
   PRODUCTS — Editorial Grid
   ============================================================ */
.products-section {
  padding: 80px 0;
}
.products-section.bg-white { background: var(--white); }
.products-section.bg-cream { background: var(--cream); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.product-item {
  background: var(--white);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: default;
  position: relative;
}
.products-section.bg-cream .product-item { background: var(--cream); }
.product-item:hover { background: var(--cream-mid); }
.products-section.bg-white .product-item:hover { background: var(--cream); }

.product-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.product-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.product-tag.green { color: var(--green); }
.product-tag.gold  { color: var(--gold); }
.product-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  color: var(--ink-light);
}
.stock-dot { width: 6px; height: 6px; border-radius: 50%; }
.stock-dot.in  { background: var(--green); }
.stock-dot.out { background: #cc4444; }

.product-visual {
  height: 140px;
  background: var(--cream-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.products-section.bg-white .product-visual { background: var(--cream); }
.product-visual-icon {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dark);
}
.product-visual-line {
  position: absolute;
  bottom: 16px;
  left: 24px; right: 24px;
  height: 1px;
  background: var(--border);
}

.product-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.product-desc {
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}
.product-detail {
  font-size: .72rem;
  color: var(--ink-light);
  letter-spacing: .05em;
}
.product-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ============================================================
   TOURNAIRE — Section Premium
   ============================================================ */
#tournaire {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}
.tournaire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.tournaire-content {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tournaire-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.tournaire-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.tournaire-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.tournaire-title em { font-style: italic; color: var(--gold); }
.tournaire-desc {
  font-size: .93rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
  font-weight: 300;
}
.tournaire-list {
  margin-bottom: 40px;
}
.tournaire-list-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  font-weight: 300;
}
.tournaire-list-item:last-child { border-bottom: none; }
.tournaire-list-num {
  font-family: var(--display);
  font-size: .85rem;
  color: var(--gold);
  min-width: 24px;
}

.tournaire-visual {
  position: relative;
  background: linear-gradient(145deg, #1a140a, #0e0c06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tournaire-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(197,165,90,.08);
}
.tournaire-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(197,165,90,.12);
}
.tournaire-bottle {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, rgba(197,165,90,.12) 0%, rgba(197,165,90,.04) 100%);
  border: 2px dashed rgba(197,165,90,.3);
  position: relative;
  z-index: 2;
}
.tournaire-bottle::before {
  content: 'Photo Tournaire — Admin → Paramètres';
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(197,165,90,.6);
  text-align: center;
  padding: 0 16px;
}
.tournaire-heritage {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  text-align: center;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(197,165,90,.4);
  z-index: 2;
}

/* ============================================================
   OPARFUM
   ============================================================ */
#oparfum {
  padding: 96px 0;
  background: var(--cream);
}
.oparfum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.oparfum-visual-block {
  aspect-ratio: 4/5;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.oparfum-visual-block::after {
  content: 'Oparfum';
  position: absolute;
  bottom: 24px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dark);
}
.oparfum-inner-bottle {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(109,190,69,.08), rgba(41,171,226,.04));
  border: 2px dashed rgba(109,190,69,.3);
}
.oparfum-inner-bottle::before {
  content: 'Photo Oparfum — Admin → Paramètres';
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(109,190,69,.6);
  text-align: center;
  padding: 0 16px;
}
.oparfum-table {
  width: 100%;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.oparfum-row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}
.oparfum-row-num {
  font-family: var(--display);
  font-size: .85rem;
  color: var(--ink-light);
  min-width: 28px;
  padding-top: 2px;
}
.oparfum-row-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.oparfum-row-desc {
  font-size: .82rem;
  color: var(--ink-mid);
  font-weight: 300;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: var(--cream); }
.service-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-desc {
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 96px 0;
  background: var(--dark);
  color: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  margin-top: 48px;
}
.testimonial-item {
  background: var(--dark);
  padding: 36px 32px;
  transition: var(--transition);
}
.testimonial-item:hover { background: var(--dark2); }
.testimonial-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial-text {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}
.testimonial-author-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.testimonial-author-role {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* ============================================================
   SHOWROOM + CONTACT
   ============================================================ */
#contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.showroom-col {
  background: var(--cream-mid);
  padding: 80px 56px;
  border-right: 1px solid var(--border);
}
.showroom-visual-rect {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(41,171,226,.06), var(--cream-dark));
  border: 2px dashed rgba(41,171,226,.2);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showroom-visual-rect::before {
  content: 'Photo Showroom — Admin → Paramètres';
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(14,28,38,.4);
  text-align: center;
  padding: 0 16px;
  z-index: 1;
}
.showroom-visual-rect::after {
  content: '';
  display: none;
}
.showroom-details { display: flex; flex-direction: column; gap: 20px; }
.showroom-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.showroom-detail:last-child { border-bottom: none; }
.showroom-detail-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-light);
  min-width: 80px;
  padding-top: 2px;
}
.showroom-detail-value {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 400;
}

.contact-col {
  background: var(--white);
  padding: 80px 60px;
}
.contact-form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: .85rem;
  color: var(--ink-light);
  margin-bottom: 36px;
  font-weight: 300;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 0;
  border: none;
  border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  font-size: .9rem;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color .25s;
  font-weight: 300;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--blue);
}
.form-group textarea { resize: none; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-success {
  display: none;
  padding: 20px;
  border: 1px solid var(--green);
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-logo-wrap {
  display: inline-block;
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}
.footer-about {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
  font-weight: 300;
}
.footer-col-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .84rem;
  color: rgba(255,255,255,.3);
  transition: color .25s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(255,255,255,.2);
}
.footer-bottom a { color: rgba(255,255,255,.15); transition: color .25s; }
.footer-bottom a:hover { color: rgba(255,255,255,.4); }

/* Réseaux sociaux footer */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  transition: all .25s ease;
  flex-shrink: 0;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { color: var(--white); border-color: var(--blue); background: rgba(41,171,226,.12); }
#social-instagram:hover { border-color: #E1306C; background: rgba(225,48,108,.12); color: #E1306C; }
#social-facebook:hover  { border-color: #1877F2; background: rgba(24,119,242,.12); color: #1877F2; }
#social-tiktok:hover    { border-color: #ff0050; background: rgba(255,0,80,.12); color: #ff0050; }
#social-linkedin:hover  { border-color: #0A66C2; background: rgba(10,102,194,.12); color: #0A66C2; }

/* ============================================================
   SITE IMAGE PLACEHOLDERS — état sans image / avec image
   ============================================================ */
/* Quand une image est uploadée, on cache le texte placeholder */
.has-site-image::before,
.has-site-image::after {
  display: none !important;
}
.has-site-image {
  border: none !important;
  background: transparent !important;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Keyframes */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatRotate {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseBorder {
  0%, 100% { border-color: rgba(197,165,90,.3); box-shadow: 0 0 0 0 rgba(197,165,90,.0); }
  50%       { border-color: rgba(197,165,90,.6); box-shadow: 0 0 16px rgba(197,165,90,.15); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes statCountIn {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmerLine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
@keyframes devisFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Hero bottle floating */
.hero-bottle-visual {
  animation: floatY 4s ease-in-out infinite;
}
.hero-bottle-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41,171,226,.12) 0%, transparent 50%, rgba(109,190,69,.08) 100%);
  animation: heroGradientShift 6s ease infinite;
  background-size: 200% 200%;
}
.hero-tournaire-badge {
  animation: pulseBorder 3s ease-in-out infinite;
}

/* Hero background shimmer */
#hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(41,171,226,.025), transparent);
  animation: shimmerLine 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Stats — count-in on visible */
.stat-item.visible .stat-num {
  animation: statCountIn .6s cubic-bezier(.34,1.56,.64,1) both;
}

/* Category cards — richer hover */
.cat-card {
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.cat-card-deco svg {
  transition: transform .6s ease;
}
.cat-card:hover .cat-card-deco svg {
  transform: rotate(20deg) scale(1.08);
}
.cat-card:hover .cat-badge {
  background: rgba(255,255,255,.25);
}

/* Product cards — lift on hover */
.product-item {
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, background .25s;
}
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.product-visual {
  overflow: hidden;
  transition: background .35s;
}
.product-item:hover .product-visual {
  background: var(--cream-dark);
}
.product-visual-line {
  transition: width .4s ease;
  left: 24px; right: 24px;
}
.product-item:hover .product-visual-line {
  left: 0; right: 0;
}

/* Buttons — micro lift */
.btn {
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease, color .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.btn-blue:hover  { box-shadow: 0 6px 20px rgba(41,171,226,.35); }
.btn-green:hover { box-shadow: 0 6px 20px rgba(109,190,69,.35); }

/* Navbar CTA pulse */
.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: shimmerLine 3s linear infinite;
}

/* Section titles — underline reveal */
.section-title em {
  position: relative;
}
.section-title em::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .6s ease .2s;
}
.fade-up.visible .section-title em::after { width: 100%; }

/* Tournaire visual glow */
.tournaire-visual {
  transition: box-shadow .4s;
}
.tournaire-visual:hover {
  box-shadow: 0 0 40px rgba(197,165,90,.2), 0 20px 60px rgba(0,0,0,.2);
}

/* Service items hover */
.service-item {
  transition: background .3s;
}
.service-item:hover {
  background: rgba(41,171,226,.04);
}

/* Testimonial cards */
.testimonial-item {
  transition: transform .35s ease, box-shadow .35s ease;
}
.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ---- PRODUCT CARD — DEVIS HOVER OVERLAY ---- */
.product-item { position: relative; overflow: hidden; }
.product-hover-cta {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: bottom .3s cubic-bezier(.4,0,.2,1);
  z-index: 3;
  cursor: pointer;
}
.product-item:hover .product-hover-cta {
  bottom: 0;
}

/* ---- CAT CARD — animated border reveal ---- */
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color .4s ease;
  z-index: 2;
  pointer-events: none;
}
.cat-card:hover::after {
  border-color: rgba(255,255,255,.18);
}

/* ---- HERO — letter spacing reveal on title ---- */
@keyframes heroTitleIn {
  from { opacity: 0; letter-spacing: .3em; }
  to   { opacity: 1; letter-spacing: normal; }
}
.hero-title {
  animation: heroTitleIn .9s cubic-bezier(.4,0,.2,1) .2s both;
}

/* ---- NAV LOGO — subtle scale on hover ---- */
.nav-logo:hover img { transform: scale(1.04); }
.nav-logo img { transition: transform .3s ease; }

/* ---- FOOTER LOGO — same ---- */
.footer-logo-wrap img { transition: transform .3s ease; filter: url(#remove-white); }
.footer-logo-wrap:hover img { transform: scale(1.04); }

/* ---- STATS BAR — each number pops in ---- */
@keyframes statPop {
  0%   { transform: scale(.8) translateY(8px); opacity: 0; }
  70%  { transform: scale(1.08) translateY(-2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.stat-item.visible .stat-num {
  animation: statPop .55s cubic-bezier(.34,1.56,.64,1) both;
}

/* ---- SECTION DIVIDER LINES — draw in ---- */
@keyframes drawLine {
  from { width: 0; }
  to   { width: 48px; }
}
.section-rule {
  animation: none;
}
.fade-up.visible .section-rule {
  animation: drawLine .6s ease .3s both;
}

/* ============================================================
   ANIMATIONS AVANCÉES
   ============================================================ */

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* --- Fade-up / Fade-left / Fade-right / Fade-in --- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.fade-in {
  opacity: 0;
  transition: opacity .8s ease;
}
.fade-in.visible { opacity: 1; }

/* --- Stagger delays --- */
.stagger-1 { transition-delay: .1s !important; }
.stagger-2 { transition-delay: .2s !important; }
.stagger-3 { transition-delay: .3s !important; }
.stagger-4 { transition-delay: .4s !important; }
.stagger-5 { transition-delay: .5s !important; }
.stagger-6 { transition-delay: .6s !important; }

/* --- Hero entrance stagger --- */
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: heroLineIn .6s ease .1s both; }
.hero-title   { animation: heroTitleIn .9s cubic-bezier(.4,0,.2,1) .25s both; }
.hero-sub     { animation: heroLineIn .7s ease .5s both; }
.hero-actions { animation: heroLineIn .7s ease .7s both; }
.hero-meta    { animation: heroLineIn .6s ease .9s both; }

/* --- Tournaire points stagger --- */
.tournaire-point {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s ease;
}
.tournaire-point.visible { opacity: 1; transform: translateX(0); }

/* --- Oparfum rows stagger --- */
.oparfum-row {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .55s ease, transform .55s ease;
}
.oparfum-row.visible { opacity: 1; transform: translateX(0); }

/* --- Social icons pop-in --- */
@keyframes socialPop {
  0%   { opacity: 0; transform: scale(0.5) translateY(10px); }
  70%  { transform: scale(1.1) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.footer-social .social-icon {
  opacity: 0;
}
.footer-social.visible .social-icon:nth-child(1) { animation: socialPop .4s cubic-bezier(.34,1.56,.64,1) .1s both; }
.footer-social.visible .social-icon:nth-child(2) { animation: socialPop .4s cubic-bezier(.34,1.56,.64,1) .2s both; }
.footer-social.visible .social-icon:nth-child(3) { animation: socialPop .4s cubic-bezier(.34,1.56,.64,1) .3s both; }
.footer-social.visible .social-icon:nth-child(4) { animation: socialPop .4s cubic-bezier(.34,1.56,.64,1) .4s both; }

/* --- Cursor glow --- */
#cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,171,226,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform .08s linear, opacity .3s;
  opacity: 0;
}

/* --- Category cards — clip-path reveal on hover --- */
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,28,38,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}
.cat-card:hover .cat-card-overlay { opacity: 1; }

/* --- Navbar slide-in on load --- */
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#navbar { animation: navSlideDown .6s cubic-bezier(.4,0,.2,1) both; }

/* --- Scrolled navbar --- */
#navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

/* --- Product card image zoom on hover --- */
.product-visual img {
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.product-item:hover .product-visual img {
  transform: scale(1.06);
}

/* --- WhatsApp & Devis entrance --- */
@keyframes floatButtonIn {
  from { opacity: 0; transform: translateY(20px) scale(.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.whatsapp-float { animation: floatButtonIn .6s cubic-bezier(.34,1.56,.64,1) 1.2s both; }
.devis-float    { animation: floatButtonIn .6s cubic-bezier(.34,1.56,.64,1) 1.4s both, devisFloat 3.5s ease-in-out 2s infinite; }

/* --- Stats bar — slide up --- */
.stat-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Devis float button */
.devis-float {
  position: fixed;
  bottom: 90px; right: 28px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(41,171,226,.4);
  animation: devisFloat 3.5s ease-in-out infinite;
  transition: box-shadow .25s, background .25s;
  white-space: nowrap;
}
.devis-float:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 28px rgba(41,171,226,.55);
  animation: none;
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE — Tablette (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Navbar — hamburger à partir de 1024px */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 94px; left: 0; right: 0;
    background: var(--dark);
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
  }
  .nav-links a {
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .8rem;
    letter-spacing: .12em;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: block; }

  /* Hero — content au début (pas en bas) */
  #hero {
    grid-template-columns: 1fr;
    min-height: 85vh;
  }
  .hero-right { display: none; }
  .hero-left {
    justify-content: flex-start;
    padding: 120px 48px 72px;
  }

  /* Layouts */
  .container-wide { padding: 0 28px; }
  .categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .cat-card:first-child { grid-row: auto; }
  .tournaire-grid { grid-template-columns: 1fr; }
  .tournaire-visual { height: 320px; }
  .oparfum-grid { grid-template-columns: 1fr; gap: 40px; }
  #contact-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-table { grid-template-columns: 1fr 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid var(--border); }
  .tournaire-content { overflow: hidden; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  /* Navbar */
  .nav-inner { padding: 0 16px; height: 72px; }
  .nav-logo img { height: 52px; }
  .nav-links { top: 72px; }

  /* Hero */
  #hero { min-height: auto; }
  .hero-left {
    justify-content: flex-start;
    padding: 96px 20px 56px;
  }
  .hero-title { font-size: clamp(1.9rem, 8vw, 3rem); }
  .hero-sub { font-size: .9rem; max-width: 100%; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-meta { gap: 20px; flex-wrap: wrap; padding-top: 20px; }
  .hero-meta-num { font-size: 1.4rem; }
  .hero-tournaire-badge { display: none; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 22px 12px; border-right: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-num { font-size: 2rem; }
  .stat-lbl { font-size: .62rem; }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr; height: auto; gap: 1px; }
  .cat-card { min-height: 180px; }
  .categories-header { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
  .categories-header .btn-link { font-size: .75rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 28px; }
  .product-visual { height: 150px; }
  .product-name { font-size: 1rem; }

  /* Tournaire */
  .tournaire-grid { grid-template-columns: 1fr; overflow: hidden; }
  .tournaire-visual { height: 220px; width: 100%; }
  .tournaire-content { padding: 40px 20px 36px; overflow: hidden; }
  .tournaire-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .tournaire-list { margin-bottom: 28px; }
  .tournaire-list-item { padding: 10px 0; font-size: .85rem; }

  /* Oparfum */
  .oparfum-grid { grid-template-columns: 1fr; gap: 28px; }
  .oparfum-visual-block { min-height: 240px; aspect-ratio: 4/3; }
  .oparfum-row { gap: 12px; }
  .oparfum-row-title { font-size: .88rem; }
  .oparfum-row-desc { font-size: .8rem; }

  /* Services */
  .services-table { grid-template-columns: 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .service-num { font-size: 2rem; }
  .service-title { font-size: 1.05rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact / Showroom */
  #contact-section { grid-template-columns: 1fr; }
  .showroom-col { padding: 48px 20px 28px; }
  .contact-col { padding: 32px 20px 48px; }
  .showroom-visual-rect { height: 220px; margin-bottom: 24px; }
  .contact-form-title { font-size: 1.5rem; }
  .showroom-detail-label { min-width: 70px; font-size: .6rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo-wrap img { height: 46px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: .78rem; }
  .footer-social { justify-content: flex-start; }
  .social-icon { width: 40px; height: 40px; }

  /* Containers */
  .container { padding: 0 16px; }
  .container-wide { padding: 0 16px; }

  /* Sections padding — réduit sur mobile */
  #hero { padding: 0; }
  #stats-bar { padding: 0; }
  #categories { padding: 52px 0; }
  .products-section { padding: 52px 0; }
  #tournaire { padding: 0; }
  #oparfum { padding: 52px 0; }
  #services { padding: 52px 0; }
  #testimonials { padding: 52px 0; }
  #contact-section { padding: 0; }

  /* Float buttons — masquer devis sur mobile (nav CTA suffit) */
  .devis-float { display: none !important; }
  .whatsapp-float { right: 16px; bottom: 24px; width: 52px; height: 52px; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .form-group label { font-size: .78rem; }
}

/* ============================================================
   RESPONSIVE — Petit mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .nav-inner { height: 64px; }
  .nav-logo img { height: 46px; }
  .nav-links { top: 64px; }

  .hero-left { padding: 84px 16px 48px; }
  .hero-title { font-size: clamp(1.65rem, 9vw, 2.3rem); }
  .hero-sub { font-size: .82rem; }
  .hero-meta { gap: 14px; }
  .hero-meta-num { font-size: 1.25rem; }
  .hero-meta-label { font-size: .58rem; }

  .stat-num { font-size: 1.7rem; }
  .stat-lbl { font-size: .58rem; }

  .section-title { font-size: clamp(1.35rem, 7.5vw, 2rem); }
  .cat-title { font-size: 1.2rem; }
  .cat-card { min-height: 160px; }

  .products-grid { grid-template-columns: 1fr; }
  .product-visual { height: 130px; }

  .tournaire-content { padding: 32px 16px 28px; }
  .tournaire-title { font-size: clamp(1.4rem, 7vw, 2rem); }

  .showroom-col { padding: 40px 16px 24px; }
  .contact-col { padding: 24px 16px 40px; }
  .contact-form-title { font-size: 1.3rem; }

  .footer-top { padding: 40px 0 28px; }
  .footer-col { text-align: left; }
  .footer-bottom { text-align: center; }

  .container { padding: 0 14px; }
  .container-wide { padding: 0 14px; }
}

/* ============================================================
   SPLASH SCREEN
   ============================================================ */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.splash-logo {
  height: 64px;
  width: auto;
  animation: splashPulse 1.4s ease infinite alternate;
}
@keyframes splashPulse {
  from { opacity: .7; transform: scale(.96); }
  to   { opacity: 1;  transform: scale(1); }
}
.splash-tagline {
  font-family: var(--display);
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.splash-bar {
  width: 140px;
  height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  overflow: hidden;
}
.splash-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
  transition: width .05s linear;
}

/* ============================================================
   BOUTON RETOUR EN HAUT
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--dark2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--blue); border-color: var(--blue); }
#back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   FILTRES FRAGRANCES
   ============================================================ */
.frag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  margin-bottom: 32px;
  padding: 18px 20px;
  background: rgba(41,171,226,.05);
  border: 1px solid rgba(41,171,226,.12);
  border-radius: 8px;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.filter-btn {
  padding: 6px 16px;
  font-size: .78rem;
  font-family: var(--sans);
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  color: var(--ink-mid);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.product-item.filtered-out {
  display: none;
}

/* ============================================================
   SECTION FAQ
   ============================================================ */
#faq {
  padding: 96px 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}
.faq-header {
  margin-bottom: 52px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open],
.faq-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(41,171,226,.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 22px;
  border-top: 1px solid var(--cream-dark);
  animation: faqOpen .25s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-answer p {
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-top: 16px;
}

/* ============================================================
   CARTE GOOGLE MAPS
   ============================================================ */
.showroom-map {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
#exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
#exit-popup.active {
  opacity: 1;
  visibility: visible;
}
.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,28,38,.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.exit-popup-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 14px;
  padding: 44px 40px;
  max-width: 480px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  transform: scale(.92) translateY(16px);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
#exit-popup.active .exit-popup-box {
  transform: scale(1) translateY(0);
}
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
}
.exit-popup-close:hover { color: var(--ink); }
.exit-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.exit-popup-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.exit-popup-text {
  font-size: .95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.exit-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.exit-popup-cta {
  width: 100%;
  justify-content: center;
  font-size: .88rem;
  padding: 14px 24px;
}
.exit-popup-skip {
  background: none;
  border: none;
  color: var(--ink-light);
  font-size: .8rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--sans);
  transition: color .2s;
}
.exit-popup-skip:hover { color: var(--ink); }
.exit-popup-trust {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: .73rem;
  color: var(--ink-light);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .exit-popup-box { padding: 36px 22px; }
  .exit-popup-title { font-size: 1.4rem; }
  #back-to-top { bottom: 24px; left: 16px; }
  .frag-filters { padding: 14px; gap: 10px 16px; }
}
