/* NaviFormation — Front (léger, paramétrable, prêt backoffice)
   - Typo plus grande
   - Hero full width (image/video cover/contain) piloté par config
   - CTA HERO = bouton appel (tel:)
   - 3 permis: Fluvial / Côtier / Hauturier
   - Panier dynamique + remise (ligne affichée seulement si appliquée)
   - Icônes sobres via sprite SVG (assets/icons.svg)
*/

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16.75px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, canvas { display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }
button, input, select, textarea { font: inherit; }
button{ cursor:pointer; }

:focus-visible{
  outline: 3px solid rgba(21,93,252,.35);
  outline-offset: 2px;
}

.skip-link{
  position:absolute; left:-9999px; top:12px;
  padding:10px 12px; border-radius:12px;
  background:#0B1220; color:#fff; z-index:9999;
}
.skip-link:focus{ left:12px; }

:root{
  --bg:#F8FAFC;
  --surface:#FFFFFF;
  --surface-2:#F1F5FF;
  --border:#E5E7EB;
  --border-2:#D9E2F1;

  --text:#0F172A;
  --muted:#64748B;

  --primary:#155DFC;
  --primary-2:#0E91FA;
  --primary-3:#00B6DC;

  --green:#00C76A;
  --green-bg:#ECFDF5;
  --green-bd:#A7F3D0;

  --warn-bg:#FFF7D6;
  --warn-bd:#F3D56B;

  --shadow-sm: 0 6px 18px rgba(2,6,23,0.06);
  --shadow-md: 0 14px 30px rgba(2,6,23,0.10);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1120px;
  --pad: 20px;

  --hero-fit: cover;
  --hero-pos: 50% 50%;
  --hero-overlay: .35;
}

.container{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline:auto;
}

.muted{color: #7a8b8a;}
.small{ font-size: 14px; }
.hidden{ display:none !important; }

.section{ padding: 64px 0; }
.section-alt{ background: linear-gradient(180deg, rgba(21,93,252,.04), rgba(21,93,252,0)); }

.section-head{ text-align:center; margin-bottom: 22px; }
.section-head h2{
  margin: 0 0 6px;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.section-head p{ margin:0; color: var(--muted); }

.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(248,250,252,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight: 900; }
.brand img{ width: 160px; height: auto; }

.nav{
  display:none; align-items:center; gap: 16px;
  font-weight: 800; color: #334155;
}
.nav a{ padding: 10px 10px; border-radius: 10px; }
.nav a:hover{ background: rgba(21,93,252,.06); text-decoration:none; }

.nav-toggle{
  width:44px; height:44px;
  border:1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:6px; box-shadow: var(--shadow-sm);
}

.nav.is-open{
  position:absolute;
  top: 102px;
  left:0;
  right:0;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding: 12px var(--pad);
  background: rgba(248,250,252,.96);
  border-bottom: 1px solid var(--border);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
  transition: transform .08s ease, filter .12s ease;
}
.btn:hover{ text-decoration:none; filter: brightness(1.02); }
.btn:active{ transform: translateY(1px); }
.btn-primary{background: #09608d;color:#fff;}
.btn-ghost{background: #09608d;color: #ffffff;border-color: #e5e7eb57;}
.btn-block{ width:100%; }
#gift-btn{ transition: background .2s, border-color .2s, color .2s; border: 2px solid transparent; }
#gift-btn.is-active {
    background: #48a38b;
    border-color: #8effdc;
    color: #fff;
}
.btn-call{
  background:#fff; color: var(--primary);
  border: 2px solid rgba(21,93,252,.18);
}

div#gift-notice {
    text-align: center;
    background: #00646f !important;
    color: #ffffff !important;
}

#marine-boat-btn {
	    fill: #fff;
}



#marine-boat-btn path {
	    fill: #fff;
}


#gift-btn svg {
    fill: #fff;
    width: 22px;
    height: 22px;
    padding-bottom: 4px;
}

.group-discounts-row{
  display:flex;
  gap:12px;
  justify-content:center;
}

.group-discount-block{
  flex:1;
  text-align:center;
}

.group-discount-tile{
  width:100%;
}

.gd-label-sub{
  display:block;
  font-size:12px;
  opacity:.7;
}


.icon{width: 18px;height: 18px; color: rgb(255 255 255);}

.hero{
  position: relative;
  color: #fff;
  padding: 72px 0;
  min-height: clamp(520px, 70vh, 820px);
  overflow: hidden;
  display:flex;
  align-items:center; /* centre verticalement le contenu */
}

/* Le container du hero prend toute la largeur (utile avec display:flex sur .hero) */
.hero > .container{ width:100%; }
.hero__media{
  position:absolute; inset:0;
  width:100%; height:100%;
  background:#0B1220;
  z-index:0;
}
.hero__media > img,
.hero__media > video{
  width:100%; height:100%;
  display:block;
  object-fit: var(--hero-fit);
  object-position: var(--hero-pos);
}
.hero__media::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(2,6,23, var(--hero-overlay));
}

/* Slider (glissement doux) */
.hero-slider{ position:absolute; inset:0; width:100%; height:100%; }
.hero-slider__track{
  height:100%;
  display:flex;
  transform: translateX(0);
  transition: transform 900ms cubic-bezier(.22,.9,.22,1);
  will-change: transform;
}
.hero-slider__slide{ flex:0 0 100%; height:100%; }
.hero-slider__slide > img{
  width:100%; height:100%; display:block;
  object-fit: var(--hero-fit);
  object-position: var(--hero-pos);
}

/* Dots : petits, légers, cliquables */
.hero-dots{
  position:absolute;
  left:0; right:0;
  bottom: 18px;
  z-index: 2;
  display:flex;
  justify-content:center;
  gap:8px;
  pointer-events:auto;
  opacity:.8;
}
.hero-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.25);
  padding:0;
  cursor:pointer;
}
.hero-dot:hover{ background: rgba(255,255,255,.45); }
.hero-dot.is-active{
  background:#fff;
  border-color:#fff;
}

@media (prefers-reduced-motion: reduce){
  .hero-slider__track{ transition:none; }
}

/* Slider V2 : track qui glisse doucement */
.hero-slider{ position:absolute; inset:0; width:100%; height:100%; }
.hero-slider__track{
  width:100%; height:100%;
  display:flex;
  will-change: transform;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}
.hero-slider__slide{ flex:0 0 100%; width:100%; height:100%; }
.hero-slider__slide > img{
  width:100%; height:100%; display:block;
  object-fit: var(--hero-fit);
  object-position: var(--hero-pos);
}

/* Dots : petits, légers, cliquables + indicateur d'avancement */
.hero-dots{
  position:absolute;
  left:0; right:0;
  bottom: 18px;
  z-index: 2;
  display:flex;
  justify-content:center;
  gap: 10px;
  pointer-events:auto;
}
.hero-dot{
  width: 7px; height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.18);
  padding:0;
  cursor:pointer;
}
.hero-dot:hover{ background: rgba(255,255,255,.32); }
.hero-dot.is-active{
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.9);
}

@media (prefers-reduced-motion: reduce){
  .hero-slider__track{ transition:none; }
}
.hero__content{
  position: relative;
  z-index:1;
  max-width: 780px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(38px, 4vw, 56px);
  line-height:1.05;
  letter-spacing: -0.03em;
}
.hero .lead{
  margin:0 0 16px;
  font-size: clamp(28px, 1.6vw, 19px);
  line-height:1.6;
  opacity: .95;
}
.hero__actions{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top: 10px;
}
.boats-badge{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 14px;
}
.boat-pill{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color:#fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
}
@media (prefers-reduced-motion: reduce){
  .hero__media > video{ display:none; }
  .hero-slider__track{ transition:none; }
}

.highlights{ padding: 22px 0 10px; }
.highlights-grid{ display:grid; grid-template-columns: 1fr; gap: 14px; }
.highlight{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  text-align:center;
}
.qty .icon {
color: rgb(20 71 110) !important;
}

.icon-circle{
  width: 40px; height: 40px;
  border-radius: 999px;
  margin: 0 auto 10px;
  display:grid; place-items:center;
  background: rgb(29 154 170 / 90%);
  color: var(--primary);
}
.highlight h3{ margin:0 0 6px; font-size:18px; }
.highlight p{ margin:0; color: var(--muted); font-size: 15px; }

.panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px;
}
.panel-title{
  margin:0 0 12px;
  font-size:18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.cards-3{ display:grid; grid-template-columns: 1fr; gap: 18px; margin-top: 10px; }
.formation-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.formation-top{
  padding: 18px 18px 16px;
  color:#fff;
  background: linear-gradient(90deg, var(--primary-2), var(--primary-3));
  min-height: 112px;
  display:flex; align-items:flex-start; justify-content:space-between;
  gap: 14px;
}
.formation-title{
  display:flex; align-items:center; gap: 12px;
  font-size: 22px; font-weight: 1000;
  letter-spacing: -0.02em;
}
.pill-icon{
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.26);
  display:grid; place-items:center;
}
.formation-meta{
  text-align:right;
  display:flex; flex-direction:column; align-items:flex-end;
  gap: 2px;
}
.formation-price{
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  line-height:1;
}
.formation-hours{ font-size: 14px; opacity: .95; font-weight: 900; }
.formation-subtitle{ margin-top: 6px; font-size: 15px; opacity: .92; font-weight: 700; }

.formation-body{
  padding: 18px 20px 20px;
  flex: 1;
  display:flex; flex-direction:column;
}
.formation-body h4{
  margin: 14px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.formation-body h4:first-child{ margin-top: 0; }

.list-check{ list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.list-check li{
  display:flex; gap: 10px; align-items:flex-start;
  color:#334155;
  font-size: 15.5px;
}
.list-check li svg{flex: 0 0 auto;margin-top: 2px;color: #63b7e1;}
.list-check li span{ flex: 1; }

.card-actions{
  margin-top: auto;
  padding-top: 16px;
  display:flex; gap: 10px; align-items:center;
}
.qty{ display:flex; align-items:center; gap: 10px; }
.qty-btn{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #F1F5F9;
  display:grid; place-items:center;
  font-weight: 1000;
  color:#334155;
}
.qty-btn:hover{ background: #EAF0FF; border-color: rgba(21,93,252,.18); }
.qty-btn.plus{
  background: #15a5fc;
  border-color: rgba(21,93,252,.35);
  color:#fff;
}
.qty-number{ min-width: 20px; text-align:center; font-weight: 1000; }

.info-box{
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #EEF6FF;
  border: 1px solid #CFE6FF;
  display:flex; gap: 12px; align-items:flex-start;
}
.info-box .info-icon{
  width: 30px; height: 30px;
  border-radius: 10px;
  background: rgba(21,93,252,.12);
  color: var(--primary);
  display:grid; place-items:center;
  font-weight: 1000;
}
.info-box h3{ margin:0 0 6px; font-size: 18px; }
.info-box ul{ margin:0; padding-left: 18px; color:#334155; }
.info-box li{ margin: 6px 0; }




.calendar-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 10px; }
.icon-btn{
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display:grid; place-items:center;
  color:#0F172A;
}
.icon-btn:hover{ background: rgba(21,93,252,.05); }
.calendar-title{ font-weight: 1000; letter-spacing:-0.01em;   margin: 10px 0 10px;}

.calendar-weekdays{
  display:grid; grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
  margin-top: 10px;
  text-align:center;
}
.calendar{
  display:grid; grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal-day{
  border: 1px solid var(--border);
  background: #cdcdcd;
  border-radius: 12px;
  /* height: 42px; */
  display:grid;
  place-items:center;
  font-weight: 900;
  color:#334155;
  box-shadow: 0 6px 14px rgba(2,6,23,.05);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.legend-dot.fluvial { background:#67C23A; }
.legend-dot.cotier { background:#1E3A8A; }
.legend-dot.navigation { background:#6BB7BE; }
.legend-dot.hauturier { background:#EF4444; }



.cal-day.is-muted{ opacity: .4; box-shadow:none; }
.cal-day.is-available{border-color: rgba(21,93,252,.25);background: rgb(0 103 179 / 33%);}
.cal-day.is-full{ border-color: rgba(100,116,139,.25); background: rgba(100,116,139,.06); }
.cal-day.is-selected{ background: var(--primary); color:#fff; border-color: rgba(21,93,252,.35); }

.calendar-legend{
  display:flex; gap: 14px; flex-wrap:wrap;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}
.legend-item{ display:flex; align-items:center; gap:8px; }
.dot{ width:10px; height:10px; border-radius:999px; display:inline-block; }
.dot-ok{ background: rgba(21,93,252,.8); }
.dot-full{ background: rgba(100,116,139,.65); }

.session-list{ display:grid; gap: 10px; margin-bottom: 12px; }
.session-card{ border:1px solid var(--border); border-radius: 14px; padding: 12px; background:#fff; }
.session-card.is-selected{ border-color: rgba(21,93,252,.35); box-shadow: 0 10px 20px rgba(21,93,252,.10); }
.session-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.session-name{ font-weight: 1000; letter-spacing:-0.01em; }
.session-badge{
  font-size: 12px; font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(21,93,252,.06);
  color: var(--primary);
}
.session-meta{ margin-top: 6px; color: var(--muted); font-size: 14px; }

/* --- .pricing-grid{ display:grid; grid-template-columns: 1fr; gap: 18px; margin-top: 10px; } --- */
.line-items{ display:grid; gap: 14px; }
.cart-item{
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background:#fff;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.cart-item-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.cart-item-title{ margin:0; font-weight: 1000; letter-spacing:-0.01em; font-size: 18px; }
.cart-item-sub{margin: 2px 0 0;color: #ffffff;font-size: 14px;}

.cart-subtotal{
  margin-top: 12px;
  background: #EAF3FF;
  border: none;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
}

.recap{ display:grid; gap: 10px; margin-bottom: 10px; }
.recap-row{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.recap-row:last-child{ border-bottom:none; }
.recap-left{ color:#334155; font-weight: 800; }
.recap-right{ font-weight: 1000; color:#0F172A; }
.recap-row.discount{ display:none; }
.recap-row.discount.is-visible{ display:flex; border-bottom: 1px solid rgba(226,232,240,.9); }
.recap-row.discount .recap-left,
.recap-row.discount .recap-right{ color: var(--green); font-weight: 1000; }

.recap-total{
  display:flex; align-items:baseline; justify-content:space-between; gap:10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.recap-total span{ font-weight: 1000; font-size:18px; }
.recap-total strong{ font-size: 30px; color: var(--primary); letter-spacing:-0.02em; }

.callouts{ margin-top: 12px; display:grid; gap: 10px; }
.callout{ border-radius: 12px; padding: 12px; border: 1px solid; font-size: 14.5px; }
.callout-warn{ background: var(--warn-bg); border-color: var(--warn-bd); color:#111827; }
.callout-ok{ background: var(--green-bg); border-color: var(--green-bd); color:#111827; }
.callout-ok[hidden]{ display:none; }

.discount-grid-wrap{ margin-top: 18px; }
.discount-title{ margin:0 0 12px; font-size: 18px; font-weight: 1000; letter-spacing: -0.01em; }
.discount-grid{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.discount-card{
  border-radius: 14px;
  border: 2px solid var(--border-2);
  background:#fff;
  padding: 14px;
  text-align:center;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}
.discount-card .pct{ font-size: 34px; font-weight: 1000; color: var(--primary); letter-spacing:-0.02em; margin:0 0 6px; }
.discount-card .range{ margin:0; color:#475569; font-weight: 900; font-size: 14px; }
.discount-card.is-active{ border-color: var(--green); background: #EFFFF6; }

.faq{ width:min(920px, 100%); margin: 0 auto; }
.faq-cat{
  margin: 22px 0 10px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  padding: 14px 16px;
  font-weight: 1000;
  letter-spacing:-0.01em;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  cursor:pointer;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"▾"; color:#64748B; font-size: 16px; transform: translateY(-1px); }
.faq-item[open] summary::after{ content:"▴"; color: var(--primary); }
.faq-body{ padding: 0 16px 14px; color:#475569; }
.faq-cta{
  margin-top: 14px;
  border:1px solid var(--border);
  background: #f5f5f5;
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  /* color: #fff; */
}

.contact-grid{ display:grid; grid-template-columns: 1fr; gap: 18px; margin-top: 10px; }
.contact-left{ display:grid; gap: 14px; }
.contact-list{ list-style:none; margin:0; padding:0; display:grid; gap: 12px; }
.contact-list li{ display:flex; gap:12px; align-items:flex-start; }
.contact-ico{
  width: 34px; height:34px;
  border-radius: 12px;
      background: rgb(14 88 126 / 90%);
  display:grid; place-items:center;
  color: var(--primary);
}
.contact-photo{
  border-radius: var(--radius);
  border:1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow:hidden;
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.form{ display:grid; gap: 12px; }
.form label{ display:grid; gap: 6px; font-weight: 900; color:#0F172A; }
.form input, .form select, .form textarea{
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  background:#fff;
  color:#0F172A;
  box-shadow: 0 8px 18px rgba(2,6,23,.05);
  font-weight: 400;
}
.form textarea{ resize: vertical; min-height: 120px; }
.form-row{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.toast{
  margin-top: 10px;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid;
  font-weight: 900;
}
.toast.is-ok{ background: var(--green-bg); border-color: var(--green-bd); color:#111827; }
.toast.is-err{ background:#FEF2F2; border-color:#FECACA; color:#7F1D1D; }

.footer{margin-top: 18px;background: #09608d;color: rgba(255,255,255,.88);}
.footer-grid{ padding: 34px 0; display:grid; grid-template-columns: 1fr; gap: 18px; }
.footer-brand{ font-weight: 1000; font-size: 18px; margin-bottom: 6px; }
.footer-title{ font-weight: 1000; margin-bottom: 6px; }
.footer-muted{ margin:0; color: rgba(255,255,255,.70); font-size: 14.5px; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.10); padding: 12px 0; color: rgba(255,255,255,.70); font-size: 14px; }
.footer-bottom-inner{ display:flex; justify-content:space-between; align-items:center; gap: 12px; }
.footer-bottom a{ color: rgba(255,255,255,.85); }

.admin-wrap{ padding: 24px 0 64px; }
.admin-grid{ display:grid; grid-template-columns: 1fr; gap: 18px; }
textarea.json{
  width:100%;
  min-height: 420px;
  resize: vertical;
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.5;
  background:#fff;
}
.table{
  width:100%;
  border-collapse: collapse;
  border:1px solid var(--border);
  border-radius: 12px;
  overflow:hidden;
  background:#fff;
}
.table th, .table td{ border-bottom:1px solid var(--border); padding: 10px 10px; text-align:left; font-size: 14px; }
.table th{ background: #F1F5FF; font-weight: 1000; }
.table tr:last-child td{ border-bottom:none; }

@media (min-width: 840px){
  .nav{ display:flex; }
  .nav-toggle{ display:none; }
  .highlights-grid{ grid-template-columns: repeat(3, 1fr); }
  .cards-3{ grid-template-columns: repeat(3, 1fr); }
  .calendar-grid{ grid-template-columns: 1fr 1fr; }
  .discount-grid{ grid-template-columns: repeat(3, 1fr); }
  .contact-grid{ grid-template-columns: 1fr 1.1fr; align-items:start; }
  .footer-grid{ grid-template-columns: 1.2fr 1fr 1fr; }
  .admin-grid{ grid-template-columns: 1.1fr .9fr; }
}
@media (min-width: 1020px){
  body{ font-size: 17px; }
  .section-head h2{ font-size: 32px; }
}


/* --- Boats section --- */
.boats-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 10px;
}
.boat-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 18px;
  position: relative;
  overflow:hidden;
}
.boat-badge{
    position: relative;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgb(4 51 69 / 40%);
    color: #ffffff;
    font-weight: 1000;
    font-size: 12.5px;
    border: 1px solid rgb(88 120 135 / 41%);
    top: -18px;
    width: 45%;

}

.boat-card-body {
    margin-top: -40px;
    position: relative;
}

.boat-card h3{
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing:-0.01em;
}
.boat-card p{ margin: 0 0 12px; color: var(--muted); }

/* --- List dot (Programme) --- */
.list-dot{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 10px;
  color:#334155;
  font-size: 15.5px;
}
.list-dot li{ margin:0; }
.list-dot li::marker{ color: rgba(21,93,252,.85); }

/* --- Gallery --- */
.tabs{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:center;
  margin: 14px 0 16px;
}
.tab{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 1000;
  color:#334155;
  box-shadow: var(--shadow-sm);
}
.tab:hover{ background: rgba(21,93,252,.05); }
.tab.is-active{
  background: #09608d;
  color:#fff;
  border-color: rgba(21,93,252,.35);
}

.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.thumb{
  margin:0;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background:#fff;
  cursor:pointer;
  aspect-ratio: 1 / 1;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.lightbox{
  width: min(920px, 92vw);
  border: none;
  border-radius: 18px;
  padding: 0;
  overflow:hidden;
  box-shadow: 0 24px 60px rgba(2,6,23,.35);
  background:#0B1220;
}
.lightbox::backdrop{
  background: rgba(2,6,23,.65);
  backdrop-filter: blur(4px);
}
.lightbox-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size: 22px;
  box-shadow: none;
}
.lightbox-close:hover{ background: rgba(255,255,255,.22); }
.lightbox-img{
  width:100%;
  height:auto;
  display:block;
  background:#0B1220;
}
.lightbox-cap{
  margin: 0;
  padding: 12px 14px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  background: rgba(2,6,23,.65);
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (min-width: 840px){
  .boats-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(4, 1fr); }
}

/* Mobile nav toggle label */
.nav-toggle{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-toggle-label{
  font-weight: 950;
  color: var(--text);
  font-size: 14px;
}
.nav-toggle-icon{
  display:grid;
  gap: 4px;
}
.nav-toggle-icon span{
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  display:block;
}

/* Floating "to top" button */
.to-top{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.10);
  background: #fff;
  box-shadow: 0 18px 40px rgba(2,6,23,.18);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.to-top:hover{ background: rgba(21,93,252,.06); }

/* Promo row (hidden unless applied) */
.recap-row.promo{ display:none; }
.recap-row.promo.is-visible{ display:flex; }

.footer-link{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover{ color:#fff; }


/* ---------- NAV TOGGLE GUARDFIX (desktop vs mobile) ---------- */
@media (min-width: 981px){
  .nav-toggle{ display:none !important; }
  .nav-links{ display:flex !important; }
  
  /* Mobile header fixes: logo size + "Menu" label placement */
@media (max-width: 560px){

  /* 1) Logo moins grand */
  .brand img{
    height: 44px !important;
    width: auto !important;
    max-width: 160px;
    object-fit: contain;
  }

  /* 2) Bouton burger: "Menu" à gauche des traits, bien centré */
  .nav-toggle{
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
    padding: 10px 12px;
  }

  .nav-toggle-label{
    position: static !important;
    transform: none !important;
    white-space: nowrap;
    line-height: 1;
    font-weight: 700;
  }

  .nav-toggle-icon{
    position: static !important;
    transform: none !important;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  /* au cas où les traits ont des tailles bizarres dans ton CSS principal */
  .nav-toggle-icon span{
    display: block;
  }
}

}
@media (max-width: 980px){
  .nav-toggle{ display:flex !important; }
  .nav-links{ display:none !important; }
}


/* --- Header menu CTAs --- */
.nav-call{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:12px;font-weight:900;text-decoration:none;border:1px solid rgba(0,0,0,.08);}
.nav-call__num{opacity:.85;font-weight:800;}
.nav-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 12px;border-radius:12px;font-weight:900;text-decoration:none;white-space:nowrap;}
.nav-btn--primary{background:#0F172A;color:#fff;}
.nav-btn--outline{border:1px solid rgba(0,0,0,.18);color:#0F172A;background:transparent;}
@media (max-width:980px){.nav-btn,.nav-call{width:100%;}}

/* ---------- Inscription section ---------- */
.insc-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.insc-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:16px;
  background:#fff;
}
.insc-list{ margin:10px 0 0; padding-left:18px; }
.insc-note{ margin-top:12px; opacity:.85; }
.insc-actions{display:grid;text-align: center;gap:12px;}
@media (max-width: 760px){
  .insc-grid{ grid-template-columns:1fr; }
}


/* --- Permis card upgrades (image + notes + option obligatoire) --- */
.formation-image{
  margin: 0 0 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
.formation-image img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display:block;
}

.formation-extra-note{
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px dashed rgba(15, 23, 42, 0.18);
  font-size: 14px;
  line-height: 1.35;
}

.formation-required{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.formation-required__text strong{
  display:block;
  font-weight: 900;
  font-size: 14px;
}
.formation-required__text .muted{
  margin-top: 2px;
  opacity: .75;
  font-size: 13px;
}

@media (max-width: 520px){
  .formation-image img{ height: 140px; }
  .formation-required{ flex-direction: column; align-items:flex-start; }
  .formation-required .btn{ width: 100%; }
}

/* === Permis Card Final Clean === */

.formation-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow: var(--shadow-md);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* IMAGE */
.formation-media{
  position:relative;
  height:190px;
  overflow:hidden;
}

.formation-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */

.formation-header {
	
	  top:-20px !important;
	  
}




.formation-top{
  position:absolute;
  inset:0;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.65) 100%
  );
  color:#fff;
}

/* TITRE */
.formation-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  font-weight:900;
}

/* SOUS TEXTE */
.formation-subtitle{
  background:rgba(0,0,0,.45);
  padding:8px 8px;
  border-radius:14px;
  font-size:13px;
  line-height:1.3;
}

/* META */
.formation-meta{
  padding:14px 18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.formation-price{
  font-size:22px;
  font-weight:900;
}

.formation-hours{
  font-size:12px;
  opacity:.7;
}

/* BODY */
.formation-body{
  padding:16px 18px 20px;
  flex:1;
  display:flex;
  flex-direction:column;
}


.from{
  display:block;
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  opacity:.6;
}
.value{
  font-size:22px;
  font-weight:900;
}

.formation-top{
  position:absolute;
  inset:0;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.7) 100%
  );
  color:#fff;
}

.formation-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}

/* PRIX EN HAUT A DROITE */
.formation-price-block{
  text-align:right;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  position: relative;
      left: 50%;
    width: 50%;
}


.formation-price-block .from{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.7;
}

.formation-price-block .value{
  font-size:26px;
  font-weight:900;
  line-height:1;
}

.formation-price-block .hours{
  font-size:12px;
  opacity:.7;
}

.formation-top-admin {

    position: absolute;
    align-content: center;
    padding: 20px;
    float: right;
    background: black;
    opacity: 0.7;
    color: #ffffff;
}

/* ===============================
   V10 – COLONNE GAUCHE
================================= */



.cart-item {
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 18px;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.cart-item.active {
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.5);
}

.cart-item-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
}

.cart-item-sub {
  opacity: 0.85;
  font-size: 14px;
}

.cart-subtotal {
  background: rgba(255,255,255,0.2);
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  text-align: right;
}

/* ===============================
   V10 – COLONNE RECAP
================================= */

.selection-card-wrapper {
  background: linear-gradient(135deg, #6d8faa, #537f9f);
  padding: 40px;
  border-radius: 26px;
}



.recap-card {
  background: linear-gradient(180deg,#2b5f8a,#1f4d74);
  color: white;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  width: 100%;
  position: sticky;
  top: 100px;
}

.recap-card h3 {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 600;
}

.recap-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 16px;
}

.recap-line.discount {
  color: #ffd24c;
}

.total-highlight {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.recap-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 28px;
  font-weight: 700;
}

.recap-economy {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
}

.btn-order {
  margin-top: 25px;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg,#39a9e0,#1e87c7);
  color: white;
  transition: 0.3s;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}


/* ===========================
   FRONT CALENDAR
=========================== */

.calendar-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px;
  background: #f8fafc;
  border-radius: 22px;
}

/* === WRAPPER === */

.calendar-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

/* === HEADER JOURS === */

.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
      margin: 5px 0 12px;

}

.calendar-day-label {
  text-align: center;
  font-weight: 500;
  color: #6B7280;
  font-size: 14px;
}

/* === GRID === */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

/* === CELLULE === */

.calendar-legend span {
  position: relative;
  padding-left: 18px;
}

.calendar-legend span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

button.btn.btn-outline.btn-block {
	    color: #fff;
    background: #5aa4c8;
}

a.btn.btn-outline.btn-block {
	    color: #fff;
    background: cadetblue;
}

.calendar-legend .legend-item::before {
  top: 50%;
  transform: translateY(-50%);
}


.calendar-legend .legend-item.fluvial::before {
  background: #0e976f;
}

.calendar-legend .legend-item.cotier::before {
  background: #2d5b82;
}

.calendar-legend .legend-item.navigation::before {
  background: #6BB7BE;
}

.calendar-legend .legend-item.hauturier::before {
  background: #EF4444;
}

.calendar-legend .legend-item {
  position: relative;
  margin-right: 20px;
}

.calendar-legend .legend-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.calendar-cell:hover {
  border-color: #c9d3d4;
}

.calendar-cell {
  position: relative;
overflow: hidden;
  height: 110px; 
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 6px;
  box-sizing: border-box;
}

.calendar-day-number {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* EVENT CARD */

.calendar-cell {
  border-radius: 18px;
  max-height: 70px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: all .2s ease;
}

.calendar-cell.event-cell .calendar-day-number {
  color: white;
  font-weight: 600;
}

.calendar-cell.event-cell {
  color: white;
}

.calendar-cell.fluvial {
  background: #0e976f;
}

.calendar-cell.cotier {
  background: #2d5b82;
}

.calendar-cell.navigation {
  background: #6BB7BE;
}

.calendar-cell.hauturier {
  background: #EF4444;
}

.event-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 1;
}

.event-title {
  font-size: 12px;
  margin: 0;
}

.event-location {
  font-size: 10px;
  margin: 0;
}

.event-content svg {
  margin-bottom: 2px;
}

#calendrier {
  scroll-margin-top: 120px;
}


.calendar-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.calendar-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.prev-month {
  position: absolute;
  left: 0;
}

.next-month {
  position: absolute;
  right: 0;
}

.calendar-cell.has-event .calendar-day-number {
  color: white;
  font-weight: 600;
}



.event-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.event-location {
  font-size: 0.8rem;
  opacity: 0.9;
}

.calendar-cell.empty {
  background: transparent;
  border: none;
}


.prev-month,
.next-month {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all .2s ease;
}

.is-hidden {
  display: none !important;
}

.prev-month:hover,
.next-month:hover {
  transform: translateY(-2px);
}


.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-legend span::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
}


/* === COULEURS === */




#calendrier {
  padding-top: 20px;
}


ul.payment-methods.unstyled-list {
    display: inline-flex;
    list-style-type: none;
margin-right: 44px !important;
}

li {
    margin: 4px;
}


/* ===============================
   V10 – PROMO BANNER
================================= */

.promo-banner {
  background: #ffd43b;
  color: #1f4d74;
  padding: 10px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.promo-timer {
  margin-left: 12px;
  font-size: 13px;
}


/* ===========================
   LAYOUT GLOBAL
=========================== */

.cart-v11 {
  padding: 60px 40px;
}

.cart-container {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}


/* ===========================
   COLONNE GAUCHE
=========================== */

.selection-card {
  background: linear-gradient(180deg, #6f8ea3 0%, #567b95 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.selection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.selection-header h2 {
  font-size: 28px;
  margin: 0;
}

/* PROMO BADGE */

.promo-badge {
  /* background: #FFD54F; */
  /* padding: 12px 22px; */
  /* border-radius: 12px; */
  /* text-align: center; */
  /* font-weight: 600; */
  /* color: #222; */
}

.promo-small {
  font-size: 11px;
  display: block;
}

.promo-label {
  font-size: 18px;
}

.promo-value {
  font-size: 20px;
  font-weight: 800;
}

/* CART ITEMS */

.selection-card .selection-card {
  background: rgba(255,255,255,0.1);
}


/* ================================
   CALENDAR VERTICAL — FINAL MATCH
================================ */


/* ===========================
   CALENDRIER VERTICAL V10
=========================== */

.calendar-vertical {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.vertical-month h3 {
  text-align: center !important;
  font-size: 32px;
  margin-bottom: 28px;
  font-weight: 900;
  text-align: left;
}



/* Label DIM / LUN etc */
.vertical-day::before {
  content: attr(data-day);
  width: 42px;
  font-weight: 700;
  font-size: 14px;
  color: #64748b;
}


.vertical-day {
   display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 18px;
  width: 100%;
}

.vertical-weekday {
  width: 45px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  flex-shrink: 0;
}

.vertical-date {
 width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: #f1f5f9;
  flex-shrink: 0;
}



.session-left {
  display: flex;
  flex-direction: column;
}


.calendar-session {
 flex: 1;
  min-width: 0; 
  height: 54px;
  border-radius: 16px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 2px;
  color: #fff;
}

.session-date {
  font-weight: 900;
  font-size: 18px;
  min-width: 28px;
}

.session-content {
  display: flex;
  flex-direction: column;
}

.session-title {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.session-location {
  font-size: 10px;
  opacity: 0.85;
}

.session-icon {
  margin-left: auto;
  opacity: 0.9;
}


/* Couleurs */
.calendar-session.fluvial { background:#67C23A; }
.calendar-session.cotier { background:#1E3A8A; }
.calendar-session.navigation { background:#6BB7BE; }
.calendar-session.hauturier { background:#EF4444; }



/* ===========================
   PRODUIT CARD
=========================== */

.selection-card{
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.3s ease;
}



.selection-qty.vertical{
  display:flex;
  /* flex-direction:column; */
  align-items:center;
  gap:8px;
}

.qty-display{
  /* order:2; */
}

.selection-card.active {
  background: #355e7a;
  border: 2px solid rgba(255,255,255,0.6);
}


/* ===========================
   RECAP
=========================== */

.recap-card{
 background: linear-gradient(180deg, #2f5d82 0%, #244c6c 100%);
  border-radius: 24px;
  padding: 40px;
  color: white;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.recap-card-v11 h3 {
  margin-top: 0;
}

.recap-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px 0;
}

.recap-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.recap-line.discount {
  color: #FFD54F;
}

.recap-total-block {
  margin-top: 30px;
}

.recap-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 700;
}

.recap-economy {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.8;
  float: right;
}

/* ===========================
   TOTAL
=========================== */

#recap-total{
  font-size:38px;
  font-weight:800;
}

/* ===========================
   INFOS
=========================== */

.group-info{
  background:#5aa4c8;
  padding:14px 22px;
  border-radius:14px;
  margin-top:20px;
  font-weight:600;
  text-align:center;
}


/* ===========================
   BOUTON
=========================== */

.btn-order-v11 {
  width: 100%;
  margin-top: 30px;
  padding: 18px;
  border-radius: 14px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(180deg,#49a8d8,#2f87c3);
  color: white;
  cursor: pointer;
}

.btn-order-v11:hover {
  transform: translateY(-2px);
}

.selection-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.promo-badge{
  /* background: #8f1b85; */
  /* padding:14px 22px; */
  /* border-radius:12px; */
  /* font-weight:700; */
  /* color:#1f3f5b; */
  /* box-shadow:0 6px 18px rgba(0,0,0,0.15); */
}

/* =========================================
   FORCE LAYOUT V11
========================================= */

#tarifs.cart-v11 {
  padding: 80px 0;
  background: #f3f6fa;
}

#tarifs .cart-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---------- COLONNE GAUCHE ---------- */

#tarifs .selection-card {
  background: linear-gradient(180deg,#6f8fa7,#5f8099);
  border-radius: 26px;
  padding: 45px;
  color: white;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Produit */

#tarifs .selection-card .cart-item {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

#tarifs .selection-card .cart-item.active {
  background: #355f7d;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Sous total ligne */

#tarifs .cart-subtotal {
  background: rgba(255,255,255,0.18);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  margin-top: 12px;
  text-align: right;
}

/* ---------- BADGE PROMO ---------- */

#tarifs .promo-badge {
  /* background: #ffd54f; */
  /* padding: 8px 16px; */
  /* border-radius: 14px; */
  /* font-weight: 700; */
  /* width: max-content; */
  /* color: #09608d; */
  /* box-shadow: 0 8px 10px rgba(0,0,0,0.2); */
}

/* ---------- COLONNE DROITE ---------- */

#tarifs .recap-card {
  background: linear-gradient(160deg,#2e5d85,#254c6f);
  border-radius: 26px;
  padding: 45px;
  color: white;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  position: sticky;
  top: 120px;
}

#tarifs .recap-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

#tarifs .recap-line.discount {
  color: #FFD54F;
}

#tarifs #recap-total {
  font-size: 32px;
  font-weight: 800;
}

/* Bouton */

#tarifs .btn-order-v11 {
  width: 100%;
  margin-top: 30px;
  padding: 18px;
  border-radius: 16px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(180deg,#49a8d8,#2f87c3);
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

#tarifs .btn-order-v11:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}


#tarifs .selection-card {
  background: linear-gradient(180deg,#6f8fa7,#5f8099);
}


.selection-item p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.selection-item h4 {
  color: white;
  font-weight: 600;
}

.promo-badge {
  position: absolute;
  top: -22px;
  right: 40px;
  background: #f3c847;
  padding: 16px 24px;
  width: max-content;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-order {
  background: linear-gradient(90deg, #3ca3d6, #2d8ec4);
  border-radius: 14px;
  padding: 18px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 25px;
}

#recap-total {
  font-size: 42px;
  font-weight: 700;
}


/* =========================================
   V11 RESPONSIVE FIX
========================================= */

@media (max-width: 1024px){

  /* 1 colonne */
  #tarifs .cart-container{
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  /* On enlève le sticky */
  #tarifs .recap-card{
    position: relative !important;
    top: auto !important;
  }

  /* Padding réduit */
  #tarifs .selection-card,
  #tarifs .recap-card{
    padding: 28px !important;
  }

}

/* ===============================
   MOBILE STRICT
=============================== */



@media (max-width: 480px){


.event-content svg {
    opacity: 0;
}


.event-title {

    font-size: 6px;
}

.calendar-wrapper {

    padding: 0px 0px; 

}

}





@media (max-width: 590px){



.calendar-vertical {

    grid-template-columns: repeat(1, minmax(0, 1fr));


}

.vertical-month h3 {

    margin-right: 20px;
}

    .vertical-date {
        min-width: 180% !important;
    }
	
	.calendar-session {
        min-width: 180% !important; 
    }



}

@media (max-width: 840px){



	.calendar-cell {
		
		padding: 2px;
		
		
		}
		
		
.event-content {
	   gap: 0px;
}

.event-title {
    font-size: 8px;

}

.event-location {
    font-size: 8px;
    text-align: center;

}

.calendar-grid {

    gap: 2px;
}

.event-content svg {
    margin-bottom: 2px;
    margin-top: 4px;
    width: 20px;
}



.vertical-day {

    width: 50%;
}

.vertical-weekday {
    width: 22px;
    font-size: 9px;
    font-weight: 700;
    color: #64748b;
    flex-shrink: 0;
}

.calendar-session {

    min-width: 150%;
    padding: 0 10px;
	gap: 0px;

}

.session-title {

    font-size: 10px;

}

.vertical-date {

    min-width: 150%;

}


}


@media (max-width: 1160px){
	
	
	button.modal-close {

    left: 64% !important;
}
	
}

@media (max-width: 930px){
	
	
	button.modal-close {

    left: 70% !important;
}
	
}

@media (max-width: 600px){
	
	
	button.modal-close {

    left: 80% !important;
}
	
}

@media (max-width: 375px){
	
	
	button.modal-close {

    left: 70% !important;
}
	
}





@media (max-width: 640px){
	
	.selection-card h2 {
    padding-top: 44px;
 padding-bottom: 44px; 
}

  #tarifs.cart-v11{
    padding: 50px 0;
  }

  #tarifs .cart-container{
    gap: 22px;
  }

  /* Badge promo centré */
  #tarifs .promo-badge{
        position: relative !important;
        top: auto !important;
        right: auto !important;
        display: block;
        max-width: fit-content;
        margin: -40px auto 25px auto;
        text-align: center;
  }
  
  
  .selection-header h2 {
    /* font-size: 28px; */
    margin: 0;
    /* display: flow; */
    position: fixed;
    margin-top: 90px;
    text-align: center;
    width: stretch;
    margin-left: -28px;
}

  /* Cart item plus compact */
  #tarifs .selection-card .cart-item{
    padding: 18px;
  }

  /* Sous-total plus lisible */
  #tarifs .cart-subtotal{
    font-size: 14px;
  }

  /* Total plus proportionné */
  #recap-total{
    font-size: 30px !important;
  }

  /* Bouton full confortable */
  #tarifs .btn-order-v11{
    padding: 16px;
    font-size: 17px;
  }

}



input#checkout-email {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Ligne prénom / nom dans le checkout */
.checkout-name-row {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-bottom: 8px;
}
.checkout-name-row input {
    flex: 1;
    padding: 18px;
    border-radius: 16px;
    border: none;
    font-size: 16px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    background: #fff;
}
.checkout-name-row input:focus {
    box-shadow: 0 0 0 3px rgba(21,93,252,.18);
}
.checkout-name-row input[style*="ef4444"] {
    box-shadow: 0 0 0 3px rgba(239,68,68,.18);
}
@media (max-width: 480px) {
    .checkout-name-row { flex-direction: column; gap: 6px; }
}




  /* OVERIDES */

.recap-line.discount.promo {
    color: #FFD54F !important;
}

#tarifs .recap-line.discount {
    color:  #63efff !important;
}

.people-icons .pi {

fill: rgb(21 165 252) !important;
	
}
	
.faq-item summary {
    background: #09608d !important;
}

.group-note {
    text-align: center;
}

.boat-card-img img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px 18px 0 0;
}

.boat-card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}


label.p-FieldLabel.Label.Label--empty {
    color: #fff;
}

label.p-FieldLabel.Label {
    color: #fff;
}

svg.C-Icon {
    max-width: 12px;
    max-height: 12px;
    display: inline-flex;
}

span.u-mr-1 {
    color: #fff;
}

svg.p-Icon.p-Icon--redirectDesktop.Icon.p-Icon--xl.u-mr-3 {
    color: #fff;
}


.FadeWrapper {
    padding: 20px;
}

.secure-badge {
    padding-top: 10px;
    padding-left: 5px;
}

button.modal-close {
    background: #c9e7e8;
    border-radius: 8px;
    position: fixed;
    border: 1px solid #555;
    font-weight: 400;
    display: flex;
    top: 65px;
    left: 59%;
}

#recap-total {
    margin-bottom: 10px;
}


#payment-container {
    margin-top: 50px !important;
    padding: 28px;
    border-radius: 22px;
    background: #9fb9cb; /* ton ancien bleu gris clair */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),
                0 10px 30px rgba(0,0,0,0.15);
}

#payment-container label,
#payment-container .Label,
#payment-container .p-Label {
    color: #0f2e44 !important;
    font-weight: 500;
}

#payment-container .Input,
#payment-container input {
    background: #ffffff !important;
}

#payment-container.active {
    opacity: 1;
    transform: translateY(0);
}

#payment-container {
    display: none;
    margin-top: 25px;
    padding: 25px;
    border-radius: 22px;
    background: rgb(220 234 245 / 85%);
    backdrop-filter: blur(8px);
    animation: fadeUp .3s ease forwards;
}

@keyframes fadeUp {
    from { opacity:0; transform:translateY(15px); }
    to { opacity:1; transform:translateY(0); }
}

#confirm-payment {
    margin-top: 25px;
}

.payment-message {
  opacity: 0;
  transition: opacity .3s ease;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 77, 79, 0.1);
  color: #d62828;
  font-size: 14px;
}

.payment-message.visible {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════
   REMISES DE GROUPE — bandeau en-tête colonne gauche
═══════════════════════════════════════════════════════════════ */



.group-discounts-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 24px;
}

.group-discount-tile {
  flex: 1;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 10px 12px;
  border-radius: 14px;
  background: rgb(62, 154, 207);
  border: none;
  color: rgba(255, 255, 255, 0.95);
  transition: background .2s, color .2s;
}

.group-discount-tile.is-active {
  background: rgb(243, 200, 71);
  color: #fff;
}

.group-discount-tile .gd-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.group-discount-tile .gd-saving {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.group-discount-tile .gd-label {
  font-size: 12px;
  font-weight: 600;
  opacity: .85;
  text-align: center;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════
   SOUS-TOTAL LIGNE — flex pour aligner + bouton mobile
═══════════════════════════════════════════════════════════════ */

.cart-subtotal {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
}

/* Bouton "mon panier" — visible uniquement mobile */
.btn-mon-panier {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgb(0 177 206 / 70%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.btn-mon-panier:hover {
  background: rgba(255,255,255,0.38);
  color: #fff;
}

@media (max-width: 1024px) {
  .btn-mon-panier {
    display: inline-flex;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SOUS-TOTAL MOBILE : prix barré + remisé
═══════════════════════════════════════════════════════════════ */

.subtotal-original {
  display: inline;
  transition: all .2s;
}

.subtotal-original.is-struck {
  text-decoration: line-through;
  opacity: 0.5;
  font-weight: normal;
}

.subtotal-discounted {
  margin-left: 6px;
}

.net-price {
  color: #7EE8A2;
  font-size: 1.05em;
}

/* Barré visible uniquement sur mobile */
@media (min-width: 1025px) {
  .subtotal-original.is-struck {
    text-decoration: none;
    opacity: 1;
  }
  .subtotal-discounted {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MAV V11 : LAST LANE
═══════════════════════════════════════════════════════════════ */

	.selection-card h2 {
    padding-top: 44px;

	}



  section {
  scroll-margin-top: 62px;
	}
	
	.selection-card h2 {
    padding-top: 44px;
}
	
    /* desktop burger guard */
    @media (min-width: 981px){
      .nav-toggle{ display:none !important; }
      .nav{ display:flex !important; }
	 
    }
    @media (max-width: 980px){
      .nav-toggle{ display:flex !important; }
	   #highlights { display:none !important; }
    }


span.cart_tt {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    width: 100%;
    /* width: max-content; */
    display: inline-block;
    position: relative;
}


span.cart_st {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    text-align: center;
    font-size: 18px;
}

/* ═══════════════════════════════════════════════════════
   🚢 MODE MARIN (easter egg)
   Toggle via .marine-dark sur <body>
═══════════════════════════════════════════════════════ */

#marine-boat-btn svg {
      fill: aliceblue;
  width:44px;
  height:44px;
}



#marine-boat-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  padding: 0 6px 0 0;
  vertical-align: middle;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  line-height: 1;
  filter: drop-shadow(0 0 0px #7dd3fc);
}
#marine-boat-btn:hover {
  transform: translateX(4px) rotate(-8deg) scale(1.18);
}
body.marine-dark #marine-boat-btn {
  filter: drop-shadow(0 0 8px #38bdf8);
  animation: boat-float 3s ease-in-out infinite;
}
@keyframes boat-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-3px) rotate(-5deg); }
  70%      { transform: translateY(2px) rotate(4deg); }
}

body.marine-dark {
  --bg:       #071428;
  --surface:  #0d1f3c;
  --surface-2:#0a1929;
  --border:   #1e3a5f;
  --border-2: #1a3456;
  --text:     #e2f0ff;
  --muted:    #7bafd4;
  --primary:  #38bdf8;
  --primary-2:#0ea5e9;
  --primary-3:#06b6d4;
  --shadow-sm: 0 6px 18px rgba(0,10,30,0.40);
  --shadow-md: 0 14px 30px rgba(0,10,30,0.55);
  transition: background .5s, color .5s;
}

body.marine-dark,
body.marine-dark .site-header,
body.marine-dark main,
body.marine-dark section,
body.marine-dark .section-alt {
  background-color: var(--bg);
  color: var(--text);
  transition: background-color .5s, color .3s;
}

body.marine-dark .site-header {
  background: #040e20 !important;
  border-bottom: 1px solid #1e3a5f;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

body.marine-dark .card,
body.marine-dark .formation-card,
body.marine-dark .tarif-card,
body.marine-dark .faq-item,
body.marine-dark .contact-box,
body.marine-dark .cal-wrap,
body.marine-dark .recap-box,
body.marine-dark .discount-card {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text);
}

body.marine-dark .footer {
  background: #020b18 !important;
  border-top: 1px solid #1e3a5f;
}

body.marine-dark h1,
body.marine-dark h2,
body.marine-dark h3,
body.marine-dark h4 {
  color: #e2f0ff;
}

body.marine-dark p,
body.marine-dark li,
body.marine-dark span:not(.badge):not(.tag) {
  color: var(--text);
}



body.marine-dark input::placeholder,
body.marine-dark textarea::placeholder {
  color: #4a7fa5 !important;;
}

body.marine-dark .promo-badge {
    background: #00c2cd !important;
    color: #ffffff !important;
}

body.marine-dark article.boat-card {
    background: linear-gradient(42deg, #11222f, #0374c5) !important;
}

body.marine-dark .insc-doc-label {
    color: #ffffff !important;
}

body.marine-dark span.badge-pending {
    background: linear-gradient(231deg, #5dc5b7, #37b2e1) !important;
    color: #1f2947 !important;
}

body.marine-dark .formation-body {
    background: linear-gradient(207deg, #16d5d554, #021727) !important;
    box-shadow: -2px 1px 4px 4px rgb(255 5 181 / 39%)!important;
}

body.marine-dark a.nav-btn.nav-btn--outline {
    background: linear-gradient(56deg, #040e20, #2e718b) !important;
}

body.marine-dark nav.nav.is-open {
	background: linear-gradient(204deg, #040e20d4, #2e718bc4) !important;
}

body.marine-dark .group-discount-tile.is-active {
    background: linear-gradient(207deg, #16d5d554, #9d1899) !important;
    box-shadow: -2px 1px 4px 4px rgb(255 5 181 / 39%);
}

body.marine-dark .calendar-cell.event-cell.hauturier {
    background: linear-gradient(207deg, #e55500b0, #eb1a05f2) !important;
    box-shadow: -1px 1px 10px 4px rgb(255 134 0 / 73%);
    border: #9b2525 1px solid;
}


body.marine-dark button.btn.btn-outline.btn-block {
    background: linear-gradient(5deg, #2cffff8f, #0760e5d6) !important;
    box-shadow: -2px 1px 20px 3px rgb(81 255 242 / 75%);
}

body.marine-dark .btn-call {
    background: linear-gradient(207deg, #16d5d554, #114dbb) !important;
    box-shadow: -2px 1px 4px 1px rgb(81 255 242 / 68%);
}

body.marine-dark button.calendar-nav.prev-month {
    color: aliceblue;
    background: linear-gradient(207deg, #16d5d554, #114dbb) !important;
    box-shadow: -2px 1px 4px 1px rgb(81 255 242 / 68%);
}

body.marine-dark button.to-top {
    color: aliceblue;
    background: linear-gradient(207deg, #16d5d554, #114dbb) !important;
    box-shadow: -2px 0px 2px 0px rgb(81 255 242 / 68%);
}

body.marine-dark .faq-body {
    color: aliceblue;
    background: linear-gradient(286deg, #40cbcb8a, #03324dd6) !important;
    box-shadow: -2px 1px 4px 1px rgb(81 255 242 / 68%);
}

body.marine-dark button.calendar-nav.next-month {
    background: #1b74b3;
    color: #ffffff;
    background: linear-gradient(164deg, #0effffbf, #ff44dfb3) !important;
    box-shadow: 1px 0px 9px 4px rgb(221 8 201 / 68%);
}

body.marine-dark .event-content svg {
    margin-bottom: -2px;
    width: 12px;
}

body.marine-dark .event-location {
    text-align: center;
    font-size: 10px;
}

body.marine-dark .calendar-cell.event-cell.navigation {
    background: linear-gradient(8deg, #000da330, #81ffd063) !important;
    box-shadow: -2px 1px 4px 1px rgb(81 255 242 / 48%);
}

body.marine-dark .calendar-cell.cotier {
    background: linear-gradient(228deg, #15ededc9, #0a4dc9) !important;
    box-shadow: -2px 1px 7px 4px rgb(81 255 242 / 68%) !important;
}

body.marine-dark .calendar-cell.fluvial {
    background: linear-gradient(229deg, #3be971c9, #03b300) !important;
    box-shadow: -2px 1px 7px 4px rgb(87 201 62 / 77%) !important;
}


body.marine-dark a.btn-mon-panier {
    background: linear-gradient(207deg, #16d5d554, #34aec9) !important;
    box-shadow: -2px 1px 4px 4px rgb(87 255 243 / 39%);
}


body.marine-dark button.qty-btn.plus {
    background: linear-gradient(207deg, #16d5d554, #29ff92) !important;
    box-shadow: -2px 1px 12px 2px rgb(53 247 116 / 39%);
}

body.marine-dark button.qty-btn {
    background: #0c6ca7;
}

body.marine-dark button#pay-btn {
    background: linear-gradient(27deg, #16d5d554, #47ffee) !important;
    box-shadow: -2px 1px 4px 3px rgb(87 255 243 / 39%);
}

body.marine-dark aside.info-box {
    background: linear-gradient(73deg, #16d5d554, #47ffeeb5) !important;
    box-shadow: -2px 1px 4px 3px rgb(87 255 243 / 39%);
}

body.marine-dark .group-discount-tile {
    background: linear-gradient(297deg, #040e20, #2e718b) !important;
    box-shadow: 1px 0px 9px 4px rgb(39 227 218 / 55%);
}

body.marine-dark .insc-doc-hint {
    color: #97ffed;
}

body.marine-dark .promo-badge {
    box-shadow: 1px 0px 9px 4px rgb(39 227 218 / 55%);
}

body.marine-dark #tarifs .selection-card .cart-item.active {
    background: #0c6ca7;
    box-shadow: 0 15px 35px rgb(109 246 255 / 30%);
}

body.marine-dark button.insc-close {
    background: linear-gradient(42deg, #4ae6ff, #0374c5) !important;
    color: antiquewhite;
}

body.marine-dark label#zone-photo {
    background: linear-gradient(42deg, #11222f, #0374c5) !important;
    color: aliceblue;
}

body.marine-dark button#step2-back {
    color: aliceblue;
}

body.marine-dark .insc-upload-zone {
    background: linear-gradient(231deg, #5dc5b7, #0a6f95) !important;
}

body.marine-dark .insc-doc-header {
    background: linear-gradient(252deg, #20497d, #0374c5) !important;
}


body.marine-dark .insc-step-footer {

    border-top: 1px solid #54ffc9;
}

body.marine-dark button#step1-next {
    background: linear-gradient(170deg, #27c7a2, #0a263b) !important;
    color: #fff;
}

body.marine-dark .insc-formation-btn {
    border: 2px solid #49a5a0 !important;
}
body.marine-dark .insc-header {
 
    border-bottom: 1px solid #071d43 !important;
}

body.marine-dark div#insc-progress {
    background: #15ffcb !important;
}

body.marine-dark .insc-progress-track {
    background: #134361 !important;
}

body.marine-dark .insc-header {
    background: linear-gradient(357deg, #11222f, #0374c5) !important;
}

body.marine-dark div#insc-subtitle {
    color: #61fff2;
}

body.marine-dark .insc-title {
    color: aliceblue;
}

body.marine-dark button.insc-formation-btn {
    background: linear-gradient(196deg, #11222f, #0374c5) !important;
}

body.marine-dark .calendar-wrapper {
    background: linear-gradient(63deg, #11222f, #0374c5) !important;
}

body.marine-dark .insc-modal {
    background: linear-gradient(90deg, #11222f, #0374c5) !important;
}

body.marine-dark #tarifs .selection-card {
    background: linear-gradient(242deg, #11222f, #0374c5) !important;
}

body.marine-dark .recap-card {
    background: linear-gradient(42deg, #11222f, #0374c5) !important;
}

body.marine-dark .formation-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.marine-dark button.to-top {
    background: #2d5b82;
    color: aliceblue;
}

body.marine-dark .calendar-cell {
    background: #06223b;
}

body.marine-dark .calendar-day-label {
    color: aliceblue;
}

body.marine-dark button.calendar-nav.prev-month {
    background: #1b74b3;
}

body.marine-dark button.calendar-nav.next-month {
    background: #1b74b3;
}

body.marine-dark label {
    color: aliceblue;
}

body.marine-dark #tarifs.cart-v11 {
    padding: 80px 0;
    background: #12325d;
}

body.marine-dark .faq-cta {
    background: #122245;
}

body.marine-dark .insc-card {
    background: #01344f;
}

body.marine-dark .nav a {
    color: aliceblue;
}


body.marine-dark .btn-primary {
  background: #0369a1;
  box-shadow: 0 0 12px rgba(56,189,248,.3);
}
body.marine-dark .btn-primary:hover {
  background: #0284c7;
  box-shadow: 0 0 20px rgba(56,189,248,.5);
}

body.marine-dark .nav-link {
  color: #93c5fd !important;
}
body.marine-dark .nav-link:hover,
body.marine-dark .nav-link.active {
  color: #38bdf8 !important;
}

/* Vague animée en fond mode marin */
body.marine-dark::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 110%, rgba(14,145,250,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 20% 80%, rgba(56,189,248,.05) 0%, transparent 60%);
  animation: marine-glow 8s ease-in-out infinite alternate;
}
@keyframes marine-glow {
  from { opacity: .6; }
  to   { opacity: 1; }
}
