/* Styles du site */

:root {
  --navy:      #0a1f44;   /* bleu nuit principal */
  --navy-2:    #12305f;
  --blue:      #1e59c8;   /* bleu vif */
  --blue-2:    #2e6be6;
  --black:     #0b0e14;
  --ink:       #141a26;
  --gray:      #5a6b8c;
  --line:      #e4e9f2;
  --bg:        #f5f7fb;
  --white:     #ffffff;
  --gold:      #d4a017;   /* accent or (logo) */
  --gold-2:    #f0c04a;
  --wa:        #25d366;
  --wa-dark:   #1da851;
  --radius:    16px;
  --shadow:    0 12px 30px rgba(10,31,68,.10);
  --shadow-lg: 0 24px 60px rgba(10,31,68,.16);
  --maxw:      1200px;
  --font-h:    "Montserrat", system-ui, sans-serif;
  --font-b:    "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; margin: 0; color: var(--navy); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-h); font-weight: 700; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; box-shadow: 0 8px 20px rgba(30,89,200,.3); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); }
.btn-wa { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.28); }
.ico-wa { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,31,68,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(10,31,68,.98); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 46px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-h); font-weight: 900; color: #fff; letter-spacing: .5px; font-size: 1.05rem; }
.brand-text em { font-style: normal; font-size: .72rem; color: var(--gold-2); font-weight: 600; letter-spacing: .3px; }

.main-nav { display: flex; gap: 6px; }
.main-nav a {
  color: #dbe4f5; font-family: var(--font-h); font-weight: 600; font-size: .92rem;
  padding: 8px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(46,107,230,.55), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(212,160,23,.18), transparent 55%),
    linear-gradient(160deg, #0a1f44 0%, #0d2a5c 55%, #0a1730 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding: clamp(48px, 8vw, 96px) 0; }
.hero-kicker { display: inline-block; font-family: var(--font-h); font-weight: 700; font-size: .72rem; letter-spacing: 2px; color: var(--gold-2); background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.35); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.hero-text h1 { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 900; letter-spacing: -.5px; }
.hero-text h1 span { color: var(--gold-2); }
.hero-sub { color: #c6d4ec; font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 34em; margin: 20px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: #fff; }
.hero-stats span { font-size: .8rem; color: #9fb3d6; text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { display: flex; justify-content: center; }
.hero-badge {
  width: min(340px, 80%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.14), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center; padding: 34px;
  box-shadow: inset 0 0 60px rgba(46,107,230,.25), 0 30px 60px rgba(0,0,0,.35);
  animation: float 6s ease-in-out infinite;
}
.hero-badge img { width: 78%; filter: drop-shadow(0 12px 28px rgba(0,0,0,.4)); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Bandeau atouts */
.strip { background: var(--white); border-bottom: 1px solid var(--line); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 22px 0; }
.strip-item { display: flex; align-items: center; gap: 12px; padding: 6px 16px; }
.strip-item + .strip-item { border-left: 1px solid var(--line); }
.strip-ico { font-size: 1.7rem; }
.strip-item strong { display: block; font-family: var(--font-h); font-size: .95rem; color: var(--navy); }
.strip-item small { color: var(--gray); font-size: .8rem; }

/* Sections */
.section { padding: clamp(56px, 9vw, 100px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.eyebrow { display: inline-block; font-family: var(--font-h); font-weight: 700; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); background: rgba(30,89,200,.09); padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.eyebrow.light { color: var(--gold-2); background: rgba(212,160,23,.15); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
.section-lead { color: var(--gray); font-size: 1.05rem; margin-top: 14px; }

/* À propos */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about-media { display: flex; justify-content: center; padding: 34px; background: linear-gradient(160deg, #f0f5ff, #e6eefc); border-radius: 24px; box-shadow: var(--shadow); }
.about-media img { width: min(300px, 80%); filter: drop-shadow(0 16px 30px rgba(10,31,68,.18)); }
.about-text h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 18px; }
.about-text p { color: #3a465e; margin: 0 0 16px; }
.about-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.about-list li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.about-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: var(--blue); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }

/* Gammes */
.gammes { background: var(--bg); }
.gammes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gamme-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px 22px; overflow: hidden;
  transition: transform .2s, box-shadow .25s, border-color .2s; display: flex; flex-direction: column;
}
.gamme-card::before { content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: var(--accent); }
.gamme-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.gamme-num { font-family: var(--font-h); font-weight: 900; font-size: 2.4rem; color: var(--accent); opacity: .22; line-height: 1; }
.gamme-dot { display: none; }
.gamme-card h3 { font-size: 1.18rem; font-weight: 800; margin: 4px 0 8px; }
.gamme-card p { color: var(--gray); font-size: .9rem; flex: 1; margin: 0 0 16px; }
.gamme-count { font-family: var(--font-h); font-weight: 700; font-size: .85rem; color: var(--accent); }

/* Recherche */
.search-wrap { position: relative; max-width: 540px; margin: 0 auto 20px; }
.search-wrap svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; fill: var(--gray); pointer-events: none; }
#productSearch { width: 100%; padding: 15px 20px 15px 50px; border: 1.5px solid var(--line); border-radius: 999px; font-family: var(--font-b); font-size: 1rem; color: var(--ink); background: #fff; box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s; }
#productSearch::placeholder { color: #9aa7c0; }
#productSearch:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,89,200,.14); }
.no-results { text-align: center; color: var(--gray); font-size: 1.05rem; padding: 40px 0; }

/* Filtres */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-chip {
  font-family: var(--font-h); font-weight: 600; font-size: .85rem; color: var(--navy);
  background: var(--white); border: 1.5px solid var(--line); padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--accent, var(--blue)); color: var(--accent, var(--blue)); }
.filter-chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Catalogue */
.cat-block { margin-bottom: clamp(40px, 6vw, 72px); scroll-margin-top: 90px; }
.cat-header { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid var(--line); }
.cat-index {
  flex: none; width: 58px; height: 58px; border-radius: 14px;
  background: var(--accent); color: #fff; font-family: var(--font-h); font-weight: 900; font-size: 1.5rem;
  display: grid; place-items: center; box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 40%, transparent);
}
.cat-header h3 { font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 800; }
.cat-header p { color: var(--gray); font-size: .92rem; margin: 2px 0 0; }
.cat-badge { margin-left: auto; font-family: var(--font-h); font-weight: 700; font-size: .8rem; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, #fff); border: 1px solid color-mix(in srgb, var(--accent) 30%, #fff); padding: 6px 14px; border-radius: 999px; white-space: nowrap; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.pc-visual {
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 10%, #fff), #f3f6fc);
  display: grid; place-items: center; padding: 22px 10px 8px; border-bottom: 1px solid var(--line);
}
.pc-visual .bottle { width: 130px; height: auto; filter: drop-shadow(0 12px 18px rgba(10,31,68,.16)); }
.pc-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pc-seg { display: inline-block; align-self: flex-start; font-family: var(--font-h); font-weight: 700; font-size: .68rem; letter-spacing: .8px; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, #fff); padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
.pc-body h4 { font-size: 1.12rem; font-weight: 800; color: var(--navy); }
.pc-desc { color: #46536e; font-size: .88rem; margin: 8px 0 14px; flex: 1; }
.pc-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.spec { font-size: .72rem; font-weight: 600; color: var(--navy); background: var(--bg); border: 1px solid var(--line); padding: 4px 9px; border-radius: 6px; }
.pc-wa { font-size: .85rem; padding: 11px 16px; }

/* Photos produits */
.pv-photo { width: auto; max-width: 100%; height: auto; object-fit: contain; }
.pc-visual .pv-photo { max-height: 158px; }
.pc-visual:has(.pv-photo) { background: #ffffff; }
.rel-visual .pv-photo { max-height: 110px; }
.rel-visual:has(.pv-photo) { background: #ffffff; }

.pc-body h4 a { color: inherit; }
.pc-body h4 a:hover { color: var(--accent); }
.pc-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 2px; }
.pc-actions .btn { font-size: .85rem; padding: 11px 14px; }

/* PAGE PRODUIT */
.pp-breadcrumb { background: var(--white); border-bottom: 1px solid var(--line); font-size: .85rem; }
.pp-breadcrumb .container { padding-top: 14px; padding-bottom: 14px; }
.pp-breadcrumb a { color: var(--gray); font-weight: 600; }
.pp-breadcrumb a:hover { color: var(--blue); }
.pp-breadcrumb span { color: #b7c1d6; margin: 0 4px; }
.pp-breadcrumb strong { color: var(--navy); }

.pp-hero { background: linear-gradient(160deg, #0a1f44 0%, #0e2a5a 60%, #0a1730 100%); color: #fff; position: relative; overflow: hidden; }
.pp-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 15% 20%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 60%); }
.pp-hero-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: center; padding: clamp(36px, 6vw, 68px) 0; }
.pp-visual { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.pp-cat-tag { font-family: var(--font-h); font-weight: 700; font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; background: color-mix(in srgb, var(--accent) 55%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 70%, transparent); padding: 6px 16px; border-radius: 999px; }
.pp-bottle { width: min(260px, 70%); filter: drop-shadow(0 26px 40px rgba(0,0,0,.45)); animation: float 6s ease-in-out infinite; }
.pp-bottle .bottle { width: 100%; height: auto; }
/* Photo sur socle blanc */
.pp-bottle:has(.pv-photo) { width: min(320px, 82%); background: #fff; border-radius: 22px; padding: 28px; filter: none; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.pp-bottle-photo { width: 100%; max-height: 300px; }
.pp-info .pc-seg { background: rgba(255,255,255,.12); color: #fff; }
.pp-info h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; margin: 8px 0 14px; }
.pp-lead { color: #c6d4ec; font-size: 1.08rem; max-width: 40em; }
.pp-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 26px; }
.pp-specs .spec { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: #fff; font-size: .8rem; padding: 6px 12px; }
.pp-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.pp-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.pp-cta .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.pp-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; font-size: .85rem; color: #aebfdd; }

.pp-section { background: var(--bg); }
.pp-section.alt { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: transform .2s, box-shadow .25s; }
.pp-section.alt .benefit { background: var(--bg); }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit-ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: color-mix(in srgb, var(--accent) 14%, #fff); font-size: 1.5rem; margin-bottom: 14px; }
.benefit h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.benefit p { color: var(--gray); font-size: .88rem; margin: 0; }

.pp-two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.pp-apps h2, .pp-specsheet h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 10px 0 20px; }
.apps-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; }
.apps-list li { position: relative; padding-left: 34px; font-weight: 500; color: var(--ink); }
.apps-list li::before { content: "→"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--accent); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }
.pp-note { color: var(--gray); font-size: .88rem; margin: 16px 0 20px; }

.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.pp-section.alt .spec-table { background: var(--bg); }
.spec-table td { padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child { color: var(--gray); width: 42%; }
.spec-table td:last-child { color: var(--navy); }

.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rel-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .25s, border-color .2s; }
.rel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.rel-visual { background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 10%, #fff), #f3f6fc); display: grid; place-items: center; padding: 18px; border-bottom: 1px solid var(--line); }
.rel-visual .bottle { width: 96px; height: auto; }
.rel-body { padding: 14px 16px 18px; }
.rel-body h4 { font-size: 1rem; font-weight: 800; margin-top: 4px; }

.pp-final { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.pp-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 85% 50%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 60%); }
.pp-final-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(36px, 5vw, 56px) 0; flex-wrap: wrap; }
.pp-final h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; }
.pp-final p { color: #c6d4ec; margin: 10px 0 0; max-width: 40em; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* Contact */
.contact { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 90% 0%, rgba(46,107,230,.4), transparent 60%); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.contact-text h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
.contact-text p { color: #c6d4ec; margin: 16px 0 26px; max-width: 34em; }
.contact-info { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.contact-info li { display: flex; align-items: center; gap: 14px; }
.ci-ico { width: 46px; height: 46px; flex: none; display: grid; place-items: center; font-size: 1.3rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; }
.contact-info small { display: block; color: #9fb3d6; font-size: .76rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-info a, .contact-info span { color: #fff; font-family: var(--font-h); font-weight: 700; font-size: 1.15rem; }
.contact-info a:hover { color: var(--gold-2); }
#phoneList { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 2px; }
#phoneList .sep { color: #6f83a8; font-weight: 400; }

.contact-card { background: #fff; color: var(--ink); border-radius: 22px; padding: 34px 30px; text-align: center; box-shadow: var(--shadow-lg); }
.cc-logo { width: 110px; margin: 0 auto 14px; }
.contact-card h3 { font-size: 1.25rem; font-weight: 800; }
.cc-sub { color: var(--gray); font-size: .9rem; margin: 4px 0 22px; }
.contact-card .btn { margin-bottom: 12px; }

/* Footer */
.site-footer { background: var(--black); color: #b9c4da; padding: 44px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 28px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 54px; width: auto; }
.footer-brand strong { display: block; color: #fff; font-family: var(--font-h); font-size: 1rem; }
.footer-brand span { font-size: .82rem; color: #8a99b8; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; align-content: start; }
.footer-nav a { font-family: var(--font-h); font-weight: 600; font-size: .9rem; color: #c3cee4; }
.footer-nav a:hover { color: var(--gold-2); }
.footer-meta { font-size: .8rem; color: #7f8daa; text-align: right; }
.footer-meta p { margin: 0 0 6px; }

/* WhatsApp flottant */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: pulse 2.4s infinite;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse { 0% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gammes-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-hero-grid, .pp-two { grid-template-columns: 1fr; }
  .pp-visual { order: -1; }
  .pp-bottle { width: min(200px, 55%); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-badge { width: min(240px, 60%); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
}

@media (max-width: 820px) {
  .main-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.1);
    max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 16px;
  }
  .main-nav.open { max-height: 340px; padding: 10px 16px 18px; }
  .main-nav a { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .nav-toggle { display: flex; }
  .header-cta .btn-wa { display: none; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 14px 8px; }
  .strip-item:nth-child(3) { border-left: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-nav { justify-content: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 560px) {
  .gammes-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .benefits-grid, .related-grid { grid-template-columns: 1fr; }
  .pp-final-inner { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 22px; }
  .hero-stats strong { font-size: 1.6rem; }
  .strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-left: 0 !important; }
  .strip-item + .strip-item { border-top: 1px solid var(--line); padding-top: 14px; }
  .cat-header { flex-wrap: wrap; }
  .cat-badge { margin-left: 0; }
  .brand-text em { display: none; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

@media (min-width: 561px) {
  .product-card .btn, .contact-card .btn { width: 100%; }
  .hero-actions .btn, .about-text .btn, .filterbar .btn { width: auto; }
}
