/* ═══════════════════════════════════════════════
   STOCKAGE JLS – Feuille de style principale
   Palette : bleu marine #5b9ec9 · bleu moyen #4a7fc1 · blanc · gris clair
   ═══════════════════════════════════════════════ */

:root {
  --navy:       #5b9ec9;
  --navy-dark:  #4a8aab;
  --blue:       #5b9ec9;
  --blue-mid:   #5b9ec9;
  --blue-light: #6b9fd4;
  --sky:        #e8f2fc;
  --sky2:       #d0e6f7;
  --white:      #ffffff;
  --off-white:  #f4f8fd;
  --text:       #1a2f5a;
  --muted:      #6b82a0;
  --border:     #c8ddef;
  --green:      #1a9e5c;
  --green-bg:   #e6f7f0;
  --red:        #c0392b;
  --red-bg:     #fdecea;
  --yellow:     #c87a0a;
  --yellow-bg:  #fef4e0;
  --shadow-s:   0 2px 12px rgba(26,47,90,.08);
  --shadow-m:   0 4px 24px rgba(26,47,90,.12);
  --shadow-l:   0 8px 40px rgba(26,47,90,.16);
  --radius:     14px;
  --radius-sm:  8px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:'Plus Jakarta Sans', Arial, sans-serif;
  background:var(--white);
  color:var(--text);
  font-size:15px;
  line-height:1.6;
}
img { display:block; max-width:100%; }
a  { color:var(--blue); text-decoration:none; }
a:hover { text-decoration:underline; }
strong { font-weight:700; }

/* ── BUTTONS ── */
.btn-primary {
  display:inline-block;
  background:var(--navy);
  color:var(--white);
  font-weight:700;
  font-size:.88rem;
  padding:13px 28px;
  border-radius:var(--radius-sm);
  border:none;
  cursor:pointer;
  transition:background .2s, transform .15s, box-shadow .2s;
  letter-spacing:.2px;
}
.btn-primary:hover {
  background:var(--blue-mid);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(26,47,90,.22);
  text-decoration:none;
}
.btn-outline {
  display:inline-block;
  background:transparent;
  color:var(--white);
  font-weight:700;
  font-size:.88rem;
  padding:12px 26px;
  border-radius:var(--radius-sm);
  border:2px solid rgba(255,255,255,.7);
  cursor:pointer;
  transition:all .2s;
}
.btn-outline:hover {
  background:rgba(255,255,255,.15);
  text-decoration:none;
}
.btn-unavailable {
  display:inline-block;
  background:var(--red-bg);
  color:var(--red);
  font-weight:700;
  font-size:.82rem;
  padding:10px 20px;
  border-radius:var(--radius-sm);
  border:1px solid var(--red);
  cursor:default;
  margin-top:4px;
}

/* ── HEADER ── */
header {
  background:var(--sky);
  border-bottom:1px solid var(--border);
  padding:16px 24px;
}
.header-inner {
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.logo-main {
  display:block;
  font-size:1.55rem;
  font-weight:300;
  color:var(--navy);
  letter-spacing:-.5px;
}
.logo-main strong { font-weight:800; }
.logo-sub {
  display:block;
  font-size:.72rem;
  color:var(--muted);
  font-weight:500;
  margin-top:1px;
}
.header-contact { display:flex; gap:12px; flex-wrap:wrap; }
.hc-phone {
  display:inline-block;
  background:var(--navy);
  color:var(--white);
  font-size:.78rem;
  font-weight:700;
  padding:7px 14px;
  border-radius:20px;
  transition:background .2s;
}
.hc-phone:hover { background:var(--blue-mid); text-decoration:none; }

/* ── NAV ── */
nav {
  background:var(--blue);
  position:sticky;
  top:0;
  z-index:100;
  transition:box-shadow .3s;
}
nav.scrolled { box-shadow:0 4px 20px rgba(26,47,90,.2); }
.nav-inner {
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}
nav a {
  color:rgba(255,255,255,.9);
  font-weight:600;
  font-size:.85rem;
  padding:14px 22px;
  display:inline-block;
  transition:background .2s;
  letter-spacing:.2px;
}
nav a:hover, nav a.active {
  background:rgba(255,255,255,.15);
  color:var(--white);
  text-decoration:none;
}

/* ── HERO ── */
.hero {
  position:relative;
  min-height:480px;
  display:flex;
  align-items:center;
}
.hero-img-wrap {
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-img-wrap img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(20,35,70,.80) 0%, rgba(100,55,20,.45) 100%);
}
.hero-content {
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  padding:80px 28px;
  color:var(--white);
}
.hero-badge {
  display:inline-block;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  backdrop-filter:blur(4px);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:5px 14px;
  border-radius:20px;
  margin-bottom:18px;
}
.hero-content h1 {
  font-size:clamp(2rem,5vw,3.2rem);
  font-weight:800;
  line-height:1.1;
  margin-bottom:14px;
  color:var(--white);
}
.hero-content h1 span { color: #f5c87a; }
.hero-content p {
  font-size:1.05rem;
  opacity:.88;
  margin-bottom:28px;
  max-width:480px;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; }

/* ── FEATURES STRIP ── */
.features-strip {
  background: linear-gradient(135deg, #c17f3a 0%, #a0622a 50%, #7a4820 100%);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.features-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
}
.features-inner {
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
  gap:20px;
}
.feat {
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--white);
}
.feat-icon {
  width:42px; height:42px;
  background:rgba(255,255,255,.12);
  border-radius:10px;
  padding:8px;
  flex-shrink:0;
  filter:brightness(0) invert(1);
}
.feat-title { font-weight:700; font-size:.9rem; }
.feat-desc  { font-size:.75rem; opacity:.7; margin-top:2px; }

/* ── SECTIONS ── */
.section { padding:72px 24px; }
.section.bg-light { background:var(--off-white); }
.section-inner { max-width:1100px; margin:0 auto; }
.section-header { text-align:center; margin-bottom:48px; }
.section-header h2 {
  font-size:clamp(1.6rem,4vw,2.2rem);
  font-weight:800;
  color:var(--navy);
  margin-bottom:10px;
}
.section-header h2::after {
  content:'';
  display:block;
  width:48px; height:3px;
  background:var(--blue);
  border-radius:2px;
  margin:10px auto 0;
}
.section-header p { color:var(--muted); font-size:.95rem; max-width:520px; margin:0 auto; }

/* ── OFFER BLOCKS ── */
.offer-block {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  margin-bottom:64px;
  padding-bottom:64px;
  border-bottom:1px solid var(--border);
}
.offer-block:last-child { margin:0; padding:0; border:none; }
.offer-block.reverse { direction:rtl; }
.offer-block.reverse > * { direction:ltr; }
.offer-photos {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.offer-photos img {
  border-radius:var(--radius);
  height:200px;
  object-fit:cover;
  width:100%;
  box-shadow:var(--shadow-m);
  transition:transform .3s;
}
.offer-photos img:hover { transform:scale(1.02); }
.offer-tag {
  display:inline-block;
  background:var(--sky);
  color:var(--blue-mid);
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  padding:4px 12px;
  border-radius:20px;
  margin-bottom:10px;
}
.offer-info h3 {
  font-size:1.7rem;
  font-weight:800;
  color:var(--navy);
  margin-bottom:8px;
}
.offer-desc { color:var(--muted); font-size:.88rem; margin-bottom:14px; }
.offer-price {
  font-size:2.2rem;
  font-weight:800;
  color:var(--navy);
  margin-bottom:16px;
}
.offer-price span { font-size:.9rem; font-weight:500; color:var(--muted); }
.offer-units {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:20px;
}
.unit-pill {
  font-size:.72rem;
  font-weight:700;
  padding:4px 12px;
  border-radius:20px;
  letter-spacing:.3px;
}
.unit-pill.available { background:var(--green-bg); color:var(--green); border:1px solid var(--green); }
.unit-pill.reserved  { background:var(--red-bg);   color:var(--red);   border:1px solid var(--red); }
.unit-pill.pending   { background:var(--yellow-bg);color:var(--yellow);border:1px solid var(--yellow); }

/* ── BOOKING LAYOUT ── */
.booking-layout {
  display:grid;
  grid-template-columns:1fr 340px;
  gap:24px;
  align-items:start;
}
.booking-left { display:flex; flex-direction:column; gap:20px; }
.bk-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow-s);
}
.bk-step-label {
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--muted);
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
}
.bk-step-label::after {
  content:'';
  flex:1; height:1px;
  background:var(--border);
}
.bk-num {
  width:24px; height:24px;
  background:var(--navy);
  color:var(--white);
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.72rem;
  font-weight:700;
  flex-shrink:0;
}

/* ── CONTAINER ROWS ── */
.containers-list { display:flex; flex-direction:column; gap:8px; }
.c-row {
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px 16px;
  border:2px solid var(--border);
  border-radius:10px;
  cursor:pointer;
  transition:all .15s;
  background:var(--white);
  position:relative;
}
.c-row:hover:not(.reserved) {
  border-color:var(--blue);
  box-shadow:0 2px 10px rgba(74,127,193,.12);
}
.c-row.selected {
  border-color:var(--navy);
  background:var(--sky);
  box-shadow:0 2px 14px rgba(26,47,90,.12);
}
.c-row.reserved { opacity:.55; cursor:not-allowed; }
.c-row-left { flex:1; min-width:0; }
.c-row-name { font-weight:700; font-size:.92rem; color:var(--navy); }
.c-row-info { font-size:.72rem; color:var(--muted); margin-top:1px; }
.c-row-right { text-align:right; flex-shrink:0; }
.c-row-price { font-size:.9rem; font-weight:800; color:var(--navy); }
.c-row-price small { font-weight:400; font-size:.65rem; color:var(--muted); }
.c-badge {
  display:inline-block;
  font-size:.62rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.4px;
  padding:2px 8px;
  border-radius:20px;
  margin-top:3px;
}
.c-badge.available { background:var(--green-bg); color:var(--green); }
.c-badge.reserved  { background:var(--red-bg);   color:var(--red); }
.c-badge.pending   { background:var(--yellow-bg); color:var(--yellow); }
.c-check-dot {
  width:22px; height:22px;
  background:var(--navy);
  color:var(--white);
  border-radius:50%;
  display:none;
  align-items:center;
  justify-content:center;
  font-size:.65rem;
  font-weight:700;
  flex-shrink:0;
}
.c-row.selected .c-check-dot { display:flex; }

/* ── CALENDAR ── */
.cal-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}
.cal-month-title { font-weight:700; font-size:.95rem; color:var(--navy); text-transform:capitalize; }
.cal-nav-btn {
  background:var(--sky);
  border:1px solid var(--border);
  color:var(--navy);
  width:32px; height:32px;
  border-radius:var(--radius-sm);
  cursor:pointer;
  font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  transition:all .15s;
}
.cal-nav-btn:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }
.cal-grid {
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:3px;
}
.cal-dn {
  text-align:center;
  font-size:.6rem;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:4px 0 8px;
}
.cal-d {
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:7px;
  font-size:.78rem;
  font-weight:500;
  cursor:pointer;
  transition:all .12s;
  border:1px solid transparent;
}
.cal-d.empty { cursor:default; }
.cal-d.past  { color:#bbb; cursor:not-allowed; }
.cal-d.avail:hover { background:var(--sky2); border-color:var(--blue-light); }
.cal-d.today { border-color:var(--blue); color:var(--blue); font-weight:700; }
.cal-d.sel-s, .cal-d.sel-e {
  background:var(--navy) !important;
  color:var(--white) !important;
  font-weight:700;
  border-color:var(--navy) !important;
}
.cal-d.in-range { background:var(--sky); color:var(--blue-mid); }
.cal-legend {
  display:flex; gap:14px; flex-wrap:wrap; margin-top:14px;
}
.leg-item {
  display:flex; align-items:center; gap:6px;
  font-size:.7rem; color:var(--muted);
}
.leg-dot {
  width:10px; height:10px; border-radius:3px;
}
.leg-dot.sel   { background:var(--navy); }
.leg-dot.range { background:var(--sky2); border:1px solid var(--blue-light); }
.leg-dot.blk   { background:var(--red-bg); border:1px solid var(--red); }

/* ── FORM ── */
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field { display:flex; flex-direction:column; }
.field label {
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--muted);
  margin-bottom:6px;
}
.field input, .field textarea {
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  padding:11px 13px;
  font-family:inherit;
  font-size:.88rem;
  color:var(--text);
  background:var(--white);
  outline:none;
  transition:border-color .2s, box-shadow .2s;
  width:100%;
}
.field input:focus, .field textarea:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(74,127,193,.1);
}
.field textarea { resize:vertical; min-height:110px; }

/* ── RECAP ── */
.booking-right { display:flex; flex-direction:column; gap:16px; position:sticky; top:80px; }
.recap-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow-s);
}
.recap-title {
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--muted);
  margin-bottom:16px;
}
.recap-empty {
  text-align:center;
  color:var(--muted);
  font-size:.82rem;
  line-height:1.7;
  padding:18px 0;
}
.recap-row {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  font-size:.82rem;
  padding:7px 0;
  border-bottom:1px solid var(--sky);
  gap:8px;
  color:var(--muted);
}
.recap-row span:last-child { font-weight:600; color:var(--text); text-align:right; }
.recap-total {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:var(--sky);
  border-radius:var(--radius-sm);
  padding:12px 14px;
  margin:14px 0 6px;
}
.recap-total span:first-child { font-weight:700; font-size:.85rem; }
.recap-total span:last-child  { font-size:1.2rem; font-weight:800; color:var(--navy); }
.recap-note { font-size:.67rem; color:var(--muted); margin-bottom:14px; }
.btn-confirm {
  width:100%;
  background:var(--navy);
  color:var(--white);
  border:none;
  border-radius:10px;
  padding:14px;
  font-family:inherit;
  font-size:.88rem;
  font-weight:700;
  cursor:pointer;
  transition:all .2s;
  letter-spacing:.2px;
}
.btn-confirm:hover:not(:disabled) {
  background:var(--blue-mid);
  box-shadow:0 4px 16px rgba(26,47,90,.22);
  transform:translateY(-1px);
}
.btn-confirm:disabled {
  background:var(--border);
  color:var(--muted);
  cursor:not-allowed;
}
.confirm-note {
  text-align:center;
  font-size:.68rem;
  color:var(--muted);
  margin-top:10px;
}

.info-card {
  background:var(--navy);
  border-radius:var(--radius);
  padding:20px;
  color:var(--white);
}
.info-card-title {
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  opacity:.6;
  margin-bottom:14px;
}
.how-step {
  display:flex; gap:12px;
  align-items:flex-start;
  margin-bottom:10px;
  font-size:.82rem;
  opacity:.88;
  line-height:1.5;
}
.how-step:last-child { margin:0; }
.how-n {
  width:22px; height:22px;
  background:rgba(255,255,255,.15);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.68rem; font-weight:700;
  flex-shrink:0; margin-top:2px;
}
.tel-card {
  background:var(--sky);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  font-size:.8rem;
  color:var(--muted);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.tel-card a {
  font-weight:700;
  color:var(--navy);
  font-size:.95rem;
}

/* ── MAP ── */
.map-wrap {
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-m);
  border:1px solid var(--border);
}
.map-wrap iframe {
  width:100%; height:420px; border:0; display:block;
}

/* ── CONTACT ── */
.contact-layout {
  display:grid;
  grid-template-columns:1fr 320px;
  gap:32px;
  align-items:start;
}
.contact-form {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow-s);
  display:flex;
  flex-direction:column;
  gap:16px;
}
.contact-infos { display:flex; flex-direction:column; gap:16px; }
.ci-block {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  box-shadow:var(--shadow-s);
}
.ci-icon { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.ci-label { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--muted); margin-bottom:4px; }
.ci-val { font-size:.88rem; font-weight:600; color:var(--navy); line-height:1.6; }
.ci-val a { color:var(--blue); }

/* ── FOOTER ── */
footer {
  background:var(--navy);
  color:rgba(255,255,255,.8);
  padding:40px 24px;
}
.footer-inner {
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-logo {
  font-size:1.4rem;
  font-weight:300;
  color:var(--white);
}
.footer-logo strong { font-weight:800; }
.footer-info { text-align:center; font-size:.8rem; line-height:1.8; }
.footer-legal { text-align:right; font-size:.72rem; opacity:.6; line-height:1.8; }

/* ── MODAL ── */
.overlay {
  display:none;
  position:fixed; inset:0;
  background:rgba(10,20,50,.6);
  backdrop-filter:blur(6px);
  z-index:500;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.overlay.show { display:flex; }
.modal {
  background:var(--white);
  border-radius:20px;
  padding:36px 28px;
  max-width:400px;
  width:100%;
  text-align:center;
  box-shadow:var(--shadow-l);
  animation:popIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { opacity:0; transform:scale(.88); }
  to   { opacity:1; transform:scale(1); }
}
.modal-icon {
  width:68px; height:68px;
  background:var(--green-bg);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
  font-size:1.8rem;
}
.modal h3 { font-size:1.25rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.modal p  { color:var(--muted); font-size:.85rem; line-height:1.65; margin-bottom:16px; }
.modal-ref {
  background:var(--sky);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:10px 16px;
  font-family:monospace;
  font-size:.92rem;
  font-weight:700;
  color:var(--navy);
  letter-spacing:1px;
  margin-bottom:16px;
}
.modal-det {
  text-align:left;
  background:var(--off-white);
  border-radius:var(--radius-sm);
  padding:14px;
  margin-bottom:20px;
  font-size:.8rem;
}
.modal-row {
  display:flex;
  justify-content:space-between;
  padding:5px 0;
  border-bottom:1px solid var(--border);
  color:var(--muted);
}
.modal-row:last-child { border:none; }
.modal-row span:last-child { font-weight:700; color:var(--navy); }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .offer-block, .offer-block.reverse {
    grid-template-columns:1fr;
    direction:ltr;
  }
  .offer-photos { grid-template-columns:1fr 1fr; }
  .booking-layout { grid-template-columns:1fr; }
  .booking-right { position:static; }
  .contact-layout { grid-template-columns:1fr; }
  .footer-inner  { grid-template-columns:1fr; text-align:center; }
  .footer-legal  { text-align:center; }
}
@media(max-width:600px){
  .form-grid { grid-template-columns:1fr; }
  .hero-content h1 { font-size:1.8rem; }
  .features-inner { grid-template-columns:1fr 1fr; }
  .offer-photos { grid-template-columns:1fr; }
  .offer-photos img { height:180px; }
  header { padding:14px 16px; }
  .section { padding:48px 16px; }
}

/* ═══════════════════════════════════
   AJOUTS — v2
   ═══════════════════════════════════ */

/* DISPO BARS */
.dispo-bar { margin:14px 0 20px; }
.dispo-label { font-size:.75rem; font-weight:600; color:var(--muted); margin-bottom:7px; }
.dispo-dots { display:flex; gap:5px; flex-wrap:wrap; }
.dispo-dot { width:22px; height:22px; border-radius:5px; border:1.5px solid; }
.dispo-dot.free  { background:var(--green-bg); border-color:var(--green); }
.dispo-dot.taken { background:var(--red-bg);   border-color:var(--red); }

.complet-badge {
  display:inline-block;
  background:var(--red-bg);
  color:var(--red);
  font-size:.82rem;
  font-weight:700;
  padding:10px 18px;
  border-radius:var(--radius-sm);
  border:1px solid var(--red);
  margin-top:4px;
}
.offer-tag-full { background:var(--red-bg) !important; color:var(--red) !important; }

/* SIZE CHOICE */
.size-choice { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.size-btn {
  border:2px solid var(--border);
  border-radius:12px;
  padding:16px;
  cursor:pointer;
  transition:all .2s;
  background:var(--white);
  position:relative;
}
.size-btn:hover:not(.disabled) {
  border-color:var(--blue);
  box-shadow:0 2px 12px rgba(74,127,193,.12);
}
.size-btn.selected {
  border-color:var(--navy);
  background:var(--sky);
  box-shadow:0 2px 16px rgba(26,47,90,.12);
}
.size-btn.disabled { opacity:.5; cursor:not-allowed; }
.size-btn-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:5px; }
.size-label { font-weight:700; font-size:.9rem; color:var(--navy); }
.size-price { font-weight:800; font-size:1rem; color:var(--navy); }
.size-price small { font-weight:400; font-size:.65rem; color:var(--muted); }
.size-detail { font-size:.72rem; color:var(--muted); margin-bottom:8px; }
.size-dispo { font-size:.72rem; font-weight:700; }
.sdispo.free  { color:var(--green); }
.sdispo.full  { color:var(--red); }
.size-dispo.complet { color:var(--red); font-size:.72rem; font-weight:700; }

/* MONTH PICKER */
.month-picker { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field input[type="month"], .field select {
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  padding:11px 13px;
  font-family:inherit;
  font-size:.88rem;
  color:var(--text);
  background:var(--white);
  outline:none;
  width:100%;
  transition:border-color .2s;
}
.field input[type="month"]:focus, .field select:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(74,127,193,.1);
}
.month-summary {
  margin-top:14px;
  background:var(--sky);
  border-radius:var(--radius-sm);
  padding:10px 14px;
  font-size:.82rem;
  color:var(--navy);
  border:1px solid var(--border);
}

/* CONTACT FORM WRAP */
.contact-form-wrap { display:flex; flex-direction:column; gap:16px; }

@media(max-width:500px){
  .size-choice { grid-template-columns:1fr; }
  .month-picker { grid-template-columns:1fr; }
}

/* ═══ AJOUTS v3 ═══ */
.offer-photos.single img {
  grid-column: 1 / -1;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

/* Nouvelles cartes taille simplifiées */
.size-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.size-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.size-vol {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.sdispo {
  font-size: .75rem;
  font-weight: 700;
}
.sdispo.free  { color: var(--green); }
.sdispo.complet { color: var(--red); }

/* Logo cliquable */
a.header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity .2s;
}
a.header-logo:hover { opacity: .8; }
a.header-logo .logo-main,
a.header-logo .logo-sub { display: block; }

/* Emoji icons */
.feat-emoji {
  font-size: 1.6rem;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ═══ AJOUTS v4 ═══ */

/* Info card bleu clair */
.info-card {
  background: var(--sky) !important;
  border: 1px solid var(--border) !important;
  color: var(--navy) !important;
}
.info-card-title { color: var(--muted) !important; }
.how-step { color: var(--navy) !important; opacity: 1 !important; }
.how-n { background: var(--navy) !important; color: white !important; }

/* Calendrier déroulant */
.cal-dropdown-wrap { position: relative; }
.cal-dropdown-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  cursor: pointer;
  background: white;
  font-size: .88rem;
  color: var(--muted);
  transition: border-color .2s;
  user-select: none;
}
.cal-dropdown-trigger:hover { border-color: var(--blue); }
.cal-arrow { font-size: .7rem; color: var(--muted); }
.cal-dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  z-index: 50;
  padding: 14px;
}
.cal-drop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.cal-drop-nav button {
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.cal-drop-nav button:hover { background: var(--navy); color: white; }
.cal-drop-months {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.cal-drop-month {
  text-align: center;
  padding: 8px 4px;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .15s;
  color: var(--navy);
}
.cal-drop-month:hover:not(.past) {
  background: var(--sky2);
  border-color: var(--blue-light);
}
.cal-drop-month.selected {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.cal-drop-month.past {
  color: #ccc;
  cursor: not-allowed;
}

/* ═══ SEO LOCAL ═══ */
.seo-local {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.seo-local-inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-local h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
}
.seo-local h2::after { display: none; }
.seo-local p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: center;
}
.seo-local strong { color: var(--navy); }
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.seo-tags span {
  background: var(--sky);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .72rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ═══ RÉCHAUFFEMENT GLOBAL v5 ═══ */

/* Emoji icons dans le bandeau chaud */
.feat-emoji {
  background: rgba(255,255,255,.15) !important;
}

/* Bouton primaire — teinte chaude */
.btn-primary {
  background: #5b9ec9;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c17f3a 0%, #a0622a 100%) !important;
  box-shadow: 0 6px 20px rgba(160,98,42,.35) !important;
}

/* Header — légèrement plus chaud */
header {
  background: linear-gradient(135deg, #e8f2fc 0%, #f5ede0 100%) !important;
}

/* Nav — garder bleu mais légèrement plus chaud */
nav { background: #5b9ec9 !important; }

/* Section header underline chaud */
.section-header h2::after {
  background: linear-gradient(90deg, #c17f3a, #e8a84e) !important;
}

/* Footer chaud */
footer {
  background: linear-gradient(135deg, #5b9ec9 0%, #2d1f0e 100%) !important;
}

/* Récap total chaud */
.recap-total {
  background: linear-gradient(135deg, #fef4e0 0%, #fde8c0 100%) !important;
  border: 1px solid #e8c07a !important;
}
.recap-total span:last-child { color: #a0622a !important; }

/* Offre tag chaud */
.offer-tag {
  background: #fef4e0 !important;
  color: #a0622a !important;
}

/* SEO tags */
.seo-tags span {
  background: #fef4e0 !important;
  border-color: #e8c07a !important;
  color: #a0622a !important;
}

/* Logo plus grand */
.logo-main { font-size: 2rem !important; }
.logo-sub   { font-size: .85rem !important; color: #6b82a0; }

/* ═══ CORRECTIONS v6 ═══ */

/* Bandeau features — bleu marine profond avec accent chaud subtil */
.features-strip {
  background: linear-gradient(90deg, #5b9ec9 0%, #e8920a 100%) !important;
  padding: 36px 24px !important;
}
.features-strip::before { display: none !important; }

/* Icônes emojis — fond chaud subtil au lieu du marron */
.feat-emoji {
  font-size: 1.8rem !important;
  width: 52px !important; height: 52px !important;
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 12px !important;
  flex-shrink: 0 !important;
}

/* Plus grand et plus espacé */
.features-inner {
  gap: 36px !important;
}
.feat { gap: 18px !important; }
.feat-title { font-size: 1rem !important; }
.feat-desc  { font-size: .82rem !important; opacity: .8 !important; }

/* Nav — bleu cohérent */
nav { background: #5b9ec9 !important; }

/* ═══ SIZE BUTTONS PLUS FONCÉS v7 ═══ */
.size-btn {
  background: var(--sky) !important;
  border: 2px solid var(--border) !important;
}
.size-btn:hover:not(.disabled) {
  background: var(--sky2) !important;
  border-color: var(--blue) !important;
}
.size-btn.selected {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}
.size-btn.selected .size-name,
.size-btn.selected .size-price,
.size-btn.selected .size-vol { color: white !important; }
.size-btn.selected .size-price small { color: rgba(255,255,255,.7) !important; }
.size-btn.selected .sdispo.free { color: #7effc0 !important; }

/* ═══ TITRES SECTIONS — bleu vif ═══ */
.section-header h2 { color: #d4780a !important; }
.seo-local h2 { color: #d4780a !important; }

/* ═══ COULEURS FINALES ═══ */
.section-header h2 { color: #d4780a !important; }
.seo-local h2 { color: #d4780a !important; }
.offer-info h3 { color: #d4780a !important; }
.offer-price { color: #d4780a !important; }

/* ═══ MOBILE OPTIMISATION ═══ */
@media(max-width:768px){
  .header-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .header-contact { width: 100%; justify-content: flex-start; }
  .hc-phone { font-size: .72rem; padding: 6px 12px; }
  .logo-main { font-size: 1.6rem !important; }
  .logo-sub { font-size: .75rem !important; }
  header svg { width: 42px !important; height: 42px !important; }

  nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nav-inner { justify-content: flex-start; flex-wrap: nowrap; min-width: max-content; }
  nav a { padding: 12px 16px; font-size: .8rem; white-space: nowrap; }

  .hero { min-height: 360px; }
  .hero-content { padding: 50px 18px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content p { font-size: .92rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; font-size: .9rem; }

  .features-strip { padding: 20px 16px !important; }
  .features-inner { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .feat-title { font-size: .82rem !important; }
  .feat-desc { font-size: .7rem !important; }

  .offer-block { gap: 24px; padding-bottom: 40px; margin-bottom: 40px; }
  .offer-info h3 { font-size: 1.3rem; }
  .offer-price { font-size: 1.8rem; }

  .section { padding: 48px 16px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header { margin-bottom: 32px; }

  .booking-layout { grid-template-columns: 1fr; }
  .booking-right { position: static; }
  .size-choice { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .month-picker { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-legal { text-align: center; }

  .map-wrap iframe { height: 280px; }
}

@media(max-width:480px){
  .features-inner { grid-template-columns: 1fr !important; }
  .size-choice { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.45rem; }
}

/* ═══ BANNIÈRE COOKIES ═══ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a2a3a;
  color: rgba(255,255,255,.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: .82rem;
  line-height: 1.5;
}
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: #5b9ec9; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-accept {
  background: #5b9ec9;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: #4a8aab; }
.cookie-btn-refuse {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.cookie-btn-refuse:hover { border-color: rgba(255,255,255,.6); color: #fff; }
@media(max-width:600px){
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-refuse { flex: 1; text-align: center; }
}
