/* =============================================
   WP Location Salles – Frontend CSS v1.1
   ============================================= */

/* Variables */
:root {
  --wlb-blue:       #1d4ed8;
  --wlb-blue-light: #dbeafe;
  --wlb-blue-hover: #1e40af;
  --wlb-green:      #16a34a;
  --wlb-red:        #dc2626;
  --wlb-orange:     #d97706;
  --wlb-gray-50:    #f8fafc;
  --wlb-gray-100:   #f1f5f9;
  --wlb-gray-200:   #e2e8f0;
  --wlb-gray-400:   #94a3b8;
  --wlb-gray-600:   #475569;
  --wlb-gray-800:   #1e293b;
  --wlb-radius:     10px;
  --wlb-shadow:     0 2px 16px rgba(0,0,0,.08);
}

/* ────────────────────────────────────────────
   LISTING DE SALLES
──────────────────────────────────────────── */
.wlb-listing {
  display: grid;
  gap: 24px;
  margin: 24px 0;
}
.wlb-cols-1 { grid-template-columns: 1fr; }
.wlb-cols-2 { grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); }
.wlb-cols-3 { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
.wlb-cols-4 { grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); }

.wlb-card {
  background: #fff;
  border: 1px solid var(--wlb-gray-200);
  border-radius: var(--wlb-radius);
  overflow: hidden;
  box-shadow: var(--wlb-shadow);
  transition: transform .18s, box-shadow .18s;
}
.wlb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
}
.wlb-card-img-wrap { display: block; position: relative; overflow: hidden; }
.wlb-card-img { display: block; width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
.wlb-card:hover .wlb-card-img { transform: scale(1.04); }
.wlb-no-img { height: 200px; background: var(--wlb-gray-100); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.wlb-badge { position: absolute; top: 10px; left: 10px; background: var(--wlb-blue); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.wlb-card-body { padding: 16px 18px 20px; }
.wlb-card-title { margin: 0 0 8px; font-size: 1.05rem; }
.wlb-card-title a { color: var(--wlb-gray-800); text-decoration: none; }
.wlb-card-title a:hover { color: var(--wlb-blue); }
.wlb-card-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: .83rem; color: var(--wlb-gray-600); margin-bottom: 10px; }
.wlb-card-price { font-size: .9rem; color: var(--wlb-gray-600); margin-bottom: 14px; }
.wlb-card-price strong { font-size: 1.15rem; color: var(--wlb-gray-800); }
.wlb-card-btn { display: inline-block; padding: 8px 18px; background: var(--wlb-blue); color: #fff !important; text-decoration: none; border-radius: 7px; font-size: .88rem; font-weight: 600; transition: background .18s; }
.wlb-card-btn:hover { background: var(--wlb-blue-hover); }

/* ────────────────────────────────────────────
   FICHE SALLE
──────────────────────────────────────────── */
.wlb-single { margin: 20px 0; }
.wlb-galerie { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 8px; margin-bottom: 24px; }
.wlb-galerie img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; }
.wlb-single-layout { display: flex; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.wlb-single-info { flex: 1 1 380px; }
.wlb-single-cal  { flex: 0 0 360px; }
.wlb-adresse { color: var(--wlb-gray-600); font-size: .95rem; margin-bottom: 16px; }
.wlb-specs { display: flex; gap: 12px; flex-wrap: wrap; background: var(--wlb-gray-50); border: 1px solid var(--wlb-gray-200); border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; }
.wlb-spec { flex: 1 1 80px; text-align: center; }
.wlb-spec-ico { font-size: 1.3rem; display: block; margin-bottom: 2px; }
.wlb-spec strong { display: block; font-size: 1rem; color: var(--wlb-gray-800); }
.wlb-spec span { font-size: .75rem; color: var(--wlb-gray-600); }
.wlb-equip h4, .wlb-reglement h4 { margin: 20px 0 8px; font-size: 1rem; color: var(--wlb-gray-800); border-bottom: 1px solid var(--wlb-gray-200); padding-bottom: 6px; }
.wlb-equip ul { list-style: none; padding: 0; columns: 2; }
.wlb-equip li { padding: 4px 0; font-size: .9rem; color: var(--wlb-gray-600); }
.wlb-equip li::before { content: "✓ "; color: var(--wlb-green); font-weight: 700; }
.wlb-reglement { background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 12px 16px; font-size: .88rem; color: #78350f; }

/* ────────────────────────────────────────────
   CALENDRIER – WRAPPER
──────────────────────────────────────────── */
.wlb-wrap {
  background: #fff;
  border: 2px solid var(--wlb-gray-200);
  border-radius: var(--wlb-radius);
  padding: 18px 16px 16px;
  margin: 12px 0;
  font-family: inherit;
}

.wlb-cal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wlb-gray-200);
}
.wlb-cal-title { font-weight: 700; font-size: 1rem; color: var(--wlb-gray-800); }
.wlb-cal-hint  {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d4ed8;
  font-style: normal;
  letter-spacing: .01em;
  text-shadow: 0 1px 2px rgba(29,78,216,.08);
}

/* Navigation mois */
.wlb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.wlb-nav-btn {
  background: var(--wlb-gray-100);
  border: 1px solid var(--wlb-gray-200);
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--wlb-gray-800);
  transition: background .15s;
  display: none; /* Caché : on affiche tous les mois en même temps */
}

/* ────────────────────────────────────────────
   CALENDRIER – GRILLE DE MOIS
──────────────────────────────────────────── */
.wlb-months-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.wlb-month {
  flex: 0 0 auto;
  min-width: 252px;
}
.wlb-month-name {
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--wlb-gray-800);
  padding: 6px 0 12px;
  text-transform: capitalize;
}

/* Grille 7 colonnes */
.wlb-grid {
  display: grid;
  grid-template-columns: repeat(7, 36px);
  gap: 2px;
}
.wlb-dname {
  width: 36px;
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  color: var(--wlb-gray-400);
  text-transform: uppercase;
  padding: 0 0 6px;
}
.wlb-day {
  width: 36px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: .85rem;
  cursor: default;
  transition: background .12s, color .12s;
  box-sizing: border-box;
  user-select: none;
  position: relative;
}
.wlb-empty   { background: transparent !important; }
.wlb-past    { color: var(--wlb-gray-400) !important; cursor: not-allowed; }
.wlb-booked  { background: #fee2e2 !important; color: #b91c1c !important; cursor: not-allowed; font-size: .75rem; }
.wlb-booked::after  { content: "●"; position: absolute; bottom: 2px; font-size: .45rem; }
.wlb-blocked { background: #fef9c3 !important; color: #854d0e !important; cursor: not-allowed; font-size: .75rem; }
.wlb-blocked::after { content: "●"; position: absolute; bottom: 2px; font-size: .45rem; }

/* Jours disponibles */
.wlb-avail {
  color: var(--wlb-gray-800);
  cursor: pointer;
  border: 1px solid transparent;
}
.wlb-avail:hover {
  background: var(--wlb-blue-light) !important;
  color: var(--wlb-blue) !important;
  border-color: var(--wlb-blue);
}

/* Sélection */
.wlb-sel {
  background: var(--wlb-blue) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 6px;
}
.wlb-range {
  background: var(--wlb-blue-light) !important;
  color: var(--wlb-blue) !important;
  border-radius: 0;
}
.wlb-range-s {
  background: var(--wlb-blue) !important;
  color: #fff !important;
  border-radius: 6px 0 0 6px;
}
.wlb-range-e {
  background: var(--wlb-blue) !important;
  color: #fff !important;
  border-radius: 0 6px 6px 0;
}

/* ────────────────────────────────────────────
   LÉGENDE
──────────────────────────────────────────── */
.wlb-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 0 4px;
  font-size: .78rem;
  color: var(--wlb-gray-600);
  border-top: 1px solid var(--wlb-gray-200);
  margin-top: 12px;
}
.wlb-legend span { display: flex; align-items: center; gap: 5px; }
.wlb-dot { display: inline-block; width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.wlb-dot-avail   { background: var(--wlb-gray-100); border: 1px solid var(--wlb-gray-400); }
.wlb-dot-booked  { background: #fee2e2; }
.wlb-dot-blocked { background: #fef9c3; }
.wlb-dot-sel     { background: var(--wlb-blue); }

/* ────────────────────────────────────────────
   RÉSUMÉ SÉLECTION
──────────────────────────────────────────── */
.wlb-summary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--wlb-blue-light);
}
.wlb-summary-dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: var(--wlb-gray-50);
  border: 1px solid var(--wlb-gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.wlb-summary-box { text-align: center; flex: 1 1 80px; }
.wlb-summary-lbl { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--wlb-gray-600); margin-bottom: 2px; }
.wlb-summary-val { display: block; font-weight: 700; font-size: .95rem; color: var(--wlb-gray-800); }
.wlb-summary-arrow { font-size: 1.3rem; color: var(--wlb-gray-400); }

.wlb-btn-reserve {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--wlb-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .98rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
}
.wlb-btn-reserve:hover { background: var(--wlb-blue-hover); }

/* ────────────────────────────────────────────
   MODALE
──────────────────────────────────────────── */
.wlb-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.wlb-modal {
  background: #fff;
  border-radius: var(--wlb-radius);
  box-shadow: 0 12px 48px rgba(0,0,0,.2);
  padding: 28px 28px 24px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: wlbIn .22s ease;
}
@keyframes wlbIn {
  from { opacity:0; transform:translateY(-16px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.wlb-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 1.6rem; line-height: 1;
  cursor: pointer; color: var(--wlb-gray-400); padding: 0;
  transition: color .15s;
}
.wlb-close:hover { color: var(--wlb-gray-800); }
.wlb-modal-title { margin: 0 0 10px; font-size: 1.2rem; color: var(--wlb-gray-800); }
.wlb-modal-recap {
  background: var(--wlb-gray-50); border: 1px solid var(--wlb-gray-200);
  border-radius: 8px; padding: 10px 14px;
  font-size: .88rem; color: var(--wlb-gray-600);
  margin-bottom: 18px; line-height: 1.6;
}
.wlb-modal-recap strong { color: var(--wlb-gray-800); }

/* ────────────────────────────────────────────
   FORMULAIRE
──────────────────────────────────────────── */
.wlb-form-row { display: flex; gap: 14px; }
.wlb-form-row .wlb-field { flex: 1 1 0; }
.wlb-field { margin-bottom: 13px; }
.wlb-field label { display: block; font-size: .83rem; font-weight: 600; margin-bottom: 4px; color: var(--wlb-gray-800); }
.wlb-req { color: var(--wlb-red); }
.wlb-field input,
.wlb-field select,
.wlb-field textarea {
  width: 100%; box-sizing: border-box;
  padding: 9px 11px; border: 1px solid var(--wlb-gray-200);
  border-radius: 7px; font-size: .92rem; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  background: #fff; color: var(--wlb-gray-800);
}
.wlb-field input:focus,
.wlb-field select:focus,
.wlb-field textarea:focus {
  outline: none;
  border-color: var(--wlb-blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.wlb-form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 6px;
  padding-top: 14px; border-top: 1px solid var(--wlb-gray-200);
}
.wlb-form-prix { font-size: .88rem; color: var(--wlb-gray-600); }
.wlb-form-prix strong { color: var(--wlb-blue); font-size: 1rem; }
.wlb-btn-submit {
  padding: 11px 22px; background: var(--wlb-blue); color: #fff;
  border: none; border-radius: 8px; font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: background .18s; white-space: nowrap;
}
.wlb-btn-submit:hover:not(:disabled) { background: var(--wlb-blue-hover); }
.wlb-btn-submit:disabled { background: var(--wlb-gray-400); cursor: not-allowed; }
.wlb-form-error {
  margin-top: 10px; padding: 9px 13px;
  background: #fee2e2; color: #b91c1c;
  border-radius: 7px; font-size: .88rem;
  border-left: 3px solid var(--wlb-red);
}

/* Succès */
.wlb-success { text-align: center; padding: 24px 16px; }
.wlb-success-icon { font-size: 3.5rem; margin-bottom: 10px; }
.wlb-success h4 { font-size: 1.25rem; margin: 0 0 10px; color: var(--wlb-green); }
.wlb-success p  { color: var(--wlb-gray-600); line-height: 1.65; font-size: .92rem; }

/* Notices inline */
.wlb-notice {
  margin-top: 10px; padding: 9px 13px; border-radius: 7px;
  font-size: .88rem; font-weight: 500;
}
.wlb-notice-error   { background: #fee2e2; color: #b91c1c; border-left: 3px solid var(--wlb-red); }
.wlb-notice-success { background: #dcfce7; color: #15803d; border-left: 3px solid var(--wlb-green); }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 768px) {
  .wlb-single-cal  { flex: 1 1 100%; }
  .wlb-form-row    { flex-direction: column; gap: 0; }
  .wlb-form-footer { flex-direction: column; align-items: stretch; }
  .wlb-btn-submit  { width: 100%; text-align: center; }
  .wlb-modal       { padding: 20px 16px; }
  .wlb-grid        { grid-template-columns: repeat(7, 1fr); }
  .wlb-day, .wlb-dname { width: auto; }
  .wlb-month { min-width: 0; width: 100%; }
}
@media (max-width: 480px) {
  .wlb-summary-dates { gap: 6px; padding: 10px; }
  .wlb-summary-arrow { display: none; }
}

/* ────────────────────────────────────────────
   PAGE LISTE SALLES + CALENDRIERS INTÉGRÉS
──────────────────────────────────────────── */
.wlb-salles-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 24px 0;
}

/* Chaque bloc salle */
.wlb-salle-item {
  background: #fff;
  border: 1px solid var(--wlb-gray-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--wlb-shadow);
}

/* Partie haute : photo + infos */
.wlb-salle-header {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.wlb-salle-photo {
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
}
.wlb-salle-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.wlb-no-img {
  min-height: 220px;
  background: var(--wlb-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.wlb-salle-photo .wlb-badge {
  position: absolute;
  top: 12px; left: 12px;
}

.wlb-salle-meta {
  flex: 1 1 280px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--wlb-gray-200);
}
.wlb-salle-title {
  margin: 0 0 6px;
  font-size: 1.3rem;
}
.wlb-salle-title a {
  color: var(--wlb-gray-800);
  text-decoration: none;
}
.wlb-salle-title a:hover { color: var(--wlb-blue); }

.wlb-salle-adresse {
  font-size: .88rem;
  color: var(--wlb-gray-600);
  margin: 0 0 12px;
}

.wlb-salle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.wlb-spec-pill {
  background: var(--wlb-gray-100);
  border: 1px solid var(--wlb-gray-200);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .83rem;
  color: var(--wlb-gray-800);
  white-space: nowrap;
}
.wlb-spec-pill strong { color: var(--wlb-blue); }

.wlb-salle-excerpt {
  font-size: .88rem;
  color: var(--wlb-gray-600);
  margin: 0 0 12px;
  line-height: 1.55;
}

/* Tags équipements */
.wlb-salle-equip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.wlb-equip-tag {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: 5px;
  padding: 2px 9px;
  font-size: .78rem;
  font-weight: 500;
}
.wlb-equip-more {
  background: var(--wlb-gray-100);
  border-color: var(--wlb-gray-200);
  color: var(--wlb-gray-600);
}

/* Partie basse : calendrier */
.wlb-salle-cal-wrap {
  background: var(--wlb-gray-50);
  border-top: 2px solid var(--wlb-blue-light);
  padding: 20px 24px 24px;
}
.wlb-salle-cal-wrap .wlb-wrap {
  max-width: 100%;
  margin: 0;
  border-color: var(--wlb-gray-200);
  background: #fff;
}
/* Sur page liste on affiche les mois côte à côte */
.wlb-salle-cal-wrap .wlb-months-container {
  justify-content: flex-start;
}

/* ── Responsive liste salles ── */
@media (max-width: 640px) {
  .wlb-salle-photo { flex: 1 1 100%; }
  .wlb-salle-img   { min-height: 180px; }
  .wlb-salle-meta  { padding: 16px; }
  .wlb-salle-cal-wrap { padding: 14px 12px; }
}

/* ── Chargement AJAX du calendrier ── */
.wlb-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  color: var(--wlb-gray-600);
  font-size: .9rem;
}
.wlb-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid var(--wlb-gray-200);
  border-top-color: var(--wlb-blue);
  border-radius: 50%;
  animation: wlb-spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes wlb-spin {
  to { transform: rotate(360deg); }
}

/* ── Captcha alphanumérique maison ── */
.wlb-captcha-wrap {
  margin-bottom: 14px;
}
.wlb-captcha-display {
  margin-bottom: 8px;
  display: inline-block;
}
.wlb-captcha-display canvas {
  border: 2px solid var(--wlb-gray-200);
  border-radius: 8px;
  display: block;
  user-select: none;
}
.wlb-captcha-note {
  font-size: .75rem;
  color: var(--wlb-gray-600);
  margin: 6px 0 0;
}

/* ── Bouton listing des tarifs ── */
.wlb-btn-tarifs {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #fff;
  border: 2px solid var(--wlb-blue);
  color: var(--wlb-blue) !important;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .18s, color .18s;
}
.wlb-btn-tarifs:hover {
  background: var(--wlb-blue);
  color: #fff !important;
}
.wlb-pill-tarifs {
  text-decoration: none !important;
  color: var(--wlb-blue) !important;
  border-color: var(--wlb-blue) !important;
  background: #eff6ff !important;
  transition: background .18s;
}
.wlb-pill-tarifs:hover {
  background: var(--wlb-blue-light) !important;
}

/* ── Description complète dans le listing ── */
.wlb-salle-desc {
  font-size: .9rem;
  color: var(--wlb-gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}
.wlb-salle-desc p { margin: 0 0 8px; }
.wlb-salle-desc p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════
   FICHE SALLE MODERNE — wlb-single-card
════════════════════════════════════════════ */
.wlb-single-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(29,78,216,.10), 0 1px 4px rgba(0,0,0,.06);
  background: #fff;
  border: 1.5px solid #e0e7ff;
  margin: 20px 0 32px;
}

/* ── Hero : photo + infos ── */
.wlb-single-hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 280px;
}
.wlb-single-photo {
  flex: 0 0 380px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}
.wlb-single-main-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.wlb-single-card:hover .wlb-single-main-img { transform: scale(1.03); }
.wlb-single-no-img {
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--wlb-gray-400);
  gap: 8px;
}
.wlb-single-no-img span { font-size: .9rem; }

.wlb-single-infos {
  flex: 1 1 300px;
  padding: 28px 30px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border-left: 1px solid #e0e7ff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wlb-single-titre {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}
.wlb-single-adresse {
  margin: 0;
  font-size: .9rem;
  color: var(--wlb-gray-600);
}

/* Badges specs */
.wlb-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wlb-spec-badge {
  background: #fff;
  border: 1.5px solid #c7d2fe;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .85rem;
  color: #3730a3;
  white-space: nowrap;
}
.wlb-spec-badge strong { color: #1d4ed8; }

.wlb-single-desc {
  font-size: .92rem;
  color: var(--wlb-gray-600);
  line-height: 1.65;
}
.wlb-single-desc p { margin: 0 0 6px; }

/* ── Galerie ── */
.wlb-single-galerie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px;
  padding: 6px;
  background: #f8fafc;
  border-top: 1px solid #e0e7ff;
}
.wlb-galerie-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .2s;
  cursor: pointer;
}
.wlb-galerie-thumb:hover { transform: scale(1.04); }

/* ── Équipements + Règlement ── */
.wlb-single-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid #e0e7ff;
}
.wlb-single-equip {
  flex: 1 1 260px;
  padding: 22px 28px;
  border-right: 1px solid #e0e7ff;
  background: #f8faff;
}
.wlb-single-equip h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 700;
}
.wlb-single-equip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}
.wlb-single-equip li {
  padding: 4px 0;
  font-size: .88rem;
  color: var(--wlb-gray-600);
}
.wlb-single-equip li::before { content: "✓ "; color: #16a34a; font-weight: 700; }

.wlb-single-reglement {
  flex: 1 1 260px;
  padding: 22px 28px;
  background: #fffbeb;
}
.wlb-single-reglement h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #92400e;
  font-weight: 700;
}
.wlb-single-reglement p { font-size: .88rem; color: #78350f; margin: 0 0 6px; }

/* ── Section calendrier ── */
.wlb-single-cal-section {
  padding: 24px 28px 28px;
  border-top: 3px solid #e0e7ff;
  background: linear-gradient(180deg, #f8faff 0%, #fff 60px);
}
.wlb-single-cal-titre {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wlb-single-cal-section .wlb-wrap {
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .wlb-single-photo { flex: 1 1 100%; }
  .wlb-single-main-img { min-height: 200px; }
  .wlb-single-infos { padding: 18px 16px; border-left: none; border-top: 1px solid #e0e7ff; }
  .wlb-single-equip { border-right: none; border-bottom: 1px solid #e0e7ff; }
  .wlb-single-cal-section { padding: 18px 14px; }
}

/* ── Navigation mois/année ── */
.wlb-nav-bar {
  background: #f8faff;
  border: 1.5px solid #e0e7ff;
  border-radius: 10px;
  padding: 8px 14px;
}
.wlb-nav-prev, .wlb-nav-next {
  transition: background .15s, transform .1s;
}
.wlb-nav-prev:hover, .wlb-nav-next:hover {
  background: #dbeafe !important;
  transform: scale(1.08);
}
.wlb-nav-month, .wlb-nav-year {
  background: #fff;
  transition: border-color .15s;
  width: auto;
}
.wlb-nav-month:focus, .wlb-nav-year:focus {
  outline: none;
  border-color: #1d4ed8 !important;
  box-shadow: 0 0 0 3px rgba(29,78,216,.15);
}
.wlb-months-container {
  transition: opacity .2s;
}
