/* ════════════════════════════════════════════════════
   MOUSTIQUAIRE FACILE — styles.css
   Modifiez les variables :root pour changer les couleurs
   et les polices du site entier en une seule fois.
════════════════════════════════════════════════════ */

/* ── VARIABLES GLOBALES ── */
:root {
  /* ── Couleurs principales — modifiez ici pour changer tout le site ── */
  --g:        #1C5D99;   /* Bleu confiance — couleur principale */
  --g2:       #1A4E85;   /* Bleu foncé — hover boutons */
  --g3:       #2E6DB4;   /* Bleu moyen — focus inputs */
  --sage:     #6BA3D0;   /* Bleu clair — textes doux, sous-titres */

  /* Fonds */
  --cream:    #F5F8FD;   /* Fond principal — blanc bleuté */
  --sand:     #E8EFF8;   /* Fond secondaire — sections alternées */
  --border:   #D0DCEC;   /* Couleur des bordures */

  /* Accent CTA */
  --amber:    #FF6B35;   /* Orange — boutons d'action, CTA */
  --amber2:   #FF8855;   /* Orange clair — hover */
  --amber-bg: #FFF2EC;   /* Fond orange — tips, notices */

  /* Textes */
  --txt:      #1A2A3E;   /* Texte principal */
  --txt2:     #3A5070;   /* Texte secondaire */
  --txt3:     #7A90AB;   /* Texte tertiaire, placeholders */

  /* Utilitaires */
  --white:    #FFFFFF;
  --red:      #C0392B;
  --red-bg:   #FDECEA;

  /* Typographie */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;

  /* Espacements et arrondis */
  --r:    14px;
  --r-sm:  8px;
  --sh:    0 4px 24px rgba(28, 93, 153, .10);
  --sh-lg: 0 16px 56px rgba(28, 93, 153, .18);
  --sh-card: 0 2px 8px rgba(28, 93, 153, .06), 0 8px 32px rgba(28, 93, 153, .08);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--txt);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.15; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
img { max-width: 100%; display: block; }

/* ── UTILITAIRES GLOBAUX ── */
.container { max-width: 1140px; margin: 0 auto; }
section { padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem); }
.stag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .85rem;
}
.stag::before { content: ''; width: 18px; height: 1.5px; background: var(--amber); }
.sh2 {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700; color: var(--g); margin-bottom: .9rem;
}
.slead { font-size: clamp(.95rem, 1.4vw, 1.08rem); color: var(--txt2); line-height: 1.8; max-width: 600px; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { display: flex; gap: 2px; background: var(--sand); border-radius: 100px; padding: 3px; border: 1px solid var(--border); }
.lang-btn { background: none; border: none; padding: .25rem .55rem; border-radius: 100px; font-size: .72rem; font-weight: 700; color: var(--txt3); cursor: pointer; transition: .2s; font-family: var(--font-body); }
.lang-btn:hover { color: var(--g); }
.lang-btn.active { background: var(--white); color: var(--g); box-shadow: 0 1px 4px rgba(0,0,0,.1); }

/* ── LOGO ── */
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 40px; height: 40px; background: var(--g); border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { line-height: 1; }
.logo-name { font-family: var(--font-title); font-size: 1.15rem; font-weight: 700; color: var(--g); }
.logo-sub  { font-size: .62rem; font-weight: 600; color: var(--sage); letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; display: block; }

/* ── NAV ── */
/* ── NAVIGATION ── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 66px; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 clamp(.75rem, 3vw, 2rem);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  gap: .5rem;
}

/* Logo — toujours visible desktop + mobile */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 40px; width: auto; display: block; }

/* Liens desktop */
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: .84rem; font-weight: 600; color: var(--txt); cursor: pointer; font-family: var(--font-body); letter-spacing: .01em; }
.nav-links a:hover { color: var(--g); }

/* Zone droite */
.nav-right { display: flex; align-items: center; gap: .5rem; }

/* Drapeaux desktop */
.lang-flags { display: flex; gap: 3px; align-items: center; }
.flag-btn { background: none; border: none; cursor: pointer; padding: 2px; border-radius: 3px; opacity: .7; transition: opacity .2s; }
.flag-btn:hover, .flag-btn.active { opacity: 1; }

/* Select langue : caché par défaut, visible sur mobile */
.lang-select { display: none; }

/* Bouton panier */
.nav-cart-btn {
  display: flex; align-items: center; gap: .5rem;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 100px; padding: .42rem .9rem .42rem .65rem;
  cursor: pointer; font-family: var(--font-body); color: var(--g); font-weight: 600; transition: all .2s;
}
.nav-cart-btn:hover { border-color: var(--g); background: #fff; }
.nav-cart-icon { position: relative; display: flex; }
.nav-cart-icon .cart-badge {
  position: absolute; top: -7px; right: -9px;
  background: var(--amber); color: #fff; font-size: .6rem; font-weight: 800;
  width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.cart-badge { display: none; }
.nav-cart-label { font-size: .8rem; }

/* CTA desktop */
.nav-cta-btn {
  display: flex; align-items: center; gap: .35rem;
  background: var(--g); color: #fff; border: none; border-radius: 100px;
  padding: .52rem 1.1rem; font-size: .82rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-body); transition: all .2s;
  box-shadow: 0 2px 10px rgba(28,93,153,.25);
}
.nav-cta-btn:hover { background: var(--g2); transform: translateY(-1px); }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.ham span { width: 22px; height: 2px; background: var(--g); display: block; border-radius: 2px; }

.nav-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

/* Bouton panier */
.nav-cart-btn {
  display: flex; align-items: center; gap: .5rem;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 100px; padding: .42rem .9rem .42rem .65rem;
  cursor: pointer; font-family: var(--font-body);
  color: var(--g); font-weight: 600; transition: all .2s;
}
.nav-cart-btn:hover { background: var(--white); border-color: var(--g); box-shadow: 0 2px 8px rgba(28,93,153,.12); }
.nav-cart-icon { position: relative; display: flex; align-items: center; }
.nav-cart-icon .cart-badge {
  position: absolute; top: -7px; right: -9px;
  background: var(--amber); color: #fff;
  font-size: .6rem; font-weight: 800;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.cart-badge { display: none; }
.nav-cart-label { font-size: .8rem; }

/* CTA nav */
.nav-cta-btn {
  display: flex; align-items: center; gap: .35rem;
  background: var(--g); color: #fff; border: none;
  border-radius: 100px; padding: .52rem 1.15rem;
  font-size: .82rem; font-weight: 700; cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(28,93,153,.28);
}
.nav-cta-btn:hover { background: var(--g2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(28,93,153,.38); }

/* Ancien .nav-cta (compat) */
.nav-cta { background: var(--g) !important; color: #fff !important; padding: .5rem 1.25rem; border-radius: 100px; font-weight: 600 !important; font-size: .82rem !important; }
.cart-btn { display:none; } /* masqué — remplacé par nav-cart-btn */

.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.ham span { width: 22px; height: 2px; background: var(--g); display: block; border-radius: 2px; transition: .2s; }
.mob {
  display: none; position: fixed; top: 66px; inset-inline: 0; z-index: 299;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 1.5rem clamp(1rem, 4vw, 3rem); flex-direction: column;
}
.mob.open { display: flex; }
.mob a { font-size: 1rem; font-weight: 500; color: var(--txt); padding: .9rem 0; border-bottom: 1px solid var(--border); cursor: pointer; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0); pointer-events: none; transition: background .3s;
}
.cart-overlay.open { background: rgba(15,43,30,.55); pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 401;
  width: min(420px, 100vw); background: var(--white);
  box-shadow: -12px 0 48px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-head {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head h2 { font-family: var(--font-title); font-size: 1.2rem; color: var(--g); }
.cart-head-r { display: flex; align-items: center; gap: .75rem; }
.cart-count { font-size: .8rem; color: var(--txt3); }
.cart-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: .15s;
}
.cart-close:hover { background: var(--border); }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--txt3); }
.cart-empty-icon { font-size: 3rem; margin-bottom: .75rem; }
.cart-empty p { font-size: .9rem; }
.cart-item {
  background: var(--cream); border-radius: 12px;
  padding: 1rem 1.1rem; border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto; gap: .5rem 1rem; align-items: start;
}
.ci-main { grid-column: 1; }
.ci-actions { grid-column: 2; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.ci-title { font-weight: 700; font-size: .9rem; color: var(--g); margin-bottom: 3px; }
.ci-details { font-size: .75rem; color: var(--txt2); line-height: 1.6; }
.ci-tag {
  display: inline-block; background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: .15rem .55rem;
  font-size: .67rem; font-weight: 600; color: var(--txt3); margin-right: 3px; margin-bottom: 2px;
}
.ci-price { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--g); }
.ci-price-note { font-size: .7rem; color: var(--txt3); margin-top: -2px; text-align: right; }
.ci-qty-row {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white);
}
.ci-qbtn {
  width: 28px; height: 28px; background: none; border: none;
  font-size: .95rem; font-weight: 700; color: var(--g); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ci-qbtn:hover { background: var(--sand); }
.ci-qval {
  min-width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--g);
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}
.ci-remove {
  background: none; border: none; color: var(--txt3); cursor: pointer;
  font-size: .78rem; padding: .2rem .4rem; border-radius: 4px; transition: .15s;
}
.ci-remove:hover { color: var(--red); background: var(--red-bg); }
.cart-foot {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
  background: var(--white); display: none; flex-direction: column; gap: .85rem;
}
.cart-foot.show { display: flex; }
.cart-tot-row { display: flex; justify-content: space-between; font-size: .85rem; }
.cart-tot-row dt { color: var(--txt3); }
.cart-tot-row dd { font-weight: 600; }
.cart-tot-row.big dt { font-family: var(--font-title); font-size: 1rem; font-weight: 700; color: var(--g); }
.cart-tot-row.big dd { font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; color: var(--g); }
.btn-checkout {
  background: var(--g); color: #fff; border: none; padding: 1rem;
  border-radius: 100px; font-size: .95rem; font-weight: 700; cursor: pointer;
  font-family: var(--font-body); transition: .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
}
.btn-checkout:hover { background: var(--g2); transform: translateY(-1px); box-shadow: var(--sh-lg); }
.cart-continue {
  text-align: center; font-size: .8rem; color: var(--txt3);
  cursor: pointer; background: none; border: none; font-family: var(--font-body);
}
.cart-continue:hover { color: var(--g); text-decoration: underline; }

/* ── HERO ── */
.hero {
  min-height: 100svh; background: var(--g);
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 66px; overflow: hidden;
}
.hero-l {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 2rem; width: fit-content;
  white-space: nowrap;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--amber2); flex-shrink: 0; }
.hero h1 { font-size: clamp(2.5rem, 4.5vw, 3.8rem); color: #fff; font-weight: 700; margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--amber2); }
.hero-p {
  font-size: clamp(.95rem, 1.4vw, 1.05rem); color: rgba(255,255,255,.65);
  line-height: 1.8; max-width: 460px; margin-bottom: 2.4rem; font-weight: 300;
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-a {
  background: var(--amber); color: var(--g); border: none;
  padding: .9rem 1.9rem; border-radius: 100px;
  font-size: .9rem; font-weight: 700; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(200,137,46,.4); cursor: pointer;
  font-family: var(--font-body);
}
.btn-a:hover { background: var(--amber2); transform: translateY(-2px); }
.btn-b {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.22);
  padding: .9rem 1.75rem; border-radius: 100px;
  font-size: .9rem; font-weight: 500; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font-body);
}
.btn-b:hover { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.07); }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-title); font-size: 1.7rem; font-weight: 700; color: var(--amber2); }
.hero-stat-lab { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .05em; text-transform: uppercase; margin-top: 2px; }
.hero-r { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* ── PHOTO PLACEHOLDERS ── */
.ph {
  background: var(--sand); border: 2px dashed var(--border); border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; color: var(--txt3); transition: .2s;
}
.ph:hover { border-color: var(--sage); color: var(--sage); }
.ph-ico  { font-size: 1.75rem; opacity: .5; }
.ph-lbl  { font-size: .76rem; font-weight: 600; text-align: center; line-height: 1.4; }
.ph-sub  { font-size: .66rem; opacity: .65; text-align: center; }
.ph-hero { border: none; border-radius: 0; background: rgba(255,255,255,.06); border: 2px dashed rgba(255,255,255,.15); color: rgba(255,255,255,.4); }
.ph-hero:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.6); }

/* ── TRUST BAR ── */
.trust { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1140px; margin: 0 auto; display: flex; padding: 0 clamp(1rem,4vw,3rem); }
.trust-item { flex: 1; display: flex; align-items: center; gap: 12px; padding: 1.3rem .75rem; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.t-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--g) 0%, var(--g3) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(28,93,153,.25);
}
.t-ico svg { display: block; }
.t-txt strong { display: block; font-size: .83rem; font-weight: 700; color: var(--g); }
.t-txt span   { font-size: .72rem; color: var(--txt3); margin-top: 1px; display: block; }
.trust-item { transition: transform .2s; }
.trust-item:hover { transform: translateY(-1px); }

/* ── GALLERY ── */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.gallery-main { grid-column: 1/3; grid-row: 1/3; }

/* ── CONFIGURATEUR ── */
.cfg-sec { background: var(--sand); }
.cfg-grid { display: grid; grid-template-columns: 1fr 400px; gap: 2rem; margin-top: 3rem; align-items: start; }
.cfg-panel { background: var(--white); border-radius: 20px; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--sh); }
.step-blk { padding: 1.75rem 2rem; border-bottom: 1px solid var(--sand); }
.step-blk:last-child { border-bottom: none; }
.step-hd { display: flex; align-items: center; gap: 11px; margin-bottom: 1.25rem; }
.sn {
  width: 27px; height: 27px; border-radius: 50%; background: var(--g); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: .95rem; font-weight: 700; flex-shrink: 0;
}
.step-hd h3 { font-size: .95rem; font-weight: 700; color: var(--g); font-family: var(--font-body); }
.step-hd .hint { font-size: .74rem; color: var(--txt3); margin-left: auto; }
.dims-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fld label {
  display: block; font-size: .75rem; font-weight: 700; color: var(--txt2);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem;
}
.fld input {
  width: 100%; padding: .8rem 1rem; border: 2px solid var(--border); border-radius: var(--r-sm);
  font-size: 1rem; font-family: var(--font-body); color: var(--txt); background: var(--cream);
  transition: .2s; -moz-appearance: textfield;
}
.fld input::-webkit-outer-spin-button, .fld input::-webkit-inner-spin-button { -webkit-appearance: none; }
.fld input:focus { outline: none; border-color: var(--g3); background: #fff; }
.dim-tip {
  background: var(--amber-bg); border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0; padding: .65rem 1rem;
  font-size: .78rem; color: #7A550A; margin-top: .75rem; line-height: 1.55;
}
.color-row { display: flex; gap: .65rem; flex-wrap: wrap; }
.co input { display: none; }
.sw {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  border: 3px solid transparent; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
  outline: 2px solid transparent; outline-offset: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  position: relative;
}
.sw::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2.5px solid transparent;
  transition: border-color .2s;
}
.co input:checked + .sw::after { border-color: var(--g); }
.co input:checked + .sw { transform: scale(1.1); }
.co:hover .sw { transform: scale(1.05); }
.co { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.co-name { font-size: .68rem; color: var(--txt3); font-weight: 500; white-space: nowrap; }
.toile-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.tl input { display: none; }
.tl-c { border: 2px solid var(--border); border-radius: var(--r-sm); padding: 1.1rem; cursor: pointer; transition: .2s; background: var(--cream); }
.tl input:checked + .tl-c { border-color: var(--g); background: rgba(28,77,56,.04); }
.tl-icon { font-size: 1.2rem; margin-bottom: .35rem; }
.tl-name { font-weight: 700; font-size: .88rem; color: var(--g); }
.tl-desc { font-size: .74rem; color: var(--txt2); margin-top: 3px; line-height: 1.45; }
.tl-price { font-size: .74rem; color: var(--amber); font-weight: 700; margin-top: 6px; }
.opt-r {
  border: 2px solid var(--border); border-radius: var(--r-sm); padding: .9rem 1.1rem;
  cursor: pointer; display: flex; align-items: center; gap: .85rem; transition: .2s; background: var(--cream);
}
.opt-r.on { border-color: var(--g); background: rgba(28,77,56,.04); }
.opt-info { flex: 1; }
.opt-name { font-weight: 700; font-size: .88rem; color: var(--g); }
.opt-desc { font-size: .74rem; color: var(--txt2); margin-top: 2px; }
.opt-price { font-size: .82rem; font-weight: 700; color: var(--amber); flex-shrink: 0; }
.sw-tog { width: 40px; height: 22px; border-radius: 100px; background: var(--border); position: relative; transition: .3s; flex-shrink: 0; }
.sw-tog::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: .3s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.opt-r.on .sw-tog { background: var(--g); }
.opt-r.on .sw-tog::after { transform: translateX(18px); }
.qty-row { display: flex; align-items: center; gap: 1rem; }
.qty-ctrl { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--r-sm); overflow: hidden; background: var(--cream); }
.qty-btn { width: 38px; height: 38px; background: none; border: none; font-size: 1.1rem; font-weight: 700; color: var(--g); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--sand); }
.qty-val { min-width: 44px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--g); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.qty-note { font-size: .78rem; color: var(--txt3); }

/* ── SIDEBAR CONFIGURATEUR ── */
.sidebar { position: sticky; top: 82px; display: flex; flex-direction: column; gap: 1rem; }
.viz-box { background: var(--g); border-radius: 20px; padding: 1.5rem 1.25rem 1.25rem; }
.viz-label { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .85rem; text-align: center; font-weight: 600; }
.viz-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; justify-content: center; }
.vtag { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .65rem; font-weight: 600; letter-spacing: .06em; padding: .25rem .6rem; border-radius: 100px; transition: .2s; }
.vtag.on { background: rgba(200,137,46,.22); border-color: rgba(200,137,46,.45); color: var(--amber2); }
.recap { background: var(--white); border-radius: 20px; border: 1px solid var(--border); padding: 1.75rem; box-shadow: var(--sh); }
.recap-title { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--g); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.recap dl { display: flex; flex-direction: column; gap: .6rem; }
.recap .rl { display: flex; justify-content: space-between; font-size: .85rem; gap: .5rem; }
.recap .rl dt { color: var(--txt3); }
.recap .rl dd { font-weight: 600; color: var(--txt); text-align: right; }
.recap-sep { border: none; border-top: 1px solid var(--border); margin: .9rem 0; }
.recap-total { display: flex; justify-content: space-between; align-items: flex-end; }
.recap-price { font-family: var(--font-title); font-size: 2rem; font-weight: 700; color: var(--g); line-height: 1; }
.recap-note { font-size: .68rem; color: var(--txt3); margin-top: 2px; text-align: right; }
.recap-delivery { display: flex; align-items: center; gap: 7px; background: rgba(28,77,56,.06); border-radius: 8px; padding: .6rem .9rem; margin: .85rem 0; font-size: .78rem; color: var(--g2); font-weight: 600; }
.btn-add-cart {
  width: 100%; margin-top: .85rem; background: var(--amber); color: var(--g); border: none;
  padding: 1.05rem; border-radius: 100px; font-size: .95rem; font-weight: 800;
  font-family: var(--font-body); transition: .25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(200,137,46,.35);
}
.btn-add-cart:hover:not(:disabled) { background: var(--amber2); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(200,137,46,.45); }
.btn-add-cart:disabled { background: var(--border); color: var(--txt3); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-view-cart {
  width: 100%; margin-top: .5rem; background: transparent; color: var(--g);
  border: 2px solid var(--g); padding: .75rem; border-radius: 100px;
  font-size: .875rem; font-weight: 700; font-family: var(--font-body); transition: .2s; cursor: pointer;
}
.btn-view-cart:hover { background: var(--g); color: #fff; }
.guars { display: flex; flex-direction: column; gap: .45rem; margin-top: 1.1rem; }
.guar { display: flex; align-items: center; gap: 8px; font-size: .74rem; color: var(--txt3); }
.guar::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

/* ── INTRO / SPECS ── */
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-body p { font-size: .95rem; color: var(--txt2); line-height: 1.85; margin-bottom: .85rem; }
.spec-card { background: var(--cream); border-radius: 18px; padding: 2rem; border: 1px solid var(--border); }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row dt { color: var(--txt3); }
.spec-row dd { font-weight: 700; color: var(--g); }

/* ── GUIDE ── */
.guide { background: var(--cream); }
.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 3rem; }
.guide-card { border: 1px solid var(--border); border-radius: 18px; padding: 2rem 1.75rem; background: var(--white); transition: .25s; position: relative; overflow: hidden; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.guide-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--g), var(--g3)); }
.guide-n { font-family: var(--font-title); font-size: 3.5rem; font-weight: 700; color: var(--sand); line-height: 1; margin-bottom: .75rem; display: block; }
.guide-card h3 { font-family: var(--font-title); font-size: 1.05rem; color: var(--g); margin-bottom: .5rem; }
.guide-card p { font-size: .87rem; color: var(--txt2); line-height: 1.75; }

/* ── HOW IT WORKS ── */
.hiw { background: var(--g); padding: clamp(4rem,8vw,7rem) clamp(1rem,4vw,3rem); }
.hiw .sh2 { color: #fff; }
.hiw .slead { color: rgba(255,255,255,.6); }
.hiw .stag { color: rgba(200,137,46,.85); }
.hiw .stag::before { background: rgba(200,137,46,.6); }
.hiw-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 27px; left: calc(12.5% + 27px); right: calc(12.5% + 27px); height: 1px; background: rgba(255,255,255,.12); }
.hiw-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.hiw-n { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; }
.hiw-step h3 { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.hiw-step p  { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── INSTALL ── */
.install { background: var(--white); }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.ist { display: flex; gap: 1.4rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.ist:last-child { border-bottom: none; }
.ist-n { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); border: 2px solid var(--border); color: var(--g); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 1.05rem; font-weight: 700; flex-shrink: 0; }
.ist h4 { font-family: var(--font-title); font-size: .92rem; color: var(--g); margin-bottom: .3rem; }
.ist p  { font-size: .84rem; color: var(--txt2); line-height: 1.65; }
.install-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── COMPARE ── */
.compare { background: var(--sand); }
.comp-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 2.75rem; border-radius: 16px; overflow: hidden; box-shadow: var(--sh); font-size: .875rem; }
.comp-table th { padding: .85rem 1.1rem; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; text-align: left; }
.comp-table th:first-child { background: var(--white); color: var(--txt3); }
.comp-table th.hi { background: var(--g); color: #fff; }
.comp-table th:not(:first-child):not(.hi) { background: var(--sand); color: var(--txt2); }
.comp-table td { padding: .85rem 1.1rem; border-top: 1px solid var(--border); }
.comp-table tr:hover td { background: rgba(28,77,56,.025); }
.comp-table td:first-child { background: var(--white); color: var(--txt2); font-weight: 500; }
.comp-table td.hi { background: rgba(28,77,56,.04); font-weight: 700; color: var(--g); }
.ok { color: var(--g2); font-weight: 700; }
.no { color: var(--txt3); }

/* ── AVIS ── */
.avis { background: var(--cream); }
.avis-hdr { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }
.avis-score-big { font-family: var(--font-title); font-size: 4rem; font-weight: 700; color: var(--g); line-height: 1; }
.avis-stars { color: var(--amber); font-size: 1.1rem; }
.avis-meta  { font-size: .75rem; color: var(--txt3); margin-top: 4px; }
.avis-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.avis-card  { background: var(--white); border-radius: 16px; padding: 1.6rem; border: 1px solid var(--border); display: flex; flex-direction: column; gap: .9rem; }
.avis-stars-sm { color: var(--amber); font-size: .85rem; }
.avis-tag-sm { display: inline-block; background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: .2rem .65rem; font-size: .68rem; color: var(--txt3); font-weight: 500; }
.avis-txt { font-size: .875rem; color: var(--txt); line-height: 1.75; flex: 1; font-style: italic; }
.avis-auth { display: flex; align-items: center; gap: 9px; }
.avis-av { width: 36px; height: 36px; border-radius: 50%; background: var(--g); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.avis-av strong { display: block; font-size: .83rem; color: var(--g); font-weight: 700; }
.avis-av span   { font-size: .72rem; color: var(--txt3); }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 0; cursor: pointer; font-size: .92rem; font-weight: 600; color: var(--g); gap: 1rem; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; color: var(--g); transition: .3s; }
.faq-item.open .faq-icon { background: var(--g); border-color: var(--g); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s, padding .3s; font-size: .875rem; color: var(--txt2); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }
.faq-cta { background: var(--cream); border-radius: 18px; padding: 2.5rem; border: 1px solid var(--border); text-align: center; }
.faq-cta h3 { font-family: var(--font-title); font-size: 1.4rem; color: var(--g); margin: 1rem 0 .75rem; }
.faq-cta p  { font-size: .875rem; color: var(--txt2); line-height: 1.7; margin-bottom: 1.5rem; }
.btn-outline {
  background: transparent; color: var(--g); border: 2px solid var(--g);
  padding: .8rem 1.75rem; border-radius: 100px; font-size: .875rem; font-weight: 700;
  font-family: var(--font-body); transition: .2s; display: inline-block; cursor: pointer;
}
.btn-outline:hover { background: var(--g); color: #fff; }

/* ── SEO SECTION ── */
.seo { background: var(--sand); border-top: 1px solid var(--border); }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.seo-blk h3 { font-family: var(--font-title); font-size: 1.25rem; color: var(--g); margin-bottom: .75rem; }
.seo-blk p  { font-size: .875rem; color: var(--txt2); line-height: 1.85; margin-bottom: .75rem; }

/* ── CHECKOUT MODAL ── */
.ovl { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(15,43,30,.75); backdrop-filter: blur(10px); align-items: center; justify-content: center; padding: 1rem; }
.ovl.open { display: flex; }
.modal { background: #fff; border-radius: 22px; width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.modal-hdr { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: #fff; z-index: 10; border-radius: 22px 22px 0 0; }
.modal-hdr h2 { font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; color: var(--g); }
.modal-x { width: 32px; height: 32px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--txt); transition: .15s; }
.modal-x:hover { background: var(--border); }
.modal-prog { display: flex; padding: .85rem 2rem; border-bottom: 1px solid var(--border); }
.mp { flex: 1; font-size: .74rem; font-weight: 600; color: var(--txt3); text-align: center; padding: .4rem; border-radius: 6px; transition: .2s; }
.mp.active { background: rgba(28,77,56,.07); color: var(--g); }
.mp.done   { color: var(--sage); }
.modal-body { padding: 2rem; }
.modal-foot { padding: 1.25rem 2rem; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: .85rem; position: sticky; bottom: 0; background: #fff; border-radius: 0 0 22px 22px; }
.btn-prev { background: transparent; border: 2px solid var(--border); color: var(--txt); padding: .75rem 1.4rem; border-radius: 100px; font-family: var(--font-body); font-weight: 600; font-size: .875rem; transition: .2s; cursor: pointer; }
.btn-prev:hover { border-color: var(--g); }
.btn-next { background: var(--g); color: #fff; border: none; padding: .75rem 1.85rem; border-radius: 100px; font-family: var(--font-body); font-weight: 700; font-size: .875rem; transition: .2s; cursor: pointer; }
.btn-next:hover { background: var(--g2); }
.cs-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--txt3); margin-bottom: .85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: .85rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: .3rem; }
.form-field label { font-size: .74rem; font-weight: 700; color: var(--txt2); text-transform: uppercase; letter-spacing: .06em; display: flex; align-items: center; gap: 4px; }
.form-field label .req { color: var(--amber); font-size: .9em; }
.form-field input { padding: .75rem .95rem; border: 2px solid var(--border); border-radius: var(--r-sm); font-size: .9rem; font-family: var(--font-body); color: var(--txt); background: var(--cream); transition: .2s; }
.form-field input:focus { outline: none; border-color: var(--g3); background: #fff; }
.checkout-cart-items { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.cco-item { background: var(--cream); border-radius: 10px; padding: .9rem 1.1rem; border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: .5rem; font-size: .85rem; }
.cco-item-l { color: var(--txt2); }
.cco-item-l strong { color: var(--g); display: block; font-size: .875rem; }
.cco-item-r { font-weight: 700; color: var(--g); white-space: nowrap; }
.checkout-total { display: flex; flex-direction: column; gap: .4rem; padding: .9rem 1.1rem; background: rgba(28,77,56,.05); border-radius: 10px; margin-bottom: 1.5rem; }
.checkout-total-row { display: flex; justify-content: space-between; font-size: .85rem; }
.checkout-total-row dt { color: var(--txt3); }
.checkout-total-row dd { font-weight: 600; }
.checkout-total-row.big { margin-top: .25rem; padding-top: .4rem; border-top: 1px solid var(--border); }
.checkout-total-row.big dt { font-weight: 700; font-size: .95rem; color: var(--g); }
.checkout-total-row.big dd { font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; color: var(--g); }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: 1.25rem; }
.pay-opt input { display: none; }
.pay-card { border: 2px solid var(--border); border-radius: var(--r); padding: 1.2rem; cursor: pointer; text-align: center; transition: .2s; background: var(--cream); }
.pay-opt input:checked + .pay-card { border-color: var(--g); background: rgba(28,77,56,.04); }
.pay-ico  { font-size: 1.7rem; margin-bottom: .45rem; }
.pay-name { font-weight: 700; font-size: .875rem; color: var(--g); }
.pay-desc { font-size: .72rem; color: var(--txt3); margin-top: 2px; }
.vir-box { background: var(--amber-bg); border: 1px solid rgba(200,137,46,.25); border-radius: 10px; padding: 1.1rem; display: none; }
.vir-box.show { display: block; }
.vir-box p { font-size: .82rem; color: #7A550A; line-height: 1.8; }
.stripe-box { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem; display: none; }
.stripe-box.show { display: block; }
.sf { display: flex; flex-direction: column; gap: .65rem; }
.sf-fld { padding: .7rem .9rem; border: 2px solid var(--border); border-radius: 8px; font-size: .85rem; color: var(--txt3); background: #fff; }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.sf-sec { font-size: .7rem; color: var(--sage); margin-top: .65rem; display: flex; align-items: center; gap: 6px; }

/* ── PAGE CONFIRMATION ── */
.confirm-page { background: var(--cream); min-height: 100vh; padding-top: 66px; }
.confirm-hero { background: var(--g); padding: 3rem 2rem; text-align: center; }
.confirm-hero h1 { font-family: var(--font-title); color: #fff; font-size: 2.2rem; margin-bottom: .5rem; }
.confirm-hero p  { color: rgba(255,255,255,.65); font-size: .95rem; }
.confirm-body { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.confirm-number { background: var(--white); border-radius: 16px; padding: 1.5rem 2rem; border: 1px solid var(--border); text-align: center; margin-bottom: 2rem; }
.confirm-number .ord-num { font-family: var(--font-title); font-size: 2rem; color: var(--g); font-weight: 700; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.confirm-card { background: var(--white); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); }
.confirm-card h4 { font-family: var(--font-title); font-size: 1rem; color: var(--g); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.confirm-card p  { font-size: .875rem; color: var(--txt2); line-height: 1.8; }
.confirm-items { background: var(--white); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); margin-bottom: 2rem; }
.confirm-items h4 { font-family: var(--font-title); font-size: 1rem; color: var(--g); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.conf-item { display: flex; justify-content: space-between; align-items: center; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.conf-item:last-child { border-bottom: none; }
.conf-item-desc { color: var(--txt2); }
.conf-item-desc strong { color: var(--g); display: block; }
.conf-item-price { font-weight: 700; color: var(--g); }
.email-notice { background: rgba(28,77,56,.06); border: 1px solid rgba(28,77,56,.15); border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.email-notice-ico { font-size: 1.5rem; flex-shrink: 0; }
.email-notice p { font-size: .875rem; color: var(--g2); line-height: 1.65; }
.confirm-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-print { background: var(--g); color: #fff; border: none; padding: .85rem 1.75rem; border-radius: 100px; font-size: .875rem; font-weight: 700; font-family: var(--font-body); transition: .2s; cursor: pointer; display: flex; align-items: center; gap: 7px; }
.btn-print:hover { background: var(--g2); }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.tl-step { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.tl-step:last-child { border-bottom: none; }
.tl-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--g); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.tl-text strong { display: block; font-size: .875rem; font-weight: 700; color: var(--g); margin-bottom: 2px; }
.tl-text span   { font-size: .8rem; color: var(--txt2); }

/* ── HISTORIQUE CLIENT ── */
.history-page { background: var(--cream); min-height: 100vh; padding-top: 66px; }
.history-body { max-width: 760px; margin: 0 auto; padding: 3rem 2rem; }
.history-lookup { background: var(--white); border-radius: 20px; padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--sh); margin-bottom: 2rem; text-align: center; }
.history-lookup h2 { font-family: var(--font-title); font-size: 1.6rem; color: var(--g); margin-bottom: .5rem; }
.history-lookup p { font-size: .875rem; color: var(--txt2); margin-bottom: 1.75rem; line-height: 1.65; }
.history-search { display: flex; gap: .75rem; max-width: 440px; margin: 0 auto; }
.history-search input { flex: 1; padding: .8rem 1rem; border: 2px solid var(--border); border-radius: var(--r-sm); font-size: .9rem; font-family: var(--font-body); color: var(--txt); background: var(--cream); transition: .2s; }
.history-search input:focus { outline: none; border-color: var(--g3); background: #fff; }
.history-search button { background: var(--g); color: #fff; border: none; padding: .8rem 1.4rem; border-radius: var(--r-sm); font-size: .875rem; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: .2s; white-space: nowrap; }
.history-search button:hover { background: var(--g2); }
.history-notice { background: var(--amber-bg); border: 1px solid rgba(200,137,46,.3); border-radius: 10px; padding: 1rem 1.25rem; font-size: .8rem; color: #7A550A; margin-top: 1.25rem; line-height: 1.6; }
.history-order { background: var(--white); border-radius: 16px; border: 1px solid var(--border); padding: 1.5rem; margin-bottom: 1rem; }
.history-order-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; flex-wrap: wrap; }
.history-order-num { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--g); }
.history-order-date { font-size: .78rem; color: var(--txt3); margin-top: 2px; }
.history-status { display: inline-flex; align-items: center; gap: 5px; padding: .3rem .8rem; border-radius: 100px; font-size: .75rem; font-weight: 700; }
.hs-attente     { background: var(--amber-bg); color: #7A550A; }
.hs-confirme    { background: #EAF2FB; color: #2471A3; }
.hs-fabrication { background: #FEF9E7; color: #D68910; }
.hs-expedie     { background: #E8F5EE; color: var(--g2); }
.hs-livre       { background: #E8F5EE; color: var(--g); }
.history-items { display: flex; flex-direction: column; gap: .5rem; }
.history-item { display: flex; justify-content: space-between; font-size: .85rem; color: var(--txt2); }
.history-item strong { color: var(--g); }
.history-total { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--border); font-weight: 700; color: var(--g); }
.history-empty { text-align: center; color: var(--txt3); padding: 2rem; }

/* ── PAGES ANNEXES ── */
.page-hdr { background: linear-gradient(145deg, var(--g), var(--g2)); padding: clamp(6rem,10vw,9rem) clamp(1rem,4vw,3rem) clamp(3rem,5vw,5rem); text-align: center; }
.page-hdr h1 { font-family: var(--font-title); color: #fff; font-size: clamp(2rem,5vw,3.2rem); margin-bottom: .65rem; }
.page-hdr p  { color: rgba(255,255,255,.6); font-size: .95rem; }
.contact-wrap { max-width: 900px; margin: 0 auto; padding: clamp(3rem,5vw,5rem) clamp(1rem,4vw,3rem); display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-card { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: var(--sh); border: 1px solid var(--border); }
.contact-card h2 { font-family: var(--font-title); font-size: 1.5rem; color: var(--g); margin-bottom: .5rem; }
.contact-card > p { font-size: .875rem; color: var(--txt2); margin-bottom: 2rem; line-height: 1.65; }
.form-grp { display: flex; flex-direction: column; gap: 1rem; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-fld { display: flex; flex-direction: column; gap: .35rem; }
.f-fld label { font-size: .75rem; font-weight: 700; color: var(--txt2); text-transform: uppercase; letter-spacing: .07em; }
.f-fld input, .f-fld select, .f-fld textarea { padding: .8rem 1rem; border: 2px solid var(--border); border-radius: var(--r-sm); font-size: .9rem; font-family: var(--font-body); color: var(--txt); background: var(--cream); transition: .2s; resize: vertical; }
.f-fld input:focus, .f-fld select:focus, .f-fld textarea:focus { outline: none; border-color: var(--g3); background: #fff; }
.btn-send { width: 100%; background: var(--g); color: #fff; border: none; padding: 1rem; border-radius: 100px; font-size: .9rem; font-weight: 700; font-family: var(--font-body); transition: .2s; cursor: pointer; }
.btn-send:hover { background: var(--g2); transform: translateY(-1px); }
.ci-info { display: flex; flex-direction: column; gap: 1.25rem; }
.ci-block { background: var(--cream); border-radius: 14px; padding: 1.5rem; border: 1px solid var(--border); }
.ci-block h4 { font-family: var(--font-title); font-size: 1rem; color: var(--g); margin-bottom: .75rem; }
.ci-line { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--txt2); margin-bottom: .6rem; }
.ci-line:last-child { margin-bottom: 0; }
.ci-ico { width: 30px; height: 30px; border-radius: 8px; background: var(--g); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }
.ci-line strong { font-weight: 700; color: var(--g); }
.annx-body { max-width: 760px; margin: 0 auto; padding: clamp(3rem,5vw,5rem) clamp(1rem,4vw,3rem); }
.annx-body h2 { font-family: var(--font-title); color: var(--g); font-size: 1.4rem; margin: 2.5rem 0 .85rem; }
.annx-body h2:first-child { margin-top: 0; }
.annx-body p  { font-size: .9rem; color: var(--txt2); line-height: 1.85; margin-bottom: .75rem; }
.annx-body ul { margin: .5rem 0 1rem 1.5rem; color: var(--txt2); font-size: .9rem; line-height: 2; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--g2); font-weight: 700; font-size: .875rem; margin-top: 2rem; text-decoration: none; cursor: pointer; }

/* ── FOOTER ── */
footer { background: #0D2240; color: rgba(255,255,255,.5); }
.ft-top { max-width: 1140px; margin: 0 auto; padding: 4rem clamp(1rem,4vw,3rem) 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.ft-brand p { font-size: .82rem; line-height: 1.75; max-width: 250px; margin-top: .85rem; }
.ft-logo { display: flex; align-items: center; gap: 11px; }
.ft-logo .logo-name { color: rgba(255,255,255,.9); }
.ft-logo .logo-sub  { color: rgba(255,255,255,.3); }
.ft-col h4 { color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.ft-col a  { display: block; font-size: .82rem; color: rgba(255,255,255,.42); margin-bottom: .55rem; transition: color .2s; cursor: pointer; }
.ft-col a:hover { color: rgba(255,255,255,.88); }
.ft-btm { max-width: 1140px; margin: 0 auto; padding: 1.5rem clamp(1rem,4vw,3rem); border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .74rem; }
.ft-btm a { color: rgba(255,255,255,.3); transition: .2s; cursor: pointer; }
.ft-btm a:hover { color: rgba(255,255,255,.7); }
.ft-seo { max-width: 1140px; margin: 0 auto; padding: 0 clamp(1rem,4vw,3rem) 2rem; font-size: .7rem; color: rgba(255,255,255,.18); line-height: 1.7; }

/* ── PAGES ROUTING ── */
.page { display: none; }
.page.active { display: block; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-l > * { opacity: 0; animation: fadeUp .7s ease forwards; }
.hero-badge  { animation-delay: .1s; }
.hero h1     { animation-delay: .2s; }
.hero-p      { animation-delay: .3s; }
.hero-actions{ animation-delay: .4s; }
.hero-stats  { animation-delay: .5s; }

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {
  .cfg-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .viz-box {
    display: block;
    flex: 0 0 auto;
    width: 240px;
    min-width: 200px;
    padding: 1rem .85rem .85rem;
    border-radius: 16px;
  }
  .viz-box svg { max-height: 280px; }
  .recap { flex: 1; min-width: 260px; }
}
@media(max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-r { display: none; }
  .nav-links { display: none; }
  /* Mobile nav */
  .nav-links    { display: none; }
  .nav-cta-desktop { display: none !important; }
  .nav-cart-label  { display: none; }
  .ham             { display: flex; }
  .lang-flags      { display: none !important; }
  .lang-select     { display: inline-block !important; font-size: .8rem; font-family: var(--font-body); border: 1.5px solid var(--border); border-radius: 6px; padding: .25rem .4rem; background: var(--cream); color: var(--g); cursor: pointer; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .intro-grid, .install-grid, .faq-layout, .seo-grid, .contact-wrap, .confirm-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .hiw-steps::before { display: none; }
  .avis-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1/-1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-main { grid-column: 1/-1; grid-row: auto; }
}
@media(max-width: 600px) {
  .form-row, .dims-row, .toile-row, .pay-grid, .form-row2, .sf-row { grid-template-columns: 1fr; }
  .guide-grid, .hiw-steps, .install-photos { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-btm { flex-direction: column; text-align: center; }
  .confirm-actions { flex-direction: column; }
  .history-search { flex-direction: column; }
}
@media print {
  nav, footer, .cart-overlay, .ovl, .confirm-actions { display: none !important; }
  .confirm-page { padding-top: 0 !important; }
}

/* ── SÉLECTEUR DE LANGUE ── */
.lang-sw { display: flex; align-items: center; gap: 4px; }
.lang-flags { display: flex; gap: 3px; align-items: center; }
.lang-btn {
  background: transparent; border: 2px solid transparent;
  padding: .2rem .25rem; border-radius: 5px;
  cursor: pointer; line-height: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s, border-color .15s;
}
.lang-btn svg { display: block; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.lang-btn:hover { transform: scale(1.12); border-color: var(--border); }
.lang-btn.active { border-color: var(--g); transform: scale(1.08); }
/* Mobile dropdown */
.lang-select {
  display: none;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: .3rem .5rem;
  font-size: .78rem; font-weight: 600; color: var(--g);
  cursor: pointer; font-family: var(--font-body);
  appearance: none; -webkit-appearance: none;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231C5D99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .4rem center;
}
/* ── LOGO IMAGE ── */
.logo-img { height: 48px; width: auto; display: block; }
.ft-logo-img { height: 28px; width: auto; opacity: .7; filter: brightness(3); }
/* ── BILLING ADDRESS TOGGLE ── */
.billing-toggle {
  display: flex; align-items: center; gap: 8px; margin: .85rem 0 0;
  font-size: .85rem; color: var(--txt2); cursor: pointer;
}
.billing-toggle input[type=checkbox] { accent-color: var(--g); width: 16px; height: 16px; }
.billing-section { display: none; margin-top: .85rem; }
.billing-section.show { display: block; }
.billing-sep { border: none; border-top: 1px dashed var(--border); margin: .85rem 0; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #0F1F18; color: rgba(255,255,255,.85);
  padding: 1rem 2rem; display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(0); transition: transform .4s;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { font-size: .82rem; line-height: 1.6; margin: 0; flex: 1; min-width: 250px; }
.cookie-banner a { color: var(--amber2); text-decoration: underline; cursor: pointer; }
.cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--amber); color: #fff; border: none;
  padding: .55rem 1.25rem; border-radius: 100px;
  font-size: .82rem; font-weight: 700; cursor: pointer;
  font-family: var(--font-body); transition: .2s;
}
.btn-cookie-accept:hover { background: var(--amber2); }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2);
  padding: .55rem 1.25rem; border-radius: 100px;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); transition: .2s;
}
.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* ── STRIPE FORM ── */
#stripe-card-element {
  padding: .75rem .95rem; border: 2px solid var(--border);
  border-radius: var(--r-sm); background: #fff; transition: .2s;
}
#stripe-card-element.StripeElement--focus { border-color: var(--g3); }
#stripe-card-element.StripeElement--invalid { border-color: var(--red); }
.stripe-error { color: var(--red); font-size: .8rem; margin-top: .5rem; display: none; }
.stripe-error.show { display: block; }

/* ── FLAGS LANGUES (SVG inline) ── */
.flag-btn {
  background: transparent !important;
  border: 2px solid transparent !important;
  padding: .2rem .25rem !important;
  border-radius: 5px !important;
  font-size: inherit !important;
  line-height: 0 !important;
  cursor: pointer;
  transition: transform .15s, border-color .15s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.flag-btn svg { display: block; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.flag-btn:hover { transform: scale(1.12); border-color: var(--border) !important; }
.flag-btn.active { border-color: var(--g) !important; transform: scale(1.08); box-shadow: 0 0 0 2px rgba(28,93,153,.2); }

/* ── DIMENSION INPUT VALIDATION ── */
#iL:focus, #iH:focus { outline: none; }
#iL.dim-error, #iH.dim-error { border-color: var(--red) !important; background: var(--red-bg) !important; }
.dim-error-msg { color: var(--red); font-size: .75rem; margin-top: .3rem; display: none; }
.dim-error-msg.show { display: block; }

/* ── GUIDE GRID RESPONSIVE ── */
@media(max-width:700px) {
  [style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: repeat(3,1fr) !important; }
  [style*="grid-template-columns:1fr 1fr;gap:4rem"] { grid-template-columns:1fr !important; gap:2rem !important; }
}

@media(max-width: 640px) {
  .sidebar { flex-direction: column; }
  .viz-box { width: 100%; }
  .viz-box svg { max-height: 220px; width: 100%; }
  .viz-tags { flex-wrap: wrap; gap: .3rem; }
}

/* ── TOPBAR MODULE ── */
@keyframes topbar-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
#siteTopbar { transition: all .3s; }
/* Topbar centrage et mobile */
#siteTopbar { box-sizing:border-box; width:100%; }




/* ════════════════════════════════════════════
   UPGRADE QUALITÉ & CONFIANCE — MF PREMIUM
   ════════════════════════════════════════════ */

/* ── Typographie globale ── */
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 {
  font-family: var(--font-title);
  letter-spacing: -.02em;
}

/* ── Hero ── */
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: -.025em !important;
  line-height: 1.15 !important;
}
.hero h1 em {
  font-style: italic !important;
  color: #FF8855 !important;
}
.hero-p {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  opacity: .88;
}

/* ── Stats hero ── */
.hero-stats { gap: 2rem !important; }
.hero-stat strong, .hero-stat-val {
  font-family: 'Playfair Display', serif !important;
  font-weight: 800 !important;
  font-size: 1.7rem !important;
  color: #fff !important;
}
.hero-stat span, .hero-stat-label {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 500 !important;
  font-size: .7rem !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  opacity: .75 !important;
}

/* ── Trust bar ── */
.trust-bar {
  background: linear-gradient(90deg, #0c2f5c 0%, #1C5D99 100%) !important;
  padding: 1rem 0 !important;
  border-bottom: 3px solid #FF6B35 !important;
}
.trust-item strong {
  font-family: 'Playfair Display', serif !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
  color: #fff !important;
}
.trust-item span:not(strong) {
  font-family: 'Raleway', sans-serif !important;
  font-size: .72rem !important;
  color: rgba(255,255,255,.65) !important;
  letter-spacing: .04em !important;
}

/* ── Section labels (stag) ── */
.stag {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 800 !important;
  font-size: .72rem !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: #FF6B35 !important;
  margin-bottom: .5rem !important;
}

/* ── Titres sections ── */
.sh2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  letter-spacing: -.02em !important;
  line-height: 1.2 !important;
}

/* ── Avis clients ── */
.avis-card {
  border-radius: 18px !important;
  border: 1px solid #D0DCEC !important;
  box-shadow: 0 2px 12px rgba(28,93,153,.07), 0 8px 40px rgba(28,93,153,.06) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  overflow: hidden !important;
}
.avis-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: .8;
  color: #EBF4FF;
  display: block;
  margin-bottom: -.5rem;
}
.avis-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 4px 24px rgba(28,93,153,.13), 0 16px 56px rgba(28,93,153,.10) !important;
}
.avis-txt {
  font-family: 'Raleway', sans-serif !important;
  font-style: italic !important;
  font-size: .92rem !important;
  line-height: 1.7 !important;
  color: #3A5070 !important;
}
.avis-stars-sm {
  color: #F59E0B !important;
  font-size: 1rem !important;
  letter-spacing: .12em !important;
}
.avis-av {
  width: 46px !important; height: 46px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #1C5D99 0%, #2878CC 100%) !important;
  color: white !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 8px rgba(28,93,153,.25) !important;
}
.avis-auth strong {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  color: #1A2A3E !important;
}
.avis-auth span {
  font-size: .76rem !important;
  color: #7A90AB !important;
}

/* ── Boutons CTA ── */
.btn-add-cart, .recap-btn-add {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  font-size: .78rem !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(255,107,53,.32) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.btn-add-cart:hover, .recap-btn-add:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(255,107,53,.45) !important;
}
.nav-cta {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-size: .74rem !important;
}

/* ── Configurateur cards ── */
.tl-card {
  border-radius: 14px !important;
  border: 2px solid #D0DCEC !important;
  box-shadow: 0 2px 8px rgba(28,93,153,.06) !important;
  transition: border-color .2s, box-shadow .2s, transform .2s !important;
}
.tl-card:hover, .tl-card.selected {
  border-color: #1C5D99 !important;
  box-shadow: 0 0 0 3px rgba(28,93,153,.12), 0 4px 20px rgba(28,93,153,.12) !important;
}
.tl-name {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* ── Recap prix ── */
.recap-price {
  font-family: 'Playfair Display', serif !important;
  font-weight: 800 !important;
  font-size: 2rem !important;
  letter-spacing: -.02em !important;
  color: #1C5D99 !important;
}
.recap-title {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
}

/* ── Inputs ── */
input[type="number"], input[type="text"], input[type="email"],
input[type="tel"], select, textarea {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 500 !important;
  border-radius: 10px !important;
}

/* ── Footer ── */
footer .ft-brand-name {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
}
footer .ft-nav-link, footer p, footer a {
  font-family: 'Raleway', sans-serif !important;
}

/* ── Why us section ── */
#why-us h2 {
  font-family: 'Playfair Display', serif !important;
}
#why-us h3 {
  font-family: 'Playfair Display', serif !important;
}
#why-us p {
  font-family: 'Raleway', sans-serif !important;
}

/* ── FAQ ── */
.faq-q {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: .98rem !important;
}
.faq-a {
  font-family: 'Raleway', sans-serif !important;
  font-size: .9rem !important;
  line-height: 1.75 !important;
}

/* ── Process steps ── */
.hiw-step h3 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
}
.step-num {
  font-family: 'Playfair Display', serif !important;
  font-weight: 800 !important;
}

/* ── Checkout modal ── */
.modal-title, #mH {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
}
.checkout-step-label {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700 !important;
}

/* ── Nav améliorée ── */
nav, .nav-wrap { 
  background: rgba(255,255,255,0.97) !important; 
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 1px 16px rgba(28,93,153,.10) !important;
}
.nav-links a { 
  font-family: 'Raleway', sans-serif !important;
  font-weight: 600 !important;
  font-size: .82rem !important;
  letter-spacing: .04em !important;
  color: #1A2A3E !important;
  text-transform: uppercase !important;
  transition: color .15s !important;
}
.nav-links a:hover { color: #1C5D99 !important; }
.nav-cta {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-size: .74rem !important;
  background: #1C5D99 !important;
  border-radius: 10px !important;
  padding: .55rem 1.2rem !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: #1A4E85 !important; transform: translateY(-1px) !important; }

/* ── Bouton Ajouter au panier premium ── */
.btn-add-cart, .recap-btn-add {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%) !important;
  font-family: 'Raleway', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-size: .76rem !important;
  border-radius: 14px !important;
  padding: 1rem !important;
  box-shadow: 0 4px 16px rgba(255,107,53,.4), 0 1px 4px rgba(255,107,53,.3) !important;
  transition: transform .2s, box-shadow .2s !important;
  border: none !important;
  color: white !important;
}
.btn-add-cart:hover, .recap-btn-add:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 8px 28px rgba(255,107,53,.5) !important;
}
.btn-add-cart:active { transform: translateY(0) !important; }
