/* ═══════════════════════════════════════════════════════════════
   LA COMPAGNIE DU CAVIAR — STYLE v3 (FUTURA / JOST)
   Plus de couleur · Plus d'interactivité · DA solide
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ─── VARIABLES ─── */
:root {
  /* Couleurs signature — teal dominant */
  --teal:        #3DBFB8;
  --teal-dark:   #2a9e98;
  --teal-xdark:  #1e7a75;
  --teal-light:  #e6f8f7;
  --teal-soft:   #B5E8E5;

  --navy:        #2B3A8C;
  --navy-dark:   #1E2A6B;
  --navy-deep:   #141e54;
  --navy-soft:   #6975C7;

  --rose:        #F7C5C5;
  --rose-dark:   #F0A0A0;
  --rose-light:  #FCE4E4;
  --rose-xlight: #FEF2F2;

  --yellow:      #F2DF6E;
  --yellow-dark: #E8CD3A;
  --yellow-light:#FBF4C8;

  --cream:       #FDF9EF;
  --white:       #FAFAFA;
  --ink:         #0F1642;

  /* Typographies */
  --futura: 'Jost', 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --serif:  'Cormorant Garamond', 'Georgia', serif;

  /* Dimensions */
  --banner-h:    40px;
  --nav-h:       90px;
  --radius:      24px;
  --radius-lg:   36px;

  /* Shadows */
  --sh-sm:  0 4px 18px rgba(43,58,140,.07);
  --sh-md:  0 12px 34px rgba(43,58,140,.13);
  --sh-lg:  0 28px 60px rgba(43,58,140,.18);
  --sh-teal:0 18px 40px rgba(61,191,184,.35);
}

/* ─── RESET ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body {
  font-family: var(--futura);
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.5;
}
a { text-decoration:none; color:inherit; }
button { cursor:none; font-family:var(--futura); border:none; background:none; }
img { display:block; max-width:100%; }
ul, ol { list-style:none; }
::selection { background:var(--teal); color:#fff; }

/* Scrollbar */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--teal-light); }
::-webkit-scrollbar-thumb { background:var(--teal); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--teal-dark); }

/* ─── CURSEUR DUAL ─── */
#cur {
  position:fixed; top:0; left:0;
  width:8px; height:8px;
  background:var(--navy);
  border-radius:50%;
  pointer-events:none;
  z-index:99999;
  transform:translate(-50%,-50%);
  transition:width .25s ease, height .25s ease, background .25s ease;
  mix-blend-mode:multiply;
}
#cur-ring {
  position:fixed; top:0; left:0;
  width:38px; height:38px;
  border:1.5px solid var(--teal);
  border-radius:50%;
  pointer-events:none;
  z-index:99998;
  transform:translate(-50%,-50%);
  opacity:.55;
  transition:width .35s ease, height .35s ease, opacity .35s;
}
#cur.hov { width:28px; height:28px; background:var(--rose); mix-blend-mode:normal; }
#cur-ring.hov { width:64px; height:64px; opacity:.25; border-color:var(--rose); }
#cur.dark { background:var(--teal); }
#cur-ring.dark { border-color:#fff; }

/* ─── BANNIÈRE ANNONCE ─── */
.banner {
  position:fixed; top:0; left:0; right:0;
  z-index:9000;
  height:var(--banner-h);
  background:linear-gradient(90deg, var(--rose) 0%, #F9D6D6 50%, var(--rose) 100%);
  overflow:hidden;
  display:flex; align-items:center;
}
.ticker-wrap { display:flex; width:max-content; animation:tick 32s linear infinite; }
.ticker-item {
  display:flex; align-items:center;
  gap:2rem;
  white-space:nowrap; padding-right:4rem;
  color:var(--navy);
  font-size:.72rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
}
.ticker-item .s { font-size:1rem; color:var(--teal); }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── NAVIGATION ─── */
#nav {
  position:fixed;
  top:var(--banner-h); left:0; right:0;
  z-index:8000;
  height:var(--nav-h);
  padding:0 2.5rem;
  display:flex; align-items:center; justify-content:space-between;
  transition:all .45s cubic-bezier(.4,0,.2,1);
}
#nav.stuck {
  top:var(--banner-h);
  background:rgba(43,58,140,.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 8px 32px rgba(43,58,140,.3);
}
.nav-logo {
  position:absolute; left:50%; top:50%;
  transform:translate(-50%, -50%);
  height:220px; width:220px;
  transition:all .45s;
}
.nav-logo img {
  width:100%; height:100%; object-fit:contain;
  border-radius:50%;
  transition:transform .5s ease;
}
.nav-logo:hover img { transform:rotate(-12deg) scale(1.08); }
.nav-logo:hover { transform:translate(-50%, -50%); }
#nav.stuck .nav-logo { height:160px; width:160px; }

.nav-links {
  display:flex; gap:2rem;
  font-family:var(--futura);
}
.nav-links a {
  color:#fff;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  position:relative;
  padding:.3rem 0;
  transition:color .3s;
}
.nav-links a::before {
  content:'';
  position:absolute; bottom:-2px; left:0;
  width:0; height:2px;
  background:var(--teal);
  transition:width .35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::before, .nav-links a.active::before { width:100%; }
.nav-links a:hover { color:var(--teal); }
.nav-links a.active { color:var(--teal); }

.nav-right { display:flex; align-items:center; gap:1rem; }
.cart-btn-nav {
  display:flex; align-items:center; gap:.5rem;
  background:rgba(255,255,255,.12);
  border:1.5px solid rgba(255,255,255,.28);
  border-radius:50px;
  padding:.5rem 1.1rem;
  color:#fff;
  font-size:.72rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  transition:all .3s;
}
.cart-btn-nav:hover {
  background:var(--teal);
  border-color:var(--teal);
  transform:translateY(-2px) scale(1.03);
}
.cart-count {
  background:var(--rose);
  color:var(--navy);
  width:20px; height:20px;
  border-radius:50%;
  font-size:.65rem; font-weight:900;
  display:inline-flex; align-items:center; justify-content:center;
}

.burger { display:none; }

/* ─── LAYOUT HELPERS ─── */
.page-content { padding-top:calc(var(--banner-h) + var(--nav-h)); }
.page-hero { padding-top:0; }
.container { max-width:1240px; margin:0 auto; padding:0 2rem; }
.container-lg { max-width:1440px; margin:0 auto; padding:0 2rem; }
.container-narrow { max-width:820px; margin:0 auto; padding:0 2rem; }
.sec { padding:7rem 2rem; position:relative; overflow:hidden; }
.sec-lg { padding:10rem 2rem; position:relative; overflow:hidden; }
.sec-sm { padding:4rem 2rem; position:relative; }

/* ─── TYPOGRAPHIE ─── */
.eyebrow {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--futura);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:1rem;
}
.eyebrow::before { content:''; width:28px; height:2px; background:var(--teal); }
.eyebrow.on-dark { color:var(--teal); }
.eyebrow.rose { color:var(--rose-dark); }
.eyebrow.rose::before { background:var(--rose-dark); }
.eyebrow.yellow { color:var(--yellow-dark); }
.eyebrow.yellow::before { background:var(--yellow-dark); }
.eyebrow.navy { color:var(--navy); }
.eyebrow.navy::before { background:var(--navy); }

.h-display {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(3rem, 9vw, 8rem);
  line-height:.88;
  letter-spacing:-.035em;
  color:var(--navy);
  text-transform:uppercase;
}
.h-hero {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2.6rem, 7vw, 6rem);
  line-height:.95;
  letter-spacing:-.025em;
  color:var(--navy);
  text-transform:uppercase;
}
.h-hero.white { color:#fff; }
.h-hero .italic {
  font-family:var(--serif);
  font-style:italic;
  font-weight:400;
  text-transform:none;
  color:var(--teal);
  letter-spacing:-.02em;
}
.h-hero .accent-rose { color:var(--rose-dark); }
.h-hero .accent-teal { color:var(--teal); }
.h-hero .accent-yellow { color:var(--yellow-dark); }

.h-sec {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2rem, 5vw, 4rem);
  line-height:1;
  letter-spacing:-.02em;
  color:var(--navy);
  text-transform:uppercase;
}
.h-sec .italic { font-family:var(--serif); font-style:italic; font-weight:400; text-transform:none; }
.h-sec.white { color:#fff; }
.h-sec.teal { color:var(--teal); }

.lead {
  font-family:var(--futura);
  font-weight:400;
  font-size:clamp(1rem, 1.3vw, 1.15rem);
  line-height:1.7;
  color:rgba(43,58,140,.65);
  max-width:620px;
}
.lead.white { color:rgba(255,255,255,.75); }

.sub { font-size:1rem; color:rgba(43,58,140,.55); font-weight:400; margin-top:.8rem; }
.sub.white { color:rgba(255,255,255,.65); }

.sec-head { text-align:center; margin-bottom:4.5rem; }
.sec-head .lead { margin:1rem auto 0; }

/* ─── BOUTONS ─── */
.btn {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:1rem 2.2rem;
  font-family:var(--futura);
  font-size:.8rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  border-radius:50px;
  border:none;
  position:relative;
  overflow:hidden;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  z-index:1;
}
.btn-teal { background:var(--teal); color:#fff; }
.btn-teal::before {
  content:''; position:absolute; inset:0;
  background:var(--navy);
  transform:translateX(-100%);
  transition:transform .45s cubic-bezier(.4,0,.2,1);
  z-index:-1;
}
.btn-teal:hover::before { transform:translateX(0); }
.btn-teal:hover { transform:translateY(-3px); box-shadow:var(--sh-teal); }

.btn-navy { background:var(--navy); color:#fff; }
.btn-navy::before {
  content:''; position:absolute; inset:0;
  background:var(--teal);
  transform:translateX(-100%);
  transition:transform .45s;
  z-index:-1;
}
.btn-navy:hover::before { transform:translateX(0); }
.btn-navy:hover { transform:translateY(-3px); box-shadow:var(--sh-md); }

.btn-rose { background:var(--rose); color:var(--navy); }
.btn-rose:hover { background:var(--rose-dark); transform:translateY(-3px); }

.btn-yellow { background:var(--yellow); color:var(--navy); }
.btn-yellow:hover { background:var(--yellow-dark); transform:translateY(-3px); }

.btn-outline {
  background:transparent;
  color:var(--navy);
  border:2px solid var(--navy);
}
.btn-outline:hover { background:var(--navy); color:#fff; transform:translateY(-3px); }

.btn-outline-white {
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color:var(--teal);
  color:var(--teal);
  transform:translateY(-3px);
}

.btn-ghost {
  background:transparent; color:var(--navy);
  padding:.6rem 1.2rem;
}
.btn-ghost:hover { color:var(--teal); }

.btn .arr { display:inline-block; transition:transform .3s; font-size:1rem; }
.btn:hover .arr { transform:translateX(4px); }

.btn-pill-big {
  display:inline-flex; align-items:center; gap:1rem;
  padding:1.3rem 1.3rem 1.3rem 2.2rem;
  border-radius:100px;
  background:var(--teal);
  color:#fff;
  font-family:var(--futura); font-weight:700;
  font-size:.85rem; letter-spacing:.14em; text-transform:uppercase;
  transition:all .4s;
}
.btn-pill-big .circ {
  width:44px; height:44px; border-radius:50%;
  background:#fff; color:var(--teal);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  transition:transform .35s;
}
.btn-pill-big:hover { background:var(--navy); transform:translateY(-3px); box-shadow:var(--sh-lg); }
.btn-pill-big:hover .circ { transform:translateX(6px) rotate(-45deg); color:var(--navy); }

/* ─── TAG/CHIP ─── */
.tag {
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.35rem 1rem;
  border-radius:50px;
  background:var(--teal-light);
  color:var(--teal-xdark);
  font-family:var(--futura);
  font-size:.7rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
}
.tag.rose { background:var(--rose-light); color:var(--navy); }
.tag.yellow { background:var(--yellow-light); color:var(--navy); }
.tag.navy { background:var(--navy); color:#fff; }

/* ─── FORMES DÉCORATIVES ─── */
.blob {
  position:absolute;
  border-radius:50%;
  filter:blur(50px);
  z-index:0;
  pointer-events:none;
  opacity:.5;
}
.blob-teal { background:var(--teal); }
.blob-rose { background:var(--rose); }
.blob-yellow { background:var(--yellow); }
.blob-navy { background:var(--navy); opacity:.2; }

@keyframes blob-morph {
  0%, 100% { border-radius:60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%      { border-radius:30% 60% 70% 40% / 50% 60% 30% 60%; }
}
.morph {
  animation: blob-morph 14s ease-in-out infinite, float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform:translateY(0); }
  50%      { transform:translateY(-25px); }
}

/* ─── REVEAL ANIM ─── */
.rv   { opacity:0; transform:translateY(50px); }
.rv-l { opacity:0; transform:translateX(-50px); }
.rv-r { opacity:0; transform:translateX(50px); }
.rv-s { opacity:0; transform:scale(.92); }
.rv.in, .rv-l.in, .rv-r.in, .rv-s.in {
  opacity:1;
  transform:translate(0) scale(1);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}

/* ─── TOAST ─── */
#toast {
  position:fixed;
  bottom:2rem; left:50%;
  transform:translateX(-50%) translateY(30px);
  background:var(--navy);
  color:#fff;
  padding:1rem 2rem;
  border-radius:50px;
  font-family:var(--futura);
  font-size:.8rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  z-index:99000;
  opacity:0;
  transition:all .45s;
  pointer-events:none;
  white-space:nowrap;
  box-shadow:var(--sh-lg);
}
#toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ─── TOP BUTTON ─── */
#top-btn {
  position:fixed;
  bottom:2rem; right:2rem;
  z-index:7000;
  width:52px; height:52px;
  background:var(--teal);
  border:none; border-radius:50%;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--sh-teal);
  opacity:0;
  pointer-events:none;
  transition:all .45s;
  transform:translateY(15px);
  font-size:1.2rem;
}
#top-btn.show { opacity:1; pointer-events:all; transform:translateY(0); }
#top-btn:hover { background:var(--navy); transform:translateY(-4px) scale(1.08); }

/* ─── PRODUCT CARD ─── */
.pcard {
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--sh-sm);
  transition:all .5s cubic-bezier(.22,.61,.36,1);
  position:relative;
  display:flex; flex-direction:column;
}
.pcard:hover {
  box-shadow:var(--sh-lg);
  transform:translateY(-10px);
}
.pcard-img {
  position:relative;
  display:flex; align-items:center; justify-content:center;
  padding:2.8rem 2rem 1.5rem;
  min-height:260px;
  overflow:hidden;
}
.pcard-img::before {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:180px; height:180px;
  background:rgba(255,255,255,.3);
  border-radius:50%;
  filter:blur(30px);
}
.pcard-img img {
  max-height:200px;
  width:auto;
  object-fit:contain;
  position:relative;
  z-index:1;
  transition:transform .6s cubic-bezier(.22,.61,.36,1);
}
.pcard:hover .pcard-img img {
  transform:scale(1.12) rotate(-4deg);
}
.pcard-body {
  padding:1.8rem 2rem 2rem;
  background:#fff;
}
.pcard-species {
  font-family:var(--futura);
  font-size:.68rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--teal);
  margin-bottom:.5rem;
}
.pcard-name {
  font-family:var(--futura);
  font-size:2rem;
  font-weight:800;
  letter-spacing:-.015em;
  color:var(--navy);
  line-height:1;
  margin-bottom:.6rem;
  text-transform:uppercase;
}
.pcard-desc {
  font-family:var(--futura);
  font-weight:400;
  font-size:.88rem;
  color:rgba(43,58,140,.6);
  line-height:1.55;
  margin-bottom:1.5rem;
}
.pcard-foot {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:1.2rem;
  border-top:1px solid rgba(43,58,140,.08);
}
.pcard-price {
  font-family:var(--futura);
  font-size:1.8rem;
  font-weight:800;
  color:var(--navy);
  line-height:1;
}
.pcard-price small {
  font-size:.7rem;
  font-weight:500;
  color:rgba(43,58,140,.45);
  letter-spacing:.05em;
  text-transform:uppercase;
  display:block;
  margin-top:.2rem;
}

.pcard-badge {
  position:absolute; top:1rem; right:1rem;
  z-index:3;
  padding:.32rem .9rem;
  border-radius:50px;
  font-family:var(--futura);
  font-size:.65rem; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase;
}

/* ─── SIZE SELECTOR ─── */
.size-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.55rem;
  margin-bottom:1.4rem;
}
.size-btn {
  padding:.65rem .8rem;
  border:1.5px solid rgba(43,58,140,.15);
  border-radius:14px;
  background:#fff;
  color:var(--navy);
  font-family:var(--futura);
  font-weight:600;
  text-align:center;
  transition:all .25s;
  display:flex; flex-direction:column;
  gap:.1rem;
  cursor:none;
}
.size-btn .w {
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.size-btn .p {
  font-size:.7rem;
  color:rgba(43,58,140,.55);
  font-weight:500;
}
.size-btn:hover {
  border-color:var(--teal);
  color:var(--teal);
  transform:translateY(-2px);
}
.size-btn.active {
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
  transform:translateY(-2px);
}
.size-btn.active .p { color:rgba(255,255,255,.7); }

/* ─── QTY + ATC ─── */
.qty-atc-row {
  display:flex; gap:.7rem; align-items:stretch;
}
.qty-box {
  display:flex; align-items:center;
  background:var(--teal-light);
  border-radius:50px;
  padding:.3rem;
}
.qty-btn-sm {
  width:32px; height:32px;
  border-radius:50%;
  background:#fff;
  color:var(--navy);
  font-weight:700; font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s;
}
.qty-btn-sm:hover { background:var(--teal); color:#fff; }
.qty-val-sm {
  min-width:34px; text-align:center;
  font-weight:700; color:var(--navy);
  font-size:.9rem;
}
.btn-atc {
  flex:1;
  background:var(--navy);
  color:#fff;
  border-radius:50px;
  padding:.85rem 1.6rem;
  font-family:var(--futura);
  font-size:.76rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  transition:all .3s;
  position:relative; overflow:hidden;
}
.btn-atc::before {
  content:''; position:absolute; inset:0;
  background:var(--teal);
  transform:translateY(100%);
  transition:transform .4s;
  z-index:0;
}
.btn-atc > * { position:relative; z-index:1; }
.btn-atc:hover::before { transform:translateY(0); }
.btn-atc:hover { transform:scale(1.02); }
.btn-atc:active { transform:scale(.98); }
.btn-atc.added { background:var(--teal); }
.btn-atc.added::before { transform:translateY(0); }

/* ─── FOOTER ─── */
footer {
  background:var(--teal-xdark);
  color:#fff;
  padding:6rem 2rem 2rem;
  position:relative;
  overflow:hidden;
}
footer::before {
  content:''; position:absolute;
  top:-100px; right:-100px;
  width:400px; height:400px;
  background:var(--teal);
  border-radius:50%;
  filter:blur(120px);
  opacity:.4;
}
footer::after {
  content:''; position:absolute;
  bottom:-150px; left:-100px;
  width:450px; height:450px;
  background:var(--navy);
  border-radius:50%;
  filter:blur(130px);
  opacity:.3;
}
.ft-grid {
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:3.5rem;
  max-width:1240px;
  margin:0 auto 3.5rem;
  position:relative; z-index:1;
}
.ft-logo { height:80px; width:80px; margin-bottom:1.2rem; }
.ft-logo img { width:100%; height:100%; object-fit:contain; border-radius:50%; }
.ft-brand-name {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.1rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:.3rem;
}
.ft-desc {
  color:rgba(255,255,255,.7);
  font-size:.88rem;
  line-height:1.7;
  margin:0 0 1.5rem;
}
.ft-addr {
  font-size:.82rem;
  color:rgba(255,255,255,.65);
  line-height:1.6;
  margin-bottom:1.3rem;
  font-style:normal;
}
.ft-addr strong { color:#fff; display:block; margin-bottom:.2rem; font-weight:700; font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; }

.nl-form {
  display:flex;
  background:rgba(255,255,255,.12);
  border-radius:50px;
  overflow:hidden;
  padding:.3rem;
  backdrop-filter:blur(8px);
}
.nl-input {
  flex:1;
  padding:.75rem 1.4rem;
  background:none;
  border:none;
  color:#fff;
  font-family:var(--futura);
  font-size:.82rem;
  outline:none;
}
.nl-input::placeholder { color:rgba(255,255,255,.45); }
.nl-btn {
  background:var(--rose);
  color:var(--navy);
  border:none; border-radius:50px;
  padding:.7rem 1.4rem;
  font-family:var(--futura);
  font-size:.72rem; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase;
  transition:all .3s;
}
.nl-btn:hover { background:#fff; transform:scale(1.05); }

.ft-h {
  font-family:var(--futura);
  font-weight:800;
  font-size:.7rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--teal-soft);
  margin-bottom:1.5rem;
}
.ft-links {
  display:flex; flex-direction:column;
  gap:.85rem;
}
.ft-links a {
  color:rgba(255,255,255,.7);
  font-size:.9rem;
  font-weight:400;
  transition:all .25s;
  display:inline-flex; align-items:center; gap:.4rem;
}
.ft-links a:hover { color:var(--rose); transform:translateX(4px); }

.ft-socials {
  display:flex; gap:.6rem;
  margin-top:1rem;
}
.ft-soc {
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff;
  transition:all .3s;
  font-size:.9rem;
}
.ft-soc:hover { background:var(--rose); color:var(--navy); transform:translateY(-3px) rotate(-10deg); }

.ft-coluche {
  max-width:1240px;
  margin:0 auto 2rem;
  padding:2rem 0;
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
  text-align:center;
  position:relative; z-index:1;
}
.ft-coluche .q {
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.1rem, 2.2vw, 1.6rem);
  color:var(--teal-soft);
  font-weight:400;
  line-height:1.4;
  max-width:780px;
  margin:0 auto;
}
.ft-coluche .a {
  margin-top:.8rem;
  font-family:var(--futura);
  font-size:.72rem;
  color:rgba(255,255,255,.5);
  letter-spacing:.2em;
  text-transform:uppercase;
}

.ft-bottom {
  display:flex; justify-content:space-between; align-items:center;
  max-width:1240px; margin:0 auto;
  gap:1rem;
  position:relative; z-index:1;
  flex-wrap:wrap;
}
.ft-copy {
  color:rgba(255,255,255,.45);
  font-size:.75rem;
  letter-spacing:.08em;
}
.ft-pay {
  display:flex; gap:.5rem; align-items:center;
}
.ft-pay-chip {
  background:rgba(255,255,255,.1);
  padding:.35rem .7rem;
  border-radius:6px;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
}

/* ─── CARTES BÉNÉFICES ─── */
.benefit-card {
  background:#fff;
  border-radius:24px;
  padding:2rem 1.8rem;
  box-shadow:var(--sh-sm);
  transition:all .4s cubic-bezier(.22,.61,.36,1);
  position:relative; overflow:hidden;
}
.benefit-card:hover {
  transform:translateY(-8px);
  box-shadow:var(--sh-md);
}
.benefit-num {
  font-family:var(--futura);
  font-weight:800;
  font-size:4rem;
  line-height:1;
  color:var(--teal);
  opacity:.2;
  letter-spacing:-.05em;
  margin-bottom:.6rem;
  transition:all .4s;
}
.benefit-card:hover .benefit-num { opacity:1; color:var(--rose-dark); transform:scale(1.08); }
.benefit-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.35rem;
  color:var(--navy);
  margin-bottom:.5rem;
  text-transform:uppercase;
  letter-spacing:-.01em;
}
.benefit-desc {
  font-size:.85rem;
  color:rgba(43,58,140,.6);
  line-height:1.6;
}

/* ─── STRIP MARQUEE ─── */
.marquee {
  padding:1.8rem 0;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
  position:relative;
}
.marquee-wrap {
  display:flex;
  width:max-content;
  animation:tick 35s linear infinite;
}
.marquee-item {
  display:flex; align-items:center; gap:2.5rem;
  padding-right:4rem;
  font-family:var(--futura);
  font-weight:800;
  font-size:2rem;
  letter-spacing:-.01em;
  text-transform:uppercase;
  white-space:nowrap;
}
.marquee-item .dot {
  width:12px; height:12px; border-radius:50%;
  background:var(--teal);
  display:inline-block;
}
.marquee-item .dot.rose { background:var(--rose); }
.marquee-item .dot.yellow { background:var(--yellow); }
.marquee-item .italic {
  font-family:var(--serif);
  font-weight:400;
  font-style:italic;
  color:var(--teal);
  text-transform:none;
}

/* ─── GLASS CARD ─── */
.glass {
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius);
}

/* ─── STATS ─── */
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
  margin-top:3rem;
}
.stat-card { text-align:center; }
.stat-num {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2.5rem, 5vw, 4rem);
  color:var(--teal);
  line-height:1;
  letter-spacing:-.03em;
  margin-bottom:.3rem;
}
.stat-lbl {
  font-family:var(--futura);
  font-size:.72rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.75);
}
.stat-card.dark .stat-num { color:var(--navy); }
.stat-card.dark .stat-lbl { color:rgba(43,58,140,.55); }

/* ─── BREADCRUMB ─── */
.crumbs {
  display:flex; gap:.5rem; align-items:center;
  padding:1.2rem 0;
  font-size:.75rem;
  color:rgba(43,58,140,.5);
  letter-spacing:.1em; text-transform:uppercase;
  font-weight:600;
}
.crumbs a { color:rgba(43,58,140,.7); transition:color .2s; }
.crumbs a:hover { color:var(--teal); }
.crumbs .sep { opacity:.4; }

/* ─── INPUTS (formulaires) ─── */
.field {
  display:flex; flex-direction:column; gap:.5rem;
  margin-bottom:1.2rem;
}
.field label {
  font-family:var(--futura);
  font-size:.7rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--navy);
}
.input, .textarea, .select {
  width:100%;
  padding:1rem 1.3rem;
  border:1.5px solid rgba(43,58,140,.15);
  border-radius:14px;
  background:#fff;
  color:var(--navy);
  font-family:var(--futura);
  font-size:.95rem;
  outline:none;
  transition:all .25s;
}
.input:focus, .textarea:focus, .select:focus {
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(61,191,184,.14);
}
.textarea { resize:vertical; min-height:150px; font-family:var(--futura); line-height:1.6; }
.input::placeholder, .textarea::placeholder { color:rgba(43,58,140,.35); }

/* ─── TABLE ─── */
.table {
  width:100%;
  border-collapse:collapse;
  font-family:var(--futura);
}
.table th {
  text-align:left;
  padding:1rem 1.2rem;
  background:var(--teal-light);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--navy);
  border-bottom:2px solid var(--teal);
}
.table td {
  padding:1.2rem;
  border-bottom:1px solid rgba(43,58,140,.08);
  color:var(--navy);
  font-size:.9rem;
}
.table tr:hover td { background:var(--cream); }

/* ─── ACCORDIONS ─── */
.accordion-item {
  border-bottom:1.5px solid rgba(43,58,140,.1);
  padding:1.5rem 0;
}
.accordion-q {
  display:flex; justify-content:space-between; align-items:center;
  font-family:var(--futura);
  font-weight:700;
  font-size:1.05rem;
  color:var(--navy);
  text-transform:uppercase;
  letter-spacing:-.01em;
  cursor:none;
  padding:0;
  width:100%;
  text-align:left;
  transition:color .2s;
}
.accordion-q:hover { color:var(--teal); }
.accordion-q .plus {
  width:36px; height:36px;
  border-radius:50%;
  background:var(--teal-light);
  color:var(--teal-xdark);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:1.2rem;
  transition:all .3s;
  flex-shrink:0;
}
.accordion-item.open .accordion-q .plus {
  background:var(--teal);
  color:#fff;
  transform:rotate(135deg);
}
.accordion-a {
  max-height:0;
  overflow:hidden;
  transition:max-height .4s cubic-bezier(.22,.61,.36,1), padding .3s;
  color:rgba(43,58,140,.7);
  font-size:.92rem;
  line-height:1.7;
}
.accordion-item.open .accordion-a { max-height:500px; padding-top:1rem; }

/* ─── PRODUIT PAGE — FULL SECTION ─── */
.caviar-full {
  min-height:85vh;
  padding:6rem 2rem;
  display:flex; align-items:center;
  position:relative;
  overflow:hidden;
}
.caviar-full-grid {
  max-width:1280px; margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
  position:relative; z-index:2;
}
.caviar-full.reverse .caviar-full-grid > :first-child { order:2; }
.caviar-visual {
  position:relative;
  aspect-ratio:1/1;
  display:flex; align-items:center; justify-content:center;
}
.caviar-visual-bg {
  position:absolute; inset:10%;
  border-radius:50%;
  filter:blur(60px);
  opacity:.45;
  z-index:0;
  animation:blob-morph 16s ease-in-out infinite;
}
.caviar-visual img {
  position:relative; z-index:2;
  max-width:80%; max-height:80%;
  object-fit:contain;
  transition:transform .5s ease;
  filter:drop-shadow(0 40px 60px rgba(0,0,0,.18));
}
.caviar-visual:hover img {
  transform:scale(1.06) rotate(-8deg);
}

.caviar-info { position:relative; z-index:2; }
.caviar-info .species {
  font-family:var(--futura);
  font-style:italic;
  font-size:.85rem;
  font-weight:500;
  letter-spacing:.02em;
  color:rgba(43,58,140,.5);
  margin-bottom:.5rem;
}
.caviar-info .name {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2.8rem, 6vw, 5rem);
  line-height:.9;
  letter-spacing:-.03em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:1.3rem;
}
.caviar-info .tagline {
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.2rem, 1.8vw, 1.5rem);
  color:var(--teal);
  margin-bottom:1.5rem;
  max-width:500px;
}
.caviar-info .desc {
  font-size:.98rem;
  color:rgba(43,58,140,.65);
  line-height:1.75;
  margin-bottom:2rem;
  max-width:520px;
}
.caviar-specs {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1rem;
  margin-bottom:2rem;
  max-width:520px;
}
.cspec {
  padding:1rem;
  background:rgba(255,255,255,.6);
  border-radius:14px;
  text-align:center;
  backdrop-filter:blur(8px);
}
.cspec-val {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.4rem;
  color:var(--navy);
  line-height:1;
}
.cspec-lbl {
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(43,58,140,.6);
  margin-top:.35rem;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width:820px;
  margin:0 auto;
  padding:4rem 2rem 6rem;
  font-family:var(--futura);
}
.legal-content h1 {
  font-family:var(--futura);
  font-weight:800;
  font-size:clamp(2rem, 4vw, 3rem);
  text-transform:uppercase;
  letter-spacing:-.02em;
  color:var(--navy);
  margin-bottom:.6rem;
  line-height:1;
}
.legal-content .legal-sub {
  color:rgba(43,58,140,.55);
  font-size:.9rem;
  margin-bottom:3rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.legal-content h2 {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.3rem;
  text-transform:uppercase;
  letter-spacing:-.01em;
  color:var(--navy);
  margin:2.5rem 0 1rem;
  padding-top:2rem;
  border-top:1px solid rgba(43,58,140,.1);
}
.legal-content h3 {
  font-family:var(--futura);
  font-weight:700;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--teal-xdark);
  margin:1.5rem 0 .8rem;
}
.legal-content p, .legal-content li {
  font-size:.95rem;
  line-height:1.75;
  color:rgba(43,58,140,.8);
  margin-bottom:1rem;
}
.legal-content ul, .legal-content ol {
  padding-left:1.5rem;
  margin-bottom:1.5rem;
}
.legal-content ul li {
  list-style:disc;
  margin-bottom:.5rem;
}
.legal-content ol li { list-style:decimal; margin-bottom:.5rem; }
.legal-content a {
  color:var(--teal);
  border-bottom:1px solid var(--teal-soft);
  transition:all .2s;
}
.legal-content a:hover { color:var(--navy); border-color:var(--navy); }
.legal-content strong { color:var(--navy); font-weight:700; }

/* ─── PAIRING / SERVING CARDS ─── */
.pair-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:1.5rem;
  margin-top:3rem;
}
.pair-card {
  padding:2rem 1.5rem;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--sh-sm);
  text-align:center;
  transition:all .35s;
}
.pair-card:hover { transform:translateY(-6px); box-shadow:var(--sh-md); }
.pair-emoji {
  font-size:2.5rem;
  margin-bottom:1rem;
}
.pair-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:1rem;
  letter-spacing:-.01em;
  color:var(--navy);
  text-transform:uppercase;
  margin-bottom:.4rem;
}
.pair-desc {
  font-size:.82rem;
  color:rgba(43,58,140,.6);
  line-height:1.55;
}

/* ─── PROCESS STEPS ─── */
.steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  margin-top:3.5rem;
  counter-reset:step;
}
.step {
  padding:2rem 1.5rem;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--sh-sm);
  position:relative;
  transition:all .35s;
}
.step:hover { transform:translateY(-8px); box-shadow:var(--sh-md); }
.step::before {
  counter-increment:step;
  content:counter(step, decimal-leading-zero);
  position:absolute;
  top:1rem; right:1.3rem;
  font-family:var(--futura);
  font-weight:800;
  font-size:3rem;
  line-height:1;
  color:var(--teal-light);
  letter-spacing:-.04em;
}
.step-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.1rem;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:.5rem;
  letter-spacing:-.01em;
}
.step-desc {
  font-size:.84rem;
  color:rgba(43,58,140,.6);
  line-height:1.55;
}

/* ─── SUBSCRIPTION CARD ─── */
.sub-card {
  background:#fff;
  border-radius:28px;
  padding:3rem 2.2rem;
  box-shadow:var(--sh-sm);
  transition:all .4s;
  position:relative;
  overflow:hidden;
}
.sub-card-img {
  margin: -1.5rem -.8rem 1.4rem;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(43,58,140,.06) 0%, rgba(61,191,184,.08) 100%);
  display: flex; align-items: center; justify-content: center;
}
.sub-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.sub-card:hover .sub-card-img img { transform: scale(1.06); }
.sub-card.featured .sub-card-img { background: rgba(255,255,255,.06); }
.sub-card:hover { transform:translateY(-10px); box-shadow:var(--sh-lg); }
.sub-card.featured {
  background:linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  color:#fff;
  transform:scale(1.04);
}
.sub-card.featured::before {
  content:'POPULAIRE';
  position:absolute; top:1.5rem; right:1.5rem;
  background:var(--rose);
  color:var(--navy);
  padding:.3rem .9rem;
  border-radius:50px;
  font-size:.65rem; font-weight:800;
  letter-spacing:.14em;
}
.sub-card-name {
  font-family:var(--futura);
  font-weight:800;
  font-size:1.8rem;
  letter-spacing:-.01em;
  color:var(--navy);
  text-transform:uppercase;
  margin-bottom:.5rem;
}
.sub-card.featured .sub-card-name { color:#fff; }
.sub-card-price {
  font-family:var(--futura);
  font-weight:800;
  font-size:3.5rem;
  color:var(--teal);
  letter-spacing:-.03em;
  line-height:1;
  margin-bottom:.3rem;
}
.sub-card-period {
  font-size:.8rem;
  color:rgba(43,58,140,.55);
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:2rem;
}
.sub-card.featured .sub-card-period { color:rgba(255,255,255,.6); }
.sub-card-features {
  margin-bottom:2rem;
  padding-top:1.5rem;
  border-top:1px solid rgba(43,58,140,.1);
}
.sub-card.featured .sub-card-features { border-color:rgba(255,255,255,.15); }
.sub-card-features li {
  padding:.6rem 0;
  font-size:.9rem;
  color:rgba(43,58,140,.75);
  display:flex; align-items:flex-start; gap:.7rem;
}
.sub-card.featured .sub-card-features li { color:rgba(255,255,255,.85); }
.sub-card-features li::before {
  content:'✓';
  color:var(--teal);
  font-weight:700;
  flex-shrink:0;
}

/* ─── CONTACT INFO ─── */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  max-width:1100px;
  margin:0 auto;
  padding:4rem 2rem;
}
.contact-info {
  display:flex; flex-direction:column;
  gap:2rem;
}
.contact-item {
  padding:1.6rem 1.8rem;
  background:#fff;
  border-radius:20px;
  box-shadow:var(--sh-sm);
  display:flex; gap:1.2rem; align-items:flex-start;
}
.contact-icon {
  width:50px; height:50px; flex-shrink:0;
  border-radius:50%;
  background:var(--teal-light);
  color:var(--teal-xdark);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
}
.contact-info-title {
  font-family:var(--futura);
  font-weight:800;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--teal);
  margin-bottom:.35rem;
}
.contact-info-text {
  font-size:.95rem;
  color:var(--navy);
  line-height:1.55;
  font-weight:500;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .caviar-full-grid { grid-template-columns:1fr; gap:3rem; }
  .caviar-full.reverse .caviar-full-grid > :first-child { order:0; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .steps { grid-template-columns:repeat(2,1fr); }
  .ft-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .ft-grid > *:first-child { grid-column:1/-1; }
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
}
@media(max-width:900px) {
  .nav-links { display:none; }
  .burger {
    display:flex; flex-direction:column;
    justify-content:center; gap:5px;
    width:44px; height:44px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
  }
  .burger span {
    display:block;
    width:18px; height:2px;
    background:#fff;
    margin:0 auto;
    border-radius:2px;
    transition:all .3s;
  }
  .sec, .sec-lg { padding:5rem 1.5rem; }
}
@media(max-width:600px) {
  :root { --nav-h:64px; --banner-h:36px; }
  .ft-grid { grid-template-columns:1fr; gap:2.5rem; }
  .ft-bottom { flex-direction:column; text-align:center; }
  body { cursor:auto; }
  button, a { cursor:pointer; }
  #cur, #cur-ring { display:none; }
  .marquee-item { font-size:1.3rem; }
  .size-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:1fr 1fr; gap:1rem; }
  .caviar-specs { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   AMÉLIORATIONS GLOBALES (enhance.js)
═══════════════════════════════════════════════════════════════ */

/* Page fade-in (opacity-only — pas de transform sur body sinon ça
   casse les position:fixed enfants comme le curseur custom) */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn .45s ease both; }

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--yellow) 50%, var(--teal) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10000;
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(43,58,140,.25);
  transition: transform .12s ease-out;
  border-radius: 0 2px 2px 0;
}

/* Better focus rings (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection color */
::selection { background: var(--teal); color: #fff; }
::-moz-selection { background: var(--teal); color: #fff; }

/* Smooth scrolling everywhere as fallback */
html { scroll-behavior: smooth; }

/* Image safety — prevent layout shift */
img { max-width: 100%; height: auto; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  body { opacity: 1 !important; }
  #scroll-progress { display: none; }
}
