/* ==========================================================================
   BioMira — Feuille de styles principale
   Extraite et organisée depuis l'intégration monolithique d'origine.
   Toutes les règles visuelles sont conservées à l'identique.
   ========================================================================== */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --deep:#04342C;--mid:#0A5C4A;--light:#12896B;--accent:#1D9E75;
  --sky:#5BC8E8;--sky-pale:#A8E0EF;--gold:#C9A84C;
  --white:#FFFFFF;--cream:#F8F6F0;--muted:rgba(255,255,255,0.55);
  --border:rgba(255,255,255,0.10);--card:rgba(255,255,255,0.04);
  --nav-h:72px;
}
html{scroll-behavior:smooth}
body{background:var(--deep);color:var(--white);font-family:'DM Sans',sans-serif;font-weight:300;overflow-x:hidden}

/* ── IMAGES ACCUEIL — CORRECTIF MOBILE ──────────────────── */
@media(max-width:768px){
  .bm-cols, .bm-cols--rev {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: 2rem;
  }
  .bm-col-img {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    width: 100% !important;
  }
  .bm-col-img img {
    width: 100% !important;
    height: auto !important;
    max-height: 320px;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
  }
  .hero-split {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding-top: calc(var(--nav-h) + 2rem);
    min-height: unset;
  }
  .hero-split .hero-img-wrap {
    height: auto !important;
    max-height: 280px !important;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }
  .hero-img-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center top !important;
  }
  .hero-img-wrap::after {
    background: none !important;
  }
  .bm-pillars {
    grid-template-columns: 1fr !important;
  }
}

/* ── EFFET ACCORDÉON POUR LES RECETTES ── */
.recipe-card { cursor: pointer; }
.recipe-card .recipe-desc {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  margin-top: 1rem;
}
.recipe-card.open .recipe-desc { display: block; max-height: 2500px; }
.recipe-card:hover .recipe-img-container { background: rgba(4, 52, 44, 0.75); }
.recipe-card.open .recipe-desc { display: block; max-height: 2000px; }
.recipe-img-container { transition: transform 0.3s ease; }
.recipe-card:hover .recipe-img-container { background: rgba(4, 52, 44, 0.7); }

/* ── NOISE OVERLAY ── */
body::after{content:'';position:fixed;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");pointer-events:none;z-index:9999}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;height:var(--nav-h);z-index:1000;display:flex;align-items:center;padding:0 2.5rem;gap:2rem;border-bottom:1px solid var(--border);background:rgba(4,52,44,0.92);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.nav-logo{display:flex;align-items:center;gap:0.5rem;text-decoration:none;flex-shrink:0}
/* Lockup horizontal 208x48 (ratio 4.34:1) sur carte blanche.
   36px de haut => 156px de large + 22px de padding = 178px de carte.
   Le violet #4E337C est a 1.36:1 sur le vert du nav : la carte blanche
   n'est pas decorative, elle est necessaire a la lisibilite. */
.nav-logo img { height: 36px; width: auto; background-color: var(--white); padding: 7px 11px; border-radius: 8px; }
/* .nav-logo span : regle retiree — le mot "BioMira" fait desormais partie de l'image. */
.nav-links{display:flex;align-items:center;gap:0.25rem}
.nav-links a{color:var(--muted);text-decoration:none;font-size:0.82rem;font-weight:400;letter-spacing:0.08em;text-transform:uppercase;padding:0.5rem 0.85rem;border-radius:4px;transition:all 0.2s;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{color:var(--white);background:rgba(255,255,255,0.07)}
.nav-cta{background:var(--accent);color:var(--white)!important;padding:0.5rem 1.2rem!important;border-radius:4px!important;font-weight:500!important}
.nav-cta:hover{background:var(--light)!important}
.burger-menu { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; z-index: 1010; }
.burger-menu span { width: 28px; height: 2px; background-color: var(--white); transition: all 0.3s ease; }

/* ── SECTIONS ── */
section{min-height:100vh;padding:calc(var(--nav-h) + 4rem) 5vw 5rem;display:none}
section.active{display:block}

/* ── HERO ── */
#accueil{display:none;position:relative}
#accueil.active{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;min-height:100vh}
.hero-glow{position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 10% 50%,rgba(91,200,232,0.06) 0%,transparent 65%),radial-gradient(ellipse 60% 80% at 90% 10%,rgba(18,137,107,0.13) 0%,transparent 60%);pointer-events:none}
.hero-content{position:relative;z-index:2;max-width:760px}
.hero-eyebrow{font-size:0.72rem;letter-spacing:0.25em;text-transform:uppercase;color:var(--sky-pale);margin-bottom:1.5rem;display:flex;align-items:center;gap:0.75rem}
.hero-eyebrow::before{content:'';width:32px;height:1px;background:var(--sky-pale)}
.hero-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2.5rem,5.5vw,5rem);font-weight:300;line-height:1.1;margin-bottom:2rem}
.hero-title em{font-style:italic;color:var(--sky-pale)}
.hero-manifesto{font-size:1.05rem;line-height:1.75;color:rgba(255,255,255,0.75);margin-bottom:2.5rem;max-width:580px}
.hero-manifesto strong{color:var(--white);font-weight:500}
.hero-prs{display:flex;gap:0.75rem;margin-bottom:3rem;flex-wrap:wrap}
.prs-pill{border:1px solid rgba(91,200,232,0.35);color:var(--sky-pale);padding:0.45rem 1.1rem;border-radius:2px;font-size:0.78rem;letter-spacing:0.12em;text-transform:uppercase;display:flex;align-items:center;gap:0.5rem}
.prs-pill::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--sky)}
.hero-notify{display:flex;gap:0;max-width:480px;width:100%}
.hero-notify input{flex:1;background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.15);border-right:none;color:var(--white);padding:0.85rem 1.2rem;font-size:0.9rem;font-family:'DM Sans',sans-serif;border-radius:3px 0 0 3px;outline:none;min-width:0}
.hero-notify input::placeholder{color:var(--muted)}
.hero-notify input:focus{border-color:rgba(91,200,232,0.5)}
.hero-notify button{background:var(--accent);color:var(--white);border:none;padding:0.85rem 1.5rem;font-size:0.85rem;font-weight:500;letter-spacing:0.06em;cursor:pointer;border-radius:0 3px 3px 0;font-family:'DM Sans',sans-serif;transition:background 0.2s;white-space:nowrap}
.hero-notify button:hover{background:var(--light)}
.construction-badge{display:inline-flex;align-items:center;gap:0.5rem;background:rgba(201,168,76,0.12);border:1px solid rgba(201,168,76,0.35);color:var(--gold);padding:0.4rem 1rem;border-radius:2px;font-size:0.75rem;letter-spacing:0.12em;text-transform:uppercase;margin-bottom:2rem}
.hero-stats{display:flex;gap:3rem;margin-top:4rem;padding-top:2.5rem;border-top:1px solid var(--border);flex-wrap:wrap}
.stat-item{display:flex;flex-direction:column;gap:0.3rem}
.stat-num{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:300;color:var(--sky-pale)}
.stat-label{font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted)}

/* ── SECTION TITLES ── */
.sec-eyebrow{font-size:0.7rem;letter-spacing:0.25em;text-transform:uppercase;color:var(--sky-pale);margin-bottom:1rem;display:flex;align-items:center;gap:0.75rem}
.sec-eyebrow::before{content:'';width:28px;height:1px;background:var(--sky-pale)}
.sec-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3.2rem);font-weight:300;line-height:1.1;margin-bottom:1rem}
.sec-title em{font-style:italic;color:var(--sky-pale)}
.sec-sub{color:rgba(255,255,255,0.65);font-size:1rem;line-height:1.7;max-width:640px;margin-bottom:3.5rem}

/* ── CARDS ── */
.card{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:2rem;transition:border-color 0.25s,transform 0.25s}
.card:hover{border-color:rgba(91,200,232,0.25);transform:translateY(-2px)}

/* ── SYSTEME DE CONFIDENTIALITÉ (FLOU) ── */
.strain-card { position: relative; overflow: hidden; cursor: pointer; transition: all 0.3s ease; }
.strain-card.blurred .strain-name,
.strain-card.blurred .strain-sci,
.strain-card.blurred p,
.strain-card.blurred .tag {
  filter: blur(5px);
  opacity: 0.4;
  user-select: none;
  pointer-events: none;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.strain-card .strain-name,
.strain-card .strain-sci,
.strain-card p,
.strain-card .tag { transition: filter 0.4s ease, opacity 0.4s ease; }
.confidential-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(4, 52, 44, 0.2); backdrop-filter: blur(2px); z-index: 10;
  transition: opacity 0.3s ease; padding: 1rem;
}
.confidential-badge {
  background: rgba(201, 168, 76, 0.9); color: var(--deep); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1rem; border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3); pointer-events: none; display: flex; align-items: center; gap: 0.5rem;
}
.strain-card:not(.blurred) .confidential-overlay { opacity: 0; pointer-events: none; }

/* ── SCIENCE ── */
.science-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-bottom:3rem}
.founder-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-bottom:4rem}
.founder-card{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:1.5rem;display:flex;gap:1.5rem;align-items:flex-start;flex-wrap:wrap}
.team-avatar-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(91, 200, 232, 0.3); flex-shrink: 0; }
.founder-name{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:600;margin-bottom:0.2rem}
.founder-role{font-size:0.75rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--sky-pale);margin-bottom:0.75rem}
.founder-bio{font-size:0.9rem;line-height:1.65;color:rgba(255,255,255,0.7)}
.strain-card .strain-name{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:600;margin-bottom:0.5rem;color:var(--sky-pale)}
.strain-card .strain-sci{font-size:0.8rem;font-style:italic;color:var(--muted);margin-bottom:1rem}
.strain-card p{font-size:0.9rem;line-height:1.65;color:rgba(255,255,255,0.7)}
.tag{display:inline-block;background:rgba(91,200,232,0.12);border:1px solid rgba(91,200,232,0.25);color:var(--sky-pale);padding:0.2rem 0.6rem;border-radius:2px;font-size:0.72rem;letter-spacing:0.08em;margin:0.25rem 0.1rem 0}
/* ── CARTE PARTENAIRES — Flou "Disponible bientôt" ── */
.map-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
#swissPartnersMap.map-coming-soon canvas {
  filter: blur(6px);
  transition: filter 0.4s ease;
}
#swissPartnersMap.map-coming-soon {
  pointer-events: none;
  user-select: none;
}
.map-coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 52, 44, 0.25);
  backdrop-filter: blur(2px);
  z-index: 10;
  pointer-events: none;
}
.map-coming-soon-badge {
  background: rgba(201, 168, 76, 0.92);
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* ── RECIPES ── */
.recipe-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.recipe-card{background:var(--card);border:1px solid var(--border);border-radius:8px;overflow:hidden;transition:transform 0.25s,border-color 0.25s}
.recipe-card:hover{transform:translateY(-3px);border-color:rgba(91,200,232,0.25)}
.recipe-img-container { width: 100%; height: 220px; background: rgba(4, 52, 44, 0.5); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 10px; }
.recipe-img{ width: 100%; height: 100%; object-fit: contain; }
.recipe-body{padding:1.5rem}
.recipe-tag{font-size:0.68rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--accent);margin-bottom:0.5rem}
.recipe-name{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:600;margin-bottom:0.75rem}
.recipe-meta{display:flex;gap:1rem;font-size:0.78rem;color:var(--muted);margin-bottom:1rem}
.recipe-desc{font-size:0.88rem;line-height:1.6;color:rgba(255,255,255,0.65)}
.recipe-benefit{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border);font-size:0.78rem;color:var(--sky-pale);display:flex;align-items:center;gap:0.5rem}
.recipe-benefit::before{content:'🧬';font-size:0.9rem}

/* ── CORRECTIONS RESPONSIVE MOBILE ── */
@media(max-width:768px){
  .bm-cols,.bm-cols--rev{ grid-template-columns:1fr; gap:2rem; direction:ltr; }
  .bm-col-img{height:260px!important}
  .bm-pillars{grid-template-columns:1fr}
  .bm-stat{ min-width:45%; border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); padding-bottom:0.75rem; }
  .hero-split{ grid-template-columns:1fr; gap:2rem; padding-top:calc(var(--nav-h) + 2rem); min-height:unset; }
  .hero-split .hero-img-wrap{ height:260px; max-height:260px; }
  .recipe-grid, .blog-grid, .science-grid, .founder-grid{ grid-template-columns:1fr; }
  .shop-hero{grid-template-columns:1fr;gap:2rem}
  .contact-grid{grid-template-columns:1fr;gap:2rem}
  .admin-2col{ grid-template-columns:1fr!important; }
  .hero-title{font-size:clamp(1.8rem,7vw,2.6rem)}
  .bm-h2{font-size:clamp(1.5rem,6vw,2.2rem)}
  .sec-title{font-size:clamp(1.6rem,6vw,2.2rem)}
  #compte .container{ padding-left:1.25rem!important; padding-right:1.25rem!important; }
  .partners-wrap{ margin-left:-1.25rem; margin-right:-1.25rem; }
}

/* ── BLOG ── */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.blog-card{background:var(--card);border:1px solid var(--border);border-radius:8px;overflow:hidden;cursor:pointer;transition:all 0.25s;text-decoration:none;display:block;color:inherit;padding:0}
.blog-card:hover{border-color:rgba(91,200,232,0.3);transform:translateY(-2px)}
.blog-img-container{width:100%;height:220px;background:rgba(4,52,44,0.5);display:flex;align-items:center;justify-content:center;overflow:hidden;padding:10px}
.blog-img{width:100%;height:100%;object-fit:contain;display:block}
.blog-body{padding:1.5rem}
.blog-date{font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);margin-bottom:0.75rem}
.blog-title{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:600;line-height:1.3;margin-bottom:0.75rem}
.blog-excerpt{font-size:0.88rem;line-height:1.65;color:rgba(255,255,255,0.6)}
.blog-tag{display:inline-block;background:rgba(18,137,107,0.2);color:var(--accent);padding:0.2rem 0.6rem;border-radius:2px;font-size:0.7rem;margin-top:1rem}
.modal-hero-img{width:100%;height:220px;object-fit:contain;background:rgba(4,52,44,0.15);border-radius:8px;margin-bottom:1.25rem;display:block}

/* ── SHOP ── */
.shop-hero{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;min-height:70vh}
.shop-img-wrap{position:relative;display:flex;justify-content:center;width:100%}
.shop-img{max-width:100%;max-height:400px;object-fit:contain;filter:drop-shadow(0 30px 60px rgba(0,0,0,0.5))}
.shop-badge{display:inline-flex;align-items:center;gap:0.5rem;background:rgba(201,168,76,0.12);border:1px solid rgba(201,168,76,0.35);color:var(--gold);padding:0.4rem 1rem;border-radius:2px;font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;margin-bottom:1.5rem}
.shop-price-coming{font-size:0.9rem;color:var(--muted);margin-bottom:2rem}
.preorder-form{display:flex;flex-direction:column;gap:0.75rem;max-width:380px;width:100%}
.preorder-form input{background:rgba(255,255,255,0.07);border:1px solid var(--border);color:var(--white);padding:0.85rem 1.2rem;font-size:0.9rem;font-family:'DM Sans',sans-serif;border-radius:4px;outline:none;width:100%}
.preorder-form input:focus{border-color:rgba(91,200,232,0.4)}
.preorder-form button{background:var(--accent);color:var(--white);border:none;padding:1rem;font-size:0.9rem;font-weight:500;border-radius:4px;cursor:pointer;transition:background 0.2s;font-family:'DM Sans',sans-serif;letter-spacing:0.05em;width:100%}
.preorder-form button:hover{background:var(--light)}
.shop-features{display:flex;flex-direction:column;gap:0.75rem;margin-top:2rem}
.shop-feature{display:flex;align-items:center;gap:0.75rem;font-size:0.88rem;color:rgba(255,255,255,0.7)}
.shop-feature::before{content:'';width:18px;height:1px;background:var(--accent);flex-shrink:0}

/* ── SEARCH ── */
.search-box{max-width:700px;margin:0 auto;width:100%}
.search-input-wrap{position:relative;margin-bottom:2rem}
.search-input-wrap input{width:100%;background:rgba(255,255,255,0.06);border:1px solid var(--border);color:var(--white);padding:1.2rem 3.5rem 1.2rem 1.5rem;font-size:1.1rem;font-family:'DM Sans',sans-serif;border-radius:6px;outline:none;transition:border-color 0.2s}
.search-input-wrap input:focus{border-color:rgba(91,200,232,0.5);background:rgba(255,255,255,0.08)}
.search-input-wrap .search-icon{position:absolute;right:1.2rem;top:50%;transform:translateY(-50%);font-size:1.2rem;cursor:pointer;color:var(--sky-pale)}
.search-chips{display:flex;flex-wrap:wrap;gap:0.6rem;margin-bottom:1.5rem}
.search-chip{border:1px solid rgba(91,200,232,0.3);color:var(--sky-pale);padding:0.4rem 0.9rem;border-radius:20px;font-size:0.8rem;cursor:pointer;transition:all 0.2s}
.search-chip:hover{background:rgba(91,200,232,0.1);border-color:rgba(91,200,232,0.5)}
.search-loading{color:var(--muted);font-size:0.9rem;padding:1rem 0}
.search-result{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:1.5rem;margin-top:1rem}
.search-result h3{font-family:'Cormorant Garamond',serif;font-size:1.2rem;margin-bottom:0.75rem;color:var(--sky-pale)}
.search-result p{font-size:0.92rem;line-height:1.7;color:rgba(255,255,255,0.78)}

/* ── CONTACT ── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-info h3{font-family:'Cormorant Garamond',serif;font-size:1.6rem;margin-bottom:1rem}
.contact-info p{color:rgba(255,255,255,0.65);line-height:1.75;margin-bottom:1.5rem}
.contact-detail{display:flex;align-items:center;gap:0.75rem;margin-bottom:0.75rem;font-size:0.9rem}
.contact-detail a{color:var(--sky-pale);text-decoration:none}
.contact-form{display:flex;flex-direction:column;gap:1rem;width:100%}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;background:rgba(255,255,255,0.06);border:1px solid var(--border);color:var(--white);padding:0.9rem 1.2rem;font-size:0.9rem;font-family:'DM Sans',sans-serif;border-radius:4px;outline:none;transition:border-color 0.2s;resize:vertical}
.contact-form select option{background:var(--deep)}

/* ── FOOTER ── */
footer{border-top:1px solid var(--border);padding:2rem 5vw;display:flex;justify-content:space-between;align-items:center;font-size:0.78rem;color:var(--muted);flex-wrap:wrap;gap:1.5rem;margin-top:2rem}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-links a{color:var(--muted);text-decoration:none;transition:color 0.2s}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.fade-up{animation:fadeUp 0.8s ease both}

/* ── UTIL ── */
.divider{height:1px;background:var(--border);margin:3rem 0}
.text-accent{color:var(--sky-pale)}

/* ── ICONES RESEAUX SOCIAUX HERO ── */
.social-link { color: var(--sky-pale); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; text-decoration: none; transition: all 0.25s ease; }
.social-link:hover { color: var(--white); background: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(29, 158, 117, 0.3); }

/* ── MEDIA QUERIES MOBILE ── */
@media(max-width:768px){
  nav{padding:0 1.25rem;gap:0.5rem;justify-content:space-between}
  /* 28px de haut => ~121px de large + 16px de padding = ~137px de carte,
     ce qui laisse la place au lang-switch, au panier et au burger. */
  .nav-logo img { height: 28px; padding: 5px 8px; border-radius: 6px; }
  .nav-links{
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(4,52,44,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; padding: 2rem 1.5rem; gap: 1.25rem;
    border-bottom: 1px solid var(--border); display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a{ width: 100%; text-align: center; padding: 0.85rem; font-size: 0.9rem; }
  .burger-menu { display: flex; }
  .burger-menu.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger-menu.open span:nth-child(2) { opacity: 0; }
  .burger-menu.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  section { padding: calc(var(--nav-h) + 2rem) 1.25rem 4rem; }
  .hero-notify { flex-direction: column; gap: 0.75rem; }
  .hero-notify input { border-radius: 4px; border-right: 1px solid rgba(255,255,255,0.15); padding: 0.9rem 1.2rem; }
  .hero-notify button { border-radius: 4px; padding: 0.9rem 1.2rem; }
  .shop-hero, .contact-grid, .founder-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { gap: 1.5rem; justify-content: space-between; }
  .stat-item { flex: 1 1 40%; }
  footer { flex-direction: column; text-align: center; gap: 1.25rem; }
  .footer-links { justify-content: center; }
}

/* ── LOGO — tres petits ecrans (iPhone SE et en dessous) ── */
@media(max-width:400px){
  .nav-logo img { height: 24px; padding: 4px 7px; }
}

/* ── ACCUEIL PREMIUM ── */
.hero-img-wrap{width:100%;border-radius:8px;overflow:hidden;position:relative}
.hero-img-wrap img{width:100%;height:auto;object-fit:contain;object-position:center center;display:block;opacity:0.93}
.hero-img-wrap::after{content:'';position:absolute;inset:0;background:linear-gradient(to left,transparent 70%,var(--deep) 100%)}
.bm-cols{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;margin:3rem 0}
.bm-cols--rev{direction:rtl}.bm-cols--rev>*{direction:ltr}
.bm-col-img{border-radius:8px;overflow:hidden}
.bm-col-img img{width:100%;height:100%;object-fit:cover;display:block;opacity:0.9}
.bm-eyebrow{font-size:0.7rem;letter-spacing:0.25em;text-transform:uppercase;color:var(--sky-pale);margin-bottom:1rem;display:flex;align-items:center;gap:0.75rem}
.bm-eyebrow::before{content:'';width:28px;height:1px;background:var(--sky-pale)}
.bm-h2{font-family:'Cormorant Garamond',serif;font-size:clamp(1.9rem,3.5vw,2.9rem);font-weight:300;line-height:1.1;margin-bottom:1.25rem}
.bm-h2 em{font-style:italic;color:var(--sky-pale)}
.bm-body{color:rgba(255,255,255,0.72);font-size:0.97rem;line-height:1.8;margin-bottom:1.25rem}
.bm-body strong{color:var(--white);font-weight:500}
.bm-quote{border-left:2px solid var(--accent);padding:1rem 1.25rem;margin:1.5rem 0;font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:300;font-style:italic;color:rgba(255,255,255,0.82);line-height:1.65}
.bm-quote cite{display:block;margin-top:0.5rem;font-size:0.76rem;font-style:normal;font-family:'DM Sans',sans-serif;letter-spacing:0.08em;text-transform:uppercase;color:var(--accent)}
.bm-pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2rem}
.bm-pillar{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:6px;padding:1.4rem}
.bm-pillar-icon{font-size:1.3rem;margin-bottom:0.6rem}
.bm-pillar-title{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:600;color:var(--white);margin-bottom:0.4rem}
.bm-pillar-text{font-size:0.82rem;line-height:1.65;color:rgba(255,255,255,0.58)}
.bm-prs{display:flex;flex-direction:column;gap:1rem;margin-top:1.5rem}
.bm-prs-step{display:flex;gap:1rem;align-items:flex-start}
.bm-prs-letter{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:600;color:var(--white);flex-shrink:0}
.lp{background:var(--deep);border:1.5px solid var(--accent)}
.lr{background:var(--mid);border:1.5px solid var(--sky)}
.ls{background:var(--light);border:1.5px solid var(--gold)}
.bm-prs-content strong{display:block;font-size:0.88rem;font-weight:500;color:var(--white);margin-bottom:0.2rem}
.bm-prs-content span{font-size:0.82rem;color:rgba(255,255,255,0.58);line-height:1.55}
.bm-stats-bar{display:flex;gap:0;margin-top:3rem;border-top:1px solid rgba(255,255,255,0.08);padding-top:2rem;flex-wrap:wrap}
.bm-stat{flex:1;min-width:110px;text-align:center;padding:0.5rem 0.75rem;border-right:1px solid rgba(255,255,255,0.08)}
.bm-stat:last-child{border-right:none}
.bm-sn{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:300;color:var(--sky-pale);display:block}
.bm-sl{font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.42)}
.bm-div{display:flex;align-items:center;gap:1rem;margin:2.5rem 0}
.bm-div::before,.bm-div::after{content:'';flex:1;height:1px;background:rgba(255,255,255,0.08)}
.bm-dot{width:4px;height:4px;border-radius:50%;background:var(--accent)}
.bm-manifesto{text-align:center;max-width:600px;margin:3rem auto;padding-bottom:1rem}
.bm-slogan{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-style:italic;color:var(--sky-pale);margin-top:1.25rem}

/* ── BANNIÈRE PARTENAIRES DÉFILANTE (version finale utilisée) ── */
.partners-wrap{margin:0 0 2rem;margin-left:-5vw;margin-right:-5vw}
.partners-track-outer{overflow:hidden;position:relative;-webkit-mask-image:linear-gradient(to right,transparent 0%,black 10%,black 90%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 10%,black 90%,transparent 100%);padding:0.5rem 0;cursor:grab}
.partners-track-outer.dragging{cursor:grabbing}
.partners-track-outer.dragging .partners-track{animation-play-state:paused!important}
.partners-track{display:flex;align-items:stretch;gap:1.5rem;width:max-content;animation:partners-scroll 30s linear infinite}
.partners-track:hover{animation-play-state:paused}
@keyframes partners-scroll{from{transform:translateX(0)}to{transform:translateX(-25%)}}

.partner-card{background:var(--card);border:1px solid var(--border);border-radius:8px;overflow:hidden;width:240px;flex-shrink:0;transition:transform 0.25s,border-color 0.25s;cursor:default}
.partner-card:hover{transform:translateY(-3px);border-color:rgba(91,200,232,0.25)}
.partner-card-img{width:100%;height:220px;background:rgba(4,52,44,0.5);display:flex;align-items:center;justify-content:center;overflow:hidden;padding:10px}
.partner-card-img img{width:100%;height:100%;object-fit:contain;display:block}
.partner-card-initials{width:100%;height:160px;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;color:var(--sky-pale);opacity:0.6;letter-spacing:0.05em}
.partner-card-img--logo{background:rgba(4,52,44,0.4);padding:28px}
.partner-card-img--logo img{opacity:1}
.partner-card-body{padding:1.5rem}
.partner-card-role{font-size:0.68rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--accent);margin-bottom:0.5rem}
.partner-card-name{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:600;margin-bottom:0.4rem;color:var(--white);line-height:1.25}
.partner-card-company{font-size:0.8rem;color:var(--muted);line-height:1.5}
.partner-card-dot{color:var(--accent);opacity:0.3;font-size:0.8rem;flex-shrink:0;align-self:center;padding:0 0.25rem}

@media(prefers-reduced-motion:reduce){.partners-track{animation:none;overflow-x:auto}}
@media(max-width:768px){
  .partners-wrap{margin-left:-1.25rem;margin-right:-1.25rem}
  .partners-track{animation-duration:36s;gap:1rem}
  .partner-card{width:195px}
  .partner-card-img{height:175px}
}

/* ── HERO SPLIT ── */
.hero-split{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;min-height:calc(100vh - var(--nav-h));padding-top:var(--nav-h)}
.hero-split .hero-content{padding-top:0;max-width:100%}
.hero-split .hero-img-wrap{height:480px;max-height:480px;margin:0;border-radius:12px}
@media(max-width:900px){
  .hero-split{grid-template-columns:1fr;padding-top:calc(var(--nav-h) + 2rem)}
  .hero-split .hero-img-wrap{height:320px;min-height:unset}
}

/* ── Bouton partage recette (Story Instagram) ── */
.recipe-share-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  margin-top: 0.75rem; width: 100%; background: transparent; color: rgba(91,200,232,0.75);
  border: 1px solid rgba(91,200,232,0.25); padding: 0.5rem 1rem; border-radius: 4px;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s ease; text-transform: uppercase;
}
.recipe-share-btn:hover { background: rgba(91,200,232,0.08); color: rgba(91,200,232,1); border-color: rgba(91,200,232,0.5); }
.recipe-share-btn .ig-icon-sm { width: 13px; height: 13px; opacity: 0.7; flex-shrink: 0; transition: opacity 0.2s; }
.recipe-share-btn:hover .ig-icon-sm { opacity: 1; }

.share-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(4,52,44,0.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); justify-content: center; align-items: center; padding: 1.25rem;
}
.share-modal-overlay.open { display: flex; }
.share-modal { background: #04342C; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 1.75rem; max-width: 360px; width: 100%; text-align: center; }
.share-modal-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(91,200,232,0.65); margin-bottom: 0.4rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.share-modal-eyebrow::before, .share-modal-eyebrow::after { content: ''; width: 20px; height: 1px; background: rgba(91,200,232,0.35); }
.share-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.3rem; font-weight: 300; }
.share-modal-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; line-height: 1.5; }
#sharePreviewCanvas { border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.25rem; max-width: 148px; display: block; margin-left: auto; margin-right: auto; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.share-dl-btn { background: #1D9E75; color: #fff; border: none; padding: 0.8rem; border-radius: 6px; font-size: 0.85rem; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; width: 100%; margin-bottom: 0.6rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: background 0.2s; letter-spacing: 0.04em; }
.share-dl-btn:hover { background: #12896B; }
.share-close-btn { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.45); padding: 0.6rem; border-radius: 6px; font-size: 0.78rem; cursor: pointer; font-family: 'DM Sans', sans-serif; width: 100%; transition: all 0.2s; }
.share-close-btn:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.75); }
.share-hint { font-size: 0.65rem; color: rgba(255,255,255,0.25); margin-top: 0.85rem; line-height: 1.55; }

/* ── AUTH / COMPTE ── */
.auth-tab { flex:1;background:transparent;border:none;color:var(--muted); padding:0.85rem 1rem;font-size:0.82rem;font-weight:400; letter-spacing:0.08em;text-transform:uppercase;cursor:pointer; font-family:'DM Sans',sans-serif;border-bottom:2px solid transparent; transition:all 0.2s;margin-bottom:-1px; }
.auth-tab.active{color:var(--white);border-bottom-color:var(--accent)}
.auth-tab:hover{color:var(--white)}
.auth-field{margin-bottom:1.25rem}
.auth-label{display:block;font-size:0.75rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);margin-bottom:0.45rem}
.auth-input{width:100%;background:rgba(255,255,255,0.06);border:1px solid var(--border);color:var(--white);padding:0.85rem 1.1rem;font-size:0.9rem;font-family:'DM Sans',sans-serif;border-radius:4px;outline:none;transition:border-color 0.2s}
.auth-input:focus{border-color:rgba(91,200,232,0.5)}
.auth-btn{width:100%;background:var(--accent);color:#fff;border:none;padding:0.95rem;font-size:0.9rem;font-weight:500;border-radius:4px;cursor:pointer;font-family:'DM Sans',sans-serif;transition:background 0.2s;letter-spacing:0.04em}
.auth-btn:hover{background:var(--light)}
.auth-btn:disabled{opacity:0.6;cursor:not-allowed}
.auth-link-btn{background:none;border:none;color:var(--sky-pale);font-size:0.8rem;cursor:pointer;font-family:'DM Sans',sans-serif;padding:0;text-decoration:underline;display:block;text-align:center;margin-top:0.75rem}
.auth-flash{padding:0.85rem 1rem;border-radius:4px;font-size:0.85rem;margin-bottom:1.5rem;line-height:1.5;text-align:left}
.auth-flash--success{background:rgba(29,158,117,0.15);border:1px solid rgba(29,158,117,0.4);color:#6DDFAD}
.auth-flash--error{background:rgba(192,57,43,0.15);border:1px solid rgba(192,57,43,0.4);color:#FF8A75}
.auth-flash--info{background:rgba(91,200,232,0.10);border:1px solid rgba(91,200,232,0.3);color:var(--sky-pale)}
.admin-tab{background:transparent;border:none;color:var(--muted);padding:0.65rem 1.1rem;font-size:0.78rem;font-weight:400;letter-spacing:0.08em;text-transform:uppercase;cursor:pointer;font-family:'DM Sans',sans-serif;border-bottom:2px solid transparent;transition:all 0.2s;margin-bottom:-1px;white-space:nowrap}
.admin-tab.active{color:var(--white);border-bottom-color:var(--accent)}
.admin-tab:hover{color:var(--white)}
.dash-stat-card{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:1.5rem;display:flex;flex-direction:column;gap:0.4rem}
.dash-stat-num{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:300;color:var(--sky-pale)}
.dash-stat-label{font-size:0.7rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--muted)}
.bm-table{width:100%;border-collapse:collapse;font-size:0.85rem}
.bm-table th{text-align:left;padding:0.75rem 1rem;font-size:0.68rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);border-bottom:1px solid var(--border);white-space:nowrap}
.bm-table td{padding:0.85rem 1rem;border-bottom:1px solid var(--border);color:rgba(255,255,255,0.8);vertical-align:middle}
.bm-table tr:last-child td{border-bottom:none}
.bm-table tr:hover td{background:rgba(255,255,255,0.03)}
.status-badge{display:inline-block;padding:0.2rem 0.65rem;border-radius:3px;font-size:0.68rem;font-weight:500;letter-spacing:0.08em;text-transform:uppercase}
.status-pending{background:rgba(201,168,76,0.15);color:var(--gold);border:1px solid rgba(201,168,76,0.3)}
.status-confirmed{background:rgba(91,200,232,0.12);color:var(--sky-pale);border:1px solid rgba(91,200,232,0.25)}
.status-paid{background:rgba(29,158,117,0.15);color:var(--accent);border:1px solid rgba(29,158,117,0.3)}
.status-shipped{background:rgba(29,158,117,0.25);color:#6DDFAD;border:1px solid rgba(29,158,117,0.5)}
.status-delivered{background:rgba(29,158,117,0.35);color:#fff;border:1px solid var(--accent)}
.status-cancelled{background:rgba(192,57,43,0.15);color:#FF8A75;border:1px solid rgba(192,57,43,0.3)}
#nav-login-link.connected{color:var(--sky-pale)!important}
.analytics-period-btn { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 0.4rem 0.9rem; border-radius: 4px; font-size: 0.78rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.analytics-period-btn:hover { border-color: var(--sky-pale); color: var(--sky-pale); }
.analytics-period-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.an-bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.an-bar-label { font-size: 0.78rem; color: var(--muted); width: 100px; flex-shrink: 0; text-transform: capitalize; }
.an-bar-track { flex: 1; background: rgba(255,255,255,0.06); border-radius: 3px; height: 6px; overflow: hidden; }
.an-bar-fill { height: 100%; border-radius: 3px; background: var(--accent); transition: width 0.6s ease; }
.an-bar-val { font-size: 0.75rem; color: var(--sky-pale); width: 40px; text-align: right; flex-shrink: 0; }

/* Focus visibility (accessibilité) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--sky); outline-offset: 2px;
}

/* ── HERO — CTA secondaire + footnotes (inspiré de la sobriété PSŌM) ── */
.prs-pill{ text-decoration:none; cursor:pointer; transition: border-color .2s, background .2s; }
.prs-pill:hover{ border-color: rgba(91,200,232,0.7); background: rgba(91,200,232,0.06); }
.prs-pill sup{ font-size:0.65em; margin-left:0.15em; color: var(--sky); }

.hero-cta-row{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; max-width:620px; }
.hero-cta-row .hero-notify{ flex:1 1 320px; max-width:480px; }
.hero-cta-secondary{
  color: var(--sky-pale); text-decoration:none; font-size:0.85rem; font-weight:500;
  letter-spacing:0.03em; white-space:nowrap; padding:0.6rem 0.2rem; border-bottom:1px solid transparent;
  transition: border-color .2s, color .2s;
}
.hero-cta-secondary:hover{ border-bottom-color: var(--sky-pale); color:#fff; }

.hero-footnote{
  margin-top:1rem; font-size:0.72rem; line-height:1.6; color: rgba(255,255,255,0.4);
  max-width:600px;
}
.hero-footnote sup{ color: var(--sky); }
.hero-footnote a{ color: var(--sky-pale); text-decoration:underline; }

@media(max-width:768px){
  .hero-cta-row{ flex-direction:column; align-items:stretch; }
  .hero-cta-row .hero-notify{ max-width:100%; }
  .hero-cta-secondary{ text-align:center; }
}

/* ── Barre de confiance resserrée (façon cartes chiffres PSŌM) ── */
.bm-stats-bar{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0.85rem;
  margin-top:2.5rem; border-top:none; padding-top:0;
}
.bm-stat{
  border:1px solid rgba(255,255,255,0.08); border-right:none; background: rgba(255,255,255,0.02);
  border-radius:8px; padding:1.1rem 0.75rem; text-align:center; transition: border-color .2s, background .2s;
}
.bm-stat:hover{ border-color: rgba(91,200,232,0.3); background: rgba(91,200,232,0.04); }
@media(max-width:768px){
  .bm-stats-bar{ grid-template-columns:repeat(2,1fr); }
}

/* ── POPUP — Espace client (connexion / inscription fermable) ── */
.account-modal-overlay{
  display:none; position:fixed; inset:0; z-index:3000; background:rgba(4,52,44,0.82);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  justify-content:center; align-items:center; padding:1.25rem;
}
.account-modal-overlay.open{ display:flex; }
.account-modal{
  position:relative; background:#04342C; border:1px solid rgba(255,255,255,0.10);
  border-radius:12px; padding:2rem; max-width:420px; width:100%;
  max-height:90vh; overflow-y:auto;
}
.account-modal-close{
  position:absolute; top:0.75rem; right:0.9rem; background:none; border:none;
  color:rgba(255,255,255,0.5); font-size:1.6rem; line-height:1; cursor:pointer; padding:0.25rem;
  transition:color .2s;
}
.account-modal-close:hover{ color:#fff; }

/* ── BOUTIQUE — mise en page produit-centrée façon PSŌM ── */
.shop-psom{ max-width:900px; margin:0 auto; }
.shop-psom-hero{
  position:relative; text-align:center; padding:2rem 1rem 2.5rem;
  display:flex; flex-direction:column; align-items:center;
}
.shop-psom-glow{
  position:absolute; inset:-10% -10% auto -10%; height:70%;
  background:radial-gradient(ellipse 60% 60% at 50% 20%, rgba(91,200,232,0.14) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
.shop-psom-badge{
  position:relative; z-index:1; display:inline-flex; align-items:center; gap:0.5rem;
  background:rgba(201,168,76,0.12); border:1px solid rgba(201,168,76,0.35); color:var(--gold);
  padding:0.4rem 1rem; border-radius:20px; font-size:0.72rem; letter-spacing:0.1em;
  text-transform:uppercase; margin-bottom:1.75rem;
}
.shop-psom-img-wrap{ position:relative; z-index:1; margin-bottom:1.75rem; }
/* Packshot Harmony. clamp() evite une media query : plancher 300px sur
   mobile, plafond 560px sur grand ecran. Le conteneur .shop-psom fait
   900px, donc 560px occupe 62% de la largeur — le maximum avant que le
   visuel ne touche les bords et perde sa respiration. */
.shop-psom-img{
  max-width:clamp(300px, 56vw, 560px); width:100%; height:auto; object-fit:contain;
  filter:drop-shadow(0 36px 64px rgba(0,0,0,0.6));
}
.shop-psom-sub{
  position:relative; z-index:1; color:rgba(255,255,255,0.65); font-size:0.98rem; line-height:1.65;
  max-width:480px; margin:0.75rem auto 1.75rem;
}
.shop-psom-price{
  position:relative; z-index:1; display:flex; flex-direction:column; gap:0.2rem;
  margin-bottom:1.5rem;
}
.shop-psom-price-old{ color:var(--muted); text-decoration:line-through; font-size:0.85rem; }
.shop-psom-price-new{ color:var(--gold); font-weight:500; font-size:0.95rem; }
.shop-psom-cta{
  position:relative; z-index:1; background:var(--accent); color:#fff; border:none;
  padding:1rem 2.5rem; font-size:0.95rem; font-weight:500; letter-spacing:0.04em;
  border-radius:6px; cursor:pointer; font-family:'DM Sans',sans-serif;
  box-shadow:0 8px 24px rgba(29,158,117,0.35); transition:background .2s, transform .2s;
}
.shop-psom-cta:hover{ background:var(--light); transform:translateY(-1px); }
.shop-psom-hint{ position:relative; z-index:1; font-size:0.74rem; color:var(--muted); margin-top:0.9rem; }

.shop-icon-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin:2.5rem 0;
}
.shop-icon-card{
  background:var(--card); border:1px solid var(--border); border-radius:8px;
  padding:1.5rem 1.1rem; text-align:center; transition:border-color .2s, transform .2s;
}
.shop-icon-card:hover{ border-color:rgba(91,200,232,0.3); transform:translateY(-2px); }
.shop-icon-emoji{ font-size:1.6rem; margin-bottom:0.6rem; }
.shop-icon-card h3{ font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:600; margin-bottom:0.4rem; color:#fff; }
.shop-icon-card p{ font-size:0.8rem; line-height:1.55; color:rgba(255,255,255,0.6); }

.shop-psom-steps{
  border-top:1px solid var(--border); padding-top:2.5rem; text-align:center;
}
.shop-psom-steps-title{ font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:300; }

@media(max-width:768px){
  .shop-icon-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ── POPUP — Inscription à l'ouverture de la page ── */
.signup-modal-overlay{
  display:none; position:fixed; inset:0; z-index:3100; background:rgba(4,52,44,0.85);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  justify-content:center; align-items:center; padding:1.25rem;
}
.signup-modal-overlay.open{ display:flex; }
.signup-modal{
  position:relative; background:linear-gradient(160deg, #04342C 0%, #0A5C4A 130%);
  border:1px solid rgba(255,255,255,0.10); border-radius:14px; padding:2.25rem 2rem;
  max-width:440px; width:100%; text-align:center; box-shadow:0 30px 70px rgba(0,0,0,0.5);
}
.signup-modal-close{
  position:absolute; top:0.85rem; right:1rem; background:none; border:none;
  color:rgba(255,255,255,0.5); font-size:1.7rem; line-height:1; cursor:pointer; padding:0.25rem;
  transition:color .2s;
}
.signup-modal-close:hover{ color:#fff; }
.signup-modal-eyebrow{
  font-size:0.68rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--sky-pale);
  margin-bottom:0.75rem;
}
.signup-modal-title{
  font-family:'Cormorant Garamond',serif; font-size:1.65rem; font-weight:300; color:#fff;
  line-height:1.25; margin-bottom:0.75rem;
}
.signup-modal-title em{ font-style:italic; color:var(--sky-pale); }
.signup-modal-sub{ font-size:0.88rem; color:rgba(255,255,255,0.65); line-height:1.6; margin-bottom:1.5rem; }
.signup-modal-form{ display:flex; flex-direction:column; gap:0.75rem; }
.signup-modal-form input{
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); color:#fff;
  padding:0.85rem 1.1rem; font-size:0.9rem; font-family:'DM Sans',sans-serif; border-radius:6px; outline:none;
}
.signup-modal-form input::placeholder{ color:rgba(255,255,255,0.4); }
.signup-modal-form input:focus{ border-color:rgba(91,200,232,0.5); }
.signup-modal-form button{
  background:var(--accent); color:#fff; border:none; padding:0.9rem; font-size:0.9rem;
  font-weight:500; border-radius:6px; cursor:pointer; font-family:'DM Sans',sans-serif;
  letter-spacing:0.04em; transition:background .2s;
}
.signup-modal-form button:hover{ background:var(--light); }
.signup-modal-dismiss{
  display:block; margin:1rem auto 0; background:none; border:none; color:rgba(255,255,255,0.4);
  font-size:0.78rem; text-decoration:underline; cursor:pointer; font-family:'DM Sans',sans-serif;
}
.signup-modal-dismiss:hover{ color:rgba(255,255,255,0.7); }

/* ── BANNIÈRE COOKIES — bas à gauche ── */
.cookie-banner{
  display:none; position:fixed; left:1.25rem; bottom:1.25rem; z-index:3200;
  max-width:360px; width:calc(100% - 2.5rem);
  background:#04342C; border:1px solid rgba(255,255,255,0.12); border-radius:10px;
  padding:1.25rem 1.35rem; box-shadow:0 20px 50px rgba(0,0,0,0.45);
}
.cookie-banner.open{ display:block; }
.cookie-banner p{ font-size:0.82rem; line-height:1.55; color:rgba(255,255,255,0.75); margin-bottom:1rem; }
.cookie-banner a{ color:var(--sky-pale); text-decoration:underline; }
.cookie-banner-actions{ display:flex; gap:0.6rem; flex-wrap:wrap; }
.cookie-btn{
  flex:1; min-width:120px; border-radius:5px; padding:0.55rem 0.9rem; font-size:0.78rem;
  font-weight:500; cursor:pointer; font-family:'DM Sans',sans-serif; letter-spacing:0.02em;
  transition:all .2s;
}
.cookie-btn--accept{ background:var(--accent); color:#fff; border:none; }
.cookie-btn--accept:hover{ background:var(--light); }
.cookie-btn--reject{ background:transparent; color:rgba(255,255,255,0.65); border:1px solid rgba(255,255,255,0.2); }
.cookie-btn--reject:hover{ border-color:rgba(255,255,255,0.4); color:#fff; }

/* Volet détails cookies */
.cookie-details-toggle{
  background:none; border:none; padding:0; cursor:pointer;
  color:var(--sky-pale); text-decoration:underline; font-size:inherit;
  font-family:inherit; letter-spacing:inherit;
}
.cookie-details-toggle:hover{ color:var(--sky); }
.cookie-details{
  margin-bottom:1rem; max-height:46vh; overflow-y:auto;
  padding-right:0.4rem; border-top:1px solid rgba(255,255,255,0.1);
  padding-top:0.9rem;
}
.cookie-details::-webkit-scrollbar{ width:6px; }
.cookie-details::-webkit-scrollbar-thumb{ background:rgba(255,255,255,0.18); border-radius:3px; }
.cookie-cat{ margin-bottom:1.1rem; }
.cookie-cat h4{
  font-family:'DM Sans',sans-serif; font-size:0.82rem; font-weight:600;
  color:#fff; margin:0 0 0.35rem; display:flex; align-items:center; gap:0.5rem; flex-wrap:wrap;
}
.cookie-tag{
  font-size:0.62rem; font-weight:500; letter-spacing:0.03em;
  padding:0.12rem 0.5rem; border-radius:3px; text-transform:uppercase;
}
.cookie-tag--on{ background:rgba(29,158,117,0.22); color:#6DDFAD; border:1px solid rgba(29,158,117,0.4); }
.cookie-tag--opt{ background:rgba(91,200,232,0.14); color:var(--sky-pale); border:1px solid rgba(91,200,232,0.35); }
.cookie-cat-desc{ font-size:0.72rem !important; color:rgba(255,255,255,0.6) !important; margin:0 0 0.5rem !important; }
.cookie-table{ width:100%; border-collapse:collapse; font-size:0.7rem; }
.cookie-table th{
  text-align:left; font-weight:600; color:var(--sky-pale);
  padding:0.35rem 0.5rem 0.35rem 0; border-bottom:1px solid rgba(255,255,255,0.14);
  letter-spacing:0.02em;
}
.cookie-table td{
  padding:0.4rem 0.5rem 0.4rem 0; color:rgba(255,255,255,0.78);
  border-bottom:1px solid rgba(255,255,255,0.06); vertical-align:top; line-height:1.4;
}
.cookie-table td:first-child{ color:#fff; font-weight:500; white-space:nowrap; }
.cookie-legal{ font-size:0.68rem !important; color:rgba(255,255,255,0.5) !important; margin:0.5rem 0 0 !important; line-height:1.5 !important; }

@media(max-width:480px){
  .cookie-banner{ left:0.75rem; right:0.75rem; bottom:0.75rem; width:auto; max-width:none; }
}
                           /* Alignement et taille des icônes du menu */
.nav-links a i {
  font-size: 1.1rem;
  vertical-align: middle;
}

/* Ajustement du bouton CTA icône pour garder un cercle/carré harmonieux */
.nav-links a.nav-cta {
  padding: 0.5rem 0.85rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

                         /* ==========================================================================
   PAGE PANIER - POPUP SLIDE 1/3 DE PAGE (STYLE PREMIUM)
   ========================================================================== */
.full-cart-page {
  position: fixed;
  top: 0;
  right: -100vw; /* Caché par défaut */
  width: 33.33vw; /* Couvre exactement 1/3 de la page en cours */
  min-width: 420px; /* Sécurité pour conserver un confort de lecture minimal */
  height: 100vh;
  background-color: #064036; /* Légère déclinaison subtile de votre fond vert profond */
  border-left: 1px solid var(--border);
  z-index: 9999; /* Par-dessus tout le site */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Glissement fluide */
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

/* Classe d'activation */
.full-cart-page.open {
  right: 0;
}

/* En-tête de la Page Panier */
.cart-page-header {
  height: 80px;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(4, 52, 44, 0.98);
}
.cart-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}
.cart-page-close-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart-page-close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
}

/* Grille interne adaptée pour tenir sur 1/3 d'écran (Passage en une seule colonne empilée) */
.cart-page-container {
  flex: 1;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Section Articles */
.cart-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--white);
}
.cart-page-shipping-info {
  background: rgba(91, 200, 232, 0.06);
  border: 1px solid rgba(91, 200, 232, 0.2);
  padding: 0.8rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--sky-pale);
}
.cart-page-shipping-info i { margin-right: 6px; color: var(--sky); }
.cart-page-shipping-info strong { color: var(--white); }

/* Fiche Article */
.cart-page-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-page-item:first-child { border-top: 1px solid var(--border); }
.item-visual {
  width: 80px; height: 80px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.item-infos { flex: 1; }
.item-title-row {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.3rem;
}
.item-infos h3 { font-size: 0.95rem; font-weight: 400; color: var(--white); line-height: 1.3; }
.item-price-total { font-size: 1rem; font-weight: 500; color: var(--white); }
.item-subtitle { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }

.item-formula-badge .formula-type {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; padding: 0.25rem 0.5rem;
  background: rgba(29, 158, 117, 0.12); color: #6DDFAD;
  border-radius: 4px; border: 1px solid rgba(29, 158, 117, 0.25);
}

/* Actions */
.item-actions-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.page-qty-selector {
  display: flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; background: rgba(0,0,0,0.2);
}
.qty-control {
  background: none; border: none; color: var(--white); width: 28px; height: 28px; cursor: pointer; font-size: 0.9rem;
}
.qty-control:hover { color: var(--sky); }
.qty-number { width: 26px; text-align: center; font-size: 0.85rem; }
.item-remove-btn {
  background: none; border: none; color: #FF8A75; font-size: 0.8rem; cursor: pointer; opacity: 0.8; transition: opacity 0.2s;
}
.item-remove-btn:hover { opacity: 1; text-decoration: underline; }

/* Bloc Résumé */
.sticky-summary-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem; border-radius: 8px;
}
.sticky-summary-box h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; margin-bottom: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem;
}
.summary-details { display: flex; flex-direction: column; gap: 0.8rem; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.summary-line.tax-line { font-size: 0.75rem; color: var(--muted); margin-top: -0.3rem; }
.text-highlight { color: var(--gold); }
.summary-total-line {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.3rem;
  font-size: 1.1rem; color: var(--white);
}
.final-price { font-size: 1.3rem; font-weight: 500; color: var(--sky-pale); }

.page-checkout-btn {
  width: 100%; background: var(--accent); color: var(--white); border: none;
  padding: 0.9rem; border-radius: 4px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; cursor: pointer; margin-top: 1.5rem;
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
  transition: background 0.2s;
}
.page-checkout-btn:hover { background: var(--light); }

.cart-page-trust-badges { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.trust-badge { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.trust-badge i { color: var(--accent); font-size: 0.8rem; }

/* Responsive : Sur mobile et tablette, le panier prend tout l'écran */
@media (max-width: 768px) {
  .full-cart-page { width: 100vw; min-width: 100vw; }
  .cart-page-header { padding: 0 1rem; }
  .cart-page-container { padding: 1.5rem 1rem; }
}
/* Style des fenêtres popups MapLibre pour BioMira */
.maplibregl-popup-content {
  background: #04342C !important; /* Vert profond BioMira */
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6) !important;
}
.maplibregl-popup-anchor-top .maplibregl-popup-tip { border-bottom-color: #04342C !important; }
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip { border-top-color: #04342C !important; }
.maplibregl-popup-anchor-left .maplibregl-popup-tip { border-right-color: #04342C !important; }
.maplibregl-popup-anchor-right .maplibregl-popup-tip { border-left-color: #04342C !important; }
.maplibregl-popup-close-button {
  color: var(--muted) !important;
  font-size: 14px !important;
  padding: 4px 8px !important;
}
.maplibregl-popup-close-button:hover {
  background: transparent !important;
  color: #fff !important;
}/* ==========================================================================
   VIDEO SCROLL-SYNC — Harmony gélule
   À copier/coller à la fin de css/style.css (remplace l'ancien bloc)
   ========================================================================== */
.vs-scroll-wrapper{position:relative;width:100%;height:300vh}
.vs-sticky{position:sticky;top:0;left:0;width:100%;height:100vh;overflow:hidden;background:#000}
.vs-canvas{position:absolute;top:0;left:0;width:100%;height:100%;display:block}

.vs-loader{position:absolute;inset:0;background:#000;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;z-index:20;transition:opacity .5s ease}
.vs-loader--done{opacity:0;pointer-events:none}
.vs-loader-bar{width:220px;height:2px;background:rgba(255,255,255,.15);border-radius:2px;overflow:hidden}
.vs-loader-fill{height:100%;width:0%;background:var(--sky-pale);transition:width .2s ease}
.vs-loader-text{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted)}

.vs-overlay{position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);text-align:center;padding:0 1.5rem;opacity:0;pointer-events:none;z-index:10;display:flex;justify-content:center}
.vs-overlay-inner{display:inline-block;background:rgba(4,18,15,.55);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);border-radius:12px;padding:1.5rem 2.25rem;max-width:90vw}
.vs-overlay-eyebrow{font-size:.75rem;letter-spacing:.25em;text-transform:uppercase;color:var(--sky-pale);margin-bottom:.75rem;text-shadow:0 2px 12px rgba(0,0,0,.6)}
.vs-overlay h3{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(1.8rem,4.5vw,3rem);line-height:1.25;color:var(--white);text-shadow:0 2px 16px rgba(0,0,0,.6)}
@media(max-width:768px){
  .vs-overlay h3{font-size:clamp(1.4rem,7vw,2.1rem)}
  .vs-overlay-inner{padding:1.1rem 1.5rem}
}
/* ── POPUP — Mentions légales (fermable) ── */
.legal-modal-overlay{
  display:none; position:fixed; inset:0; z-index:3200; background:rgba(4,52,44,0.85);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  justify-content:center; align-items:center; padding:1.25rem;
}
.legal-modal-overlay.open{ display:flex; }
.legal-modal{
  position:relative; background:#04342C; border:1px solid rgba(255,255,255,0.10);
  border-radius:12px; padding:2.25rem; max-width:640px; width:100%;
  max-height:85vh; overflow-y:auto;
}
.legal-modal-close{
  position:absolute; top:0.9rem; right:1rem; background:none; border:none;
  color:rgba(255,255,255,0.5); font-size:1.7rem; line-height:1; cursor:pointer; padding:0.25rem;
  transition:color .2s;
}
.legal-modal-close:hover{ color:#fff; }
.legal-modal-title{
  font-family:'Cormorant Garamond',serif; font-weight:300; font-size:1.9rem;
  margin-bottom:1.5rem; color:#fff;
}
.legal-modal-title em{ font-style:italic; color:var(--sky-pale); }
.legal-modal-body p{
  color:rgba(255,255,255,0.75); font-size:0.92rem; line-height:1.75; margin-bottom:1.1rem;
}
.legal-modal-body a{ color:var(--sky-pale); }
@media(max-width:600px){
  .legal-modal{ padding:1.5rem; }
  .legal-modal-title{ font-size:1.5rem; }
}

/* ── Drapeau suisse (vignette Swiss Made) ── */
.vs-flag{display:block;margin:0 auto 1rem;opacity:0;border-radius:3px;box-shadow:0 4px 14px rgba(0,0,0,.35)}

/* ── Sélecteur de langue FR / EN ── */
.lang-switch{display:flex;align-items:center;gap:2px;border:1px solid var(--border);border-radius:5px;padding:2px;margin:0 0.25rem}
.lang-btn{background:none;border:none;color:var(--muted);font-size:0.7rem;font-weight:500;letter-spacing:0.04em;padding:0.35rem 0.6rem;border-radius:3px;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s}
.lang-btn.active{background:var(--accent);color:#fff}
.lang-btn:hover:not(.active){color:#fff;background:rgba(255,255,255,0.08)}
@media(max-width:768px){
  .lang-switch{margin:0.5rem auto 0.25rem}
}

/* ── Avis clients (état pré-lancement, inspiré Microbiotine) ── */
.reviews-wrap{max-width:640px;margin:3rem auto 2.5rem;text-align:center}
.reviews-summary-card{background:var(--card);border:1px solid var(--border);border-radius:10px;padding:2.5rem 2rem;margin-top:1.5rem}
.reviews-stars-big{font-size:2rem;letter-spacing:0.3rem;color:rgba(255,255,255,0.25);margin-bottom:0.5rem}
.reviews-count{font-size:0.85rem;color:var(--muted);margin-bottom:1.75rem}
.reviews-bars{display:flex;flex-direction:column;gap:0.5rem;max-width:300px;margin:0 auto 1.75rem}
.reviews-bar-row{display:flex;align-items:center;gap:0.6rem}
.reviews-bar-label{font-size:0.75rem;color:var(--muted);width:30px;flex-shrink:0;text-align:left}
.reviews-bar-track{flex:1;background:rgba(255,255,255,0.06);border-radius:3px;height:6px;overflow:hidden}
.reviews-bar-fill{height:100%;border-radius:3px;background:var(--accent)}
.reviews-bar-val{font-size:0.72rem;color:var(--muted);width:30px;text-align:right;flex-shrink:0}
.reviews-empty-text{font-size:0.9rem;line-height:1.7;color:rgba(255,255,255,0.65);max-width:440px;margin:0 auto 1.25rem}

/* Prêt pour les vraies cartes d'avis (à activer quand les premiers avis arriveront) */
.review-card{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:1.5rem;text-align:left}
.review-card-head{display:flex;align-items:center;gap:0.75rem;margin-bottom:0.75rem}
.review-avatar{width:38px;height:38px;border-radius:50%;background:rgba(91,200,232,0.15);color:var(--sky-pale);display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-weight:600;font-size:1.1rem;flex-shrink:0}
.review-card-name{font-size:0.9rem;font-weight:500;color:var(--white)}
.review-card-stars{font-size:0.78rem;color:var(--gold);letter-spacing:0.1rem}
.review-card-text{font-size:0.88rem;line-height:1.65;color:rgba(255,255,255,0.72)}

/* ── Menu déroulant nav (au survol) ── */
.nav-dropdown{position:relative}
.nav-dropdown-trigger{
  display:flex; align-items:center; gap:0.4rem; background:none; border:none;
  color:var(--muted); font-size:0.82rem; font-weight:400; letter-spacing:0.08em; text-transform:uppercase;
  padding:0.5rem 0.85rem; border-radius:4px; cursor:pointer; font-family:'DM Sans',sans-serif;
  transition:all 0.2s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger{ color:var(--white); background:rgba(255,255,255,0.07); }
.nav-dropdown-chevron{ font-size:0.65rem; transition:transform 0.2s; }
.nav-dropdown.open .nav-dropdown-chevron,
.nav-dropdown:hover .nav-dropdown-chevron{ transform:rotate(180deg); }

.nav-dropdown-panel{
  position:absolute; top:100%; left:0; margin-top:0.5rem; min-width:200px;
  background:rgba(4,52,44,0.98); border:1px solid var(--border); border-radius:8px;
  padding:0.5rem; box-shadow:0 15px 40px rgba(0,0,0,0.45);
  display:flex; flex-direction:column; gap:0.15rem;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index:1100;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel{
  opacity:1; visibility:visible; transform:translateY(0);
}
.nav-dropdown-panel a{
  color:var(--muted); text-decoration:none; font-size:0.82rem; font-weight:400;
  letter-spacing:0.05em; padding:0.65rem 0.85rem; border-radius:4px; transition:all 0.2s;
  white-space:nowrap;
}
.nav-dropdown-panel a:hover,
.nav-dropdown-panel a.active{ color:var(--white); background:rgba(255,255,255,0.07); }

@media(max-width:768px){
  .nav-dropdown-panel{
    position:static; margin-top:0.5rem; box-shadow:none; border:none;
    background:rgba(255,255,255,0.03); opacity:1; visibility:visible; transform:none;
    display:none;
  }
  .nav-dropdown.open .nav-dropdown-panel{ display:flex; }
  .nav-dropdown-trigger{ width:100%; justify-content:center; }
}

/* ── Flou sur l'image prototype (placeholder en attendant le vrai packshot) ── */
/* blur proportionnel a la largeur d'affichage (560px => 17px pour conserver
   ~3% de masquage). drop-shadow repris ici car cette regle ecrase
   entierement le filter de .shop-psom-img (meme specificite, plus tardive). */
.shop-psom-img--blurred{
  filter:blur(17px) drop-shadow(0 36px 64px rgba(0,0,0,0.6));
  transition:filter .35s ease;
}

/* ── Icônes réseaux sociaux dans la nav, juste après le logo ── */
.nav-social-inline{display:flex;align-items:center;gap:0.4rem;margin-left:0.5rem;margin-right:auto}
.nav-social-inline a{
  color:var(--sky-pale); background:rgba(255,255,255,0.05); border:1px solid var(--border);
  width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; text-decoration:none; transition:all 0.25s ease;
}
.nav-social-inline a:hover{
  color:var(--white); background:var(--accent); border-color:var(--accent);
  transform:translateY(-2px); box-shadow:0 4px 12px rgba(29,158,117,0.3);
}
@media(max-width:600px){
  .nav-social-inline{ display:none; }
}