.fcb-booking{
  --fcb-primary:#00796B;
  --fcb-primary-dark:#005F54;
  --fcb-border:#e4e9ef;
  --fcb-text:#142033;
  --fcb-muted:#667085;
  --fcb-warning:#d88700;
  --fcb-bg:#fff;
  font-family: inherit;
  color:var(--fcb-text);
  width:100%;
}
.fcb-booking *{box-sizing:border-box}
.fcb-booking-title{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.2;
  font-weight:800;
  color:#0a0f18;
}
.fcb-sessions-list{display:flex;flex-direction:column;gap:10px}
.fcb-empty{
  border:1px solid var(--fcb-border);
  background:#fff;
  border-radius:8px;
  padding:18px;
  color:var(--fcb-muted);
}
.fcb-session-card{
  position:relative;
  display:grid;
  grid-template-columns:88px 150px minmax(0,1fr) 175px;
  gap:20px;
  align-items:center;
  background:var(--fcb-bg);
  border:1px solid var(--fcb-border);
  border-radius:7px;
  box-shadow:0 6px 18px rgba(15,23,42,.06);
  overflow:hidden;
  min-height:122px;
}
.fcb-session-card:before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:6px;
  background:var(--fcb-primary);
}
.fcb-date-box{
  min-height:122px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-right:1px solid var(--fcb-border);
  padding:12px 8px 12px 14px;
  text-align:center;
}
.fcb-date-label{font-size:12px;color:var(--fcb-muted);line-height:1.1;margin-bottom:3px}
.fcb-date-day{font-size:34px;line-height:.98;color:var(--fcb-primary-dark);font-weight:900;letter-spacing:-.04em}
.fcb-date-month{font-size:22px;line-height:1;color:var(--fcb-primary-dark);font-weight:800;margin-top:1px;text-transform:capitalize}
.fcb-date-time{font-size:14px;color:var(--fcb-primary-dark);font-weight:600;margin-top:7px}
.fcb-session-image-wrap{width:150px;height:96px;border-radius:4px;overflow:hidden;background:#f2f4f7}
.fcb-session-image{display:block;width:100%;height:100%;object-fit:cover}
.fcb-session-main{padding:16px 0;min-width:0}
.fcb-session-title{margin:0 0 8px;color:#073c37;font-size:17px;line-height:1.25;font-weight:850}
.fcb-session-address{margin:0 0 2px;font-size:16px;line-height:1.35;color:#27324a}
.fcb-session-description{margin:5px 0 0;font-size:13px;line-height:1.35;color:var(--fcb-muted);max-width:640px}
.fcb-session-availability{margin:3px 0 0;font-size:16px;line-height:1.3;color:#27324a}
.fcb-status-available{color:var(--fcb-warning);font-weight:800;margin-right:4px}
.fcb-status-full{color:#b42318;font-weight:850}
.fcb-session-action{padding:18px 18px 18px 0;display:flex;flex-direction:column;align-items:flex-end;gap:14px;justify-content:center}
.fcb-session-price{font-weight:900;font-size:20px;line-height:1;color:var(--fcb-primary-dark);white-space:nowrap}
.fcb-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:40px;padding:10px 16px;border-radius:4px;
  background:var(--fcb-primary);color:#fff!important;text-decoration:none!important;
  font-size:13px;font-weight:800;line-height:1;white-space:nowrap;
  border:1px solid var(--fcb-primary);box-shadow:0 4px 10px rgba(0,0,0,.08);
  transition:transform .15s ease,background .15s ease,border-color .15s ease;
}
.fcb-btn:hover{background:var(--fcb-primary-dark);border-color:var(--fcb-primary-dark);transform:translateY(-1px)}
.fcb-btn-disabled{background:#98a2b3;border-color:#98a2b3;pointer-events:none;box-shadow:none}
.fcb-session-card.is-full{opacity:.72}
@media (max-width: 767px){
  .fcb-booking-title{font-size:18px;margin-bottom:6px}
  .fcb-sessions-list{gap:16px}
  .fcb-session-card{
    display:block;
    min-height:0;
    border-radius:8px;
    padding:12px;
    box-shadow:0 5px 16px rgba(15,23,42,.08);
  }
  .fcb-session-card:before{left:0;right:0;top:auto;bottom:0;width:auto;height:5px;border-radius:0 0 8px 8px}
  .fcb-date-box{
    min-height:0;border-right:0;padding:0 0 8px;text-align:left;
    display:flex;flex-direction:row;align-items:baseline;justify-content:flex-start;gap:6px;
  }
  .fcb-date-label{font-size:13px;margin:0;color:var(--fcb-muted)}
  .fcb-date-day,.fcb-date-month,.fcb-date-time{font-size:14px;line-height:1.2;margin:0;letter-spacing:0;color:var(--fcb-primary-dark);font-weight:850}
  .fcb-session-image-wrap{width:100%;height:auto;aspect-ratio:16/9;border-radius:5px;margin-bottom:12px}
  .fcb-session-main{padding:0}
  .fcb-session-title{font-size:16px;margin-bottom:8px}
  .fcb-session-address{font-size:15px;margin-bottom:2px}
  .fcb-session-description{font-size:13px;margin-top:5px}
  .fcb-session-availability{font-size:15px;margin-top:4px}
  .fcb-session-action{padding:12px 0 0;display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:10px}
  .fcb-session-price{font-size:18px}
  .fcb-btn{min-height:38px;padding:9px 13px;font-size:12px}
}
@media (max-width: 380px){
  .fcb-session-action{align-items:stretch;flex-direction:column}
  .fcb-session-price{text-align:left;width:100%}
  .fcb-btn{width:100%}
}

/* Payment choices */
.fcb-payment-form{display:flex;flex-direction:column;align-items:stretch;gap:9px;width:100%;max-width:260px}
.fcb-payment-options{display:flex;flex-direction:column;gap:6px;width:100%}
.fcb-payment-options label{display:block;border:1px solid var(--fcb-border);border-radius:6px;background:#fff;padding:7px 8px;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease,background .15s ease}
.fcb-payment-options label:has(input:checked){border-color:var(--fcb-primary);box-shadow:0 0 0 2px rgba(0,121,107,.08);background:rgba(0,121,107,.03)}
.fcb-payment-options input{margin:0 6px 0 0;vertical-align:middle}
.fcb-payment-options span{font-size:12px;line-height:1.25;color:var(--fcb-text);font-weight:700}
.fcb-payment-options span strong{color:var(--fcb-primary-dark);font-weight:900;white-space:nowrap}
.fcb-payment-options small{display:block;margin:3px 0 0 22px;font-size:11px;line-height:1.25;color:var(--fcb-muted)}
.fcb-payment-forced{font-size:11px;line-height:1.3;color:var(--fcb-muted);text-align:right;max-width:220px}
.fcb-payment-form .fcb-btn{width:100%}
@media (min-width: 768px){.fcb-session-card{grid-template-columns:88px 150px minmax(0,1fr) 270px}.fcb-session-action{padding-right:18px}.fcb-session-description{max-width:560px}}
@media (max-width: 767px){.fcb-payment-form{max-width:none}.fcb-payment-forced{text-align:left;max-width:none}.fcb-payment-options span{font-size:12px}.fcb-payment-options small{font-size:11px}.fcb-session-action{align-items:stretch}.fcb-session-price{white-space:normal}.fcb-payment-form .fcb-btn{width:100%}}

/* v0.2.0 — UX premium popup + cards */
.fcb-card-badges{display:flex;gap:6px;flex-wrap:wrap;margin:0 0 7px}
.fcb-card-badges span{display:inline-flex;align-items:center;border:1px solid rgba(0,0,0,.07);background:rgba(0,121,107,.055);color:var(--fcb-primary-dark);border-radius:999px;padding:4px 8px;font-size:11px;line-height:1;font-weight:800}
.fcb-status-low{color:var(--fcb-warning);font-weight:900;margin-right:4px}
.fcb-link-btn{appearance:none;background:transparent;border:0;padding:0;margin:0;color:var(--fcb-primary-dark);font-size:12px;font-weight:800;text-decoration:underline;cursor:pointer}
.fcb-link-btn:hover{color:var(--fcb-primary)}
html.fcb-modal-open{overflow:hidden}
.fcb-modal{position:fixed;inset:0;z-index:999999;display:none;align-items:center;justify-content:center;padding:22px;color:var(--fcb-text)}
.fcb-modal[aria-hidden="false"]{display:flex}
.fcb-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.62);backdrop-filter:blur(2px)}
.fcb-modal-dialog{position:relative;width:min(920px,calc(100vw - 28px));max-height:calc(100vh - 34px);background:#fff;border-radius:16px;box-shadow:0 30px 90px rgba(15,23,42,.32);overflow:hidden;border:1px solid rgba(255,255,255,.5)}
.fcb-modal-close{position:absolute;top:12px;right:12px;z-index:3;width:36px;height:36px;border-radius:999px;border:1px solid rgba(0,0,0,.08);background:#fff;color:#344054;font-size:22px;line-height:1;cursor:pointer;box-shadow:0 4px 14px rgba(0,0,0,.08)}
.fcb-modal-scroll{max-height:calc(100vh - 34px);overflow:auto;padding:0 0 22px}
.fcb-modal-hero{height:220px;background:#f2f4f7;overflow:hidden}
.fcb-modal-hero img{display:block;width:100%;height:100%;object-fit:cover}
.fcb-modal-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;padding:22px 26px;border-bottom:1px solid var(--fcb-border)}
.fcb-modal-kicker{display:inline-flex;color:var(--fcb-primary);font-weight:900;text-transform:uppercase;letter-spacing:.06em;font-size:11px;margin-bottom:7px}
.fcb-modal-head h3{margin:0 0 6px;color:#0b172a;font-size:24px;line-height:1.15;font-weight:900}
.fcb-modal-head p{margin:0;color:#475467;font-size:14px;line-height:1.45}
.fcb-modal-price{text-align:right;min-width:170px}.fcb-modal-price strong{display:block;color:var(--fcb-primary-dark);font-size:22px;line-height:1;font-weight:950}.fcb-modal-price span{display:block;margin-top:8px;color:#475467;font-size:13px;font-weight:800}
.fcb-modal-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:16px 26px 0}.fcb-modal-block,.fcb-modal-booking-box{border:1px solid var(--fcb-border);border-radius:14px;background:#fbfcfe;padding:16px}.fcb-modal-block-wide{margin:16px 26px 0}.fcb-modal-block h4,.fcb-modal-booking-box h4{margin:0 0 10px;color:#0b172a;font-size:15px;line-height:1.2;font-weight:900}.fcb-modal-block p,.fcb-modal-booking-box p{margin:0;color:#475467;font-size:14px;line-height:1.5}.fcb-muted-line{color:#667085!important;margin-top:4px!important}
.fcb-schedule-list,.fcb-check-list{list-style:none;padding:0;margin:0;display:grid;gap:8px}.fcb-schedule-list li{display:flex;justify-content:space-between;gap:12px;border-bottom:1px dashed #e4e7ec;padding-bottom:8px}.fcb-schedule-list li:last-child{border-bottom:0;padding-bottom:0}.fcb-schedule-list strong{font-size:13px;color:#172033}.fcb-schedule-list span{font-size:13px;color:var(--fcb-primary-dark);font-weight:900;white-space:nowrap}.fcb-check-list li{position:relative;padding-left:24px;color:#344054;font-size:14px;line-height:1.45}.fcb-check-list li:before{content:"✓";position:absolute;left:0;top:1px;width:17px;height:17px;border-radius:4px;background:rgba(0,121,107,.11);color:var(--fcb-primary);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:900}.fcb-modal-copy p{margin:0 0 10px;color:#344054}.fcb-modal-copy p:last-child{margin-bottom:0}.fcb-modal-actions-row{display:flex;gap:9px;flex-wrap:wrap;margin-top:12px}.fcb-outline-btn{display:inline-flex;align-items:center;justify-content:center;min-height:36px;padding:8px 12px;border:1px solid var(--fcb-primary);border-radius:8px;color:var(--fcb-primary-dark)!important;background:#fff;text-decoration:none!important;font-weight:900;font-size:12px}.fcb-outline-btn:hover{background:rgba(0,121,107,.06)}
.fcb-modal-booking-box{margin:16px 26px 0;display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,360px);gap:18px;align-items:center;background:linear-gradient(135deg,rgba(0,121,107,.07),#fff)}.fcb-modal-booking-box .fcb-payment-form{max-width:none}.fcb-modal-booking-box .fcb-btn{min-height:44px;font-size:14px}
@media (max-width:767px){.fcb-card-badges{margin-top:2px}.fcb-card-badges span{font-size:10px;padding:4px 7px}.fcb-session-action{gap:8px}.fcb-link-btn{text-align:center}.fcb-modal{padding:0;align-items:stretch}.fcb-modal-dialog{width:100vw;max-height:100vh;border-radius:0}.fcb-modal-scroll{max-height:100vh}.fcb-modal-hero{height:175px}.fcb-modal-head{display:block;padding:18px}.fcb-modal-head h3{font-size:19px}.fcb-modal-price{text-align:left;margin-top:12px}.fcb-modal-grid{grid-template-columns:1fr;padding:12px 14px 0;gap:10px}.fcb-modal-block-wide{margin:12px 14px 0}.fcb-modal-booking-box{margin:12px 14px 0;grid-template-columns:1fr;padding:14px}.fcb-schedule-list li{display:block}.fcb-schedule-list span{display:block;margin-top:2px}.fcb-modal-close{top:10px;right:10px}}

.woocommerce-checkout .fcb-checkout-customer-type{padding:14px 16px;border:1px solid #e7edf4;border-radius:14px;background:#f8fafc;margin-bottom:14px!important}.woocommerce-checkout .fcb-checkout-customer-type label.radio{display:inline-flex!important;align-items:center;gap:6px;margin-right:18px;font-weight:700}.woocommerce-checkout .fcb-checkout-tax-note{display:block;margin-top:6px;color:#64748b;font-size:13px}.woocommerce-checkout .fcb-company-only{transition:opacity .18s ease}.fcb-tax-help{background:#f8fafc;border:1px solid #e7edf4;border-radius:14px;padding:12px 14px;color:#475569;grid-column:1/-1}.fcb-tax-help strong{color:#111827}

/* v0.2.8 — formulaire de réservation interne */
.fcb-reservation-form{max-width:none;gap:14px}.fcb-reservation-step{display:flex;gap:10px;align-items:flex-start;margin:2px 0 0}.fcb-step-badge{flex:0 0 28px;width:28px;height:28px;border-radius:999px;background:var(--fcb-primary);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-weight:900;font-size:13px}.fcb-reservation-step h5{margin:0 0 2px;color:#0b172a;font-size:15px;font-weight:900}.fcb-reservation-step p{margin:0;color:#667085;font-size:12px;line-height:1.35}.fcb-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.fcb-form-grid-compact{grid-template-columns:1fr}.fcb-field{display:flex;flex-direction:column;gap:5px;margin:0}.fcb-field span{font-size:12px;color:#344054;font-weight:850}.fcb-field input,.fcb-field select,.fcb-field textarea{width:100%;min-height:40px;border:1px solid #d9e1ea;border-radius:9px;background:#fff;padding:9px 10px;color:#172033;font-size:13px;line-height:1.25;box-shadow:0 1px 2px rgba(16,24,40,.03);outline:none}.fcb-field textarea{min-height:80px;resize:vertical}.fcb-field input:focus,.fcb-field select:focus,.fcb-field textarea:focus{border-color:var(--fcb-primary);box-shadow:0 0 0 3px rgba(0,121,107,.1)}.fcb-field small{font-size:11px;color:#667085;line-height:1.35}.fcb-full-field{grid-column:1/-1}.fcb-customer-type{display:grid;grid-template-columns:1fr 1fr;gap:8px}.fcb-customer-type label{border:1px solid var(--fcb-border);border-radius:10px;background:#fff;padding:10px 11px;display:flex;align-items:center;gap:8px;cursor:pointer;font-size:13px;font-weight:850;color:#344054}.fcb-customer-type label:has(input:checked){border-color:var(--fcb-primary);background:rgba(0,121,107,.055);box-shadow:0 0 0 2px rgba(0,121,107,.06)}.fcb-company-only-field{display:none}.fcb-reservation-form.is-company .fcb-company-only-field{display:flex}.fcb-reservation-summary{border:1px solid rgba(0,121,107,.16);background:rgba(0,121,107,.055);border-radius:12px;padding:10px 12px;color:#475467;font-size:12px;line-height:1.45}.fcb-reservation-summary strong{color:var(--fcb-primary-dark)}.fcb-modal-booking-box{grid-template-columns:minmax(0,1fr) minmax(360px,460px)}.fcb-modal-booking-box .fcb-payment-options label{padding:9px 10px}.fcb-modal-booking-box .fcb-payment-options span{font-size:13px}.fcb-modal-booking-box .fcb-payment-options small{font-size:12px}
@media (max-width:767px){.fcb-modal-booking-box{grid-template-columns:1fr}.fcb-form-grid,.fcb-customer-type{grid-template-columns:1fr}.fcb-reservation-step p{font-size:12px}.fcb-field input,.fcb-field select,.fcb-field textarea{font-size:16px}.fcb-payment-options label:has(input:checked){box-shadow:0 0 0 2px rgba(0,121,107,.08)}}

/* v0.2.9 — tunnel de réservation interne en 2 étapes */
.fcb-booking-wizard{width:100%;display:block}
.fcb-wizard-step{display:none;animation:fcbFadeUp .18s ease both}
.fcb-wizard-step.is-active{display:block}
@keyframes fcbFadeUp{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}
.fcb-booking-recap{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;margin:14px 0}
.fcb-booking-recap div{border:1px solid rgba(0,121,107,.16);background:rgba(0,121,107,.05);border-radius:12px;padding:11px 12px}
.fcb-booking-recap strong{display:block;color:var(--fcb-primary-dark);font-size:14px;line-height:1.2;font-weight:950}
.fcb-booking-recap span{display:block;margin-top:4px;color:#667085;font-size:11px;line-height:1.25;font-weight:800}
.fcb-wizard-next{width:100%;min-height:44px;margin-top:4px}
.fcb-wizard-note{margin:10px 0 0!important;color:#667085!important;font-size:12px!important;line-height:1.45!important;text-align:center}
.fcb-payment-zone{border:1px solid rgba(0,121,107,.16);background:#fff;border-radius:14px;padding:13px 14px;display:grid;gap:10px}
.fcb-payment-zone h5{margin:0;color:#0b172a;font-size:14px;font-weight:950}
.fcb-terms-field{display:flex;align-items:flex-start;gap:9px;border:1px solid #e7edf4;background:#fbfcfe;border-radius:12px;padding:12px 13px;color:#344054;font-size:12px;line-height:1.4;font-weight:700}
.fcb-terms-field input{margin-top:2px;flex:0 0 auto}
.fcb-terms-field a{color:var(--fcb-primary-dark)!important;text-decoration:underline!important;font-weight:900}
.fcb-form-actions-inline{display:grid;grid-template-columns:1fr 1.5fr;gap:10px;align-items:center}
.fcb-form-actions-inline .fcb-outline-btn{min-height:44px;width:100%;border-radius:9px}
.fcb-form-actions-inline .fcb-btn{min-height:44px;width:100%}
.fcb-reservation-summary{font-weight:750}
.fcb-payment-forced[hidden],.fcb-payment-options [hidden]{display:none!important}
@media (max-width:767px){.fcb-booking-recap{grid-template-columns:1fr}.fcb-form-actions-inline{grid-template-columns:1fr}.fcb-form-actions-inline .fcb-outline-btn{order:2}.fcb-form-actions-inline .fcb-btn{order:1}.fcb-payment-zone{padding:12px}.fcb-terms-field{font-size:12px}}


/* V0.3.0 — tunnel réservation 2 étapes plus clair */
.fcb-modal.is-form-step .fcb-modal-hero,
.fcb-modal.is-form-step .fcb-modal-head,
.fcb-modal.is-form-step .fcb-modal-grid,
.fcb-modal.is-form-step .fcb-modal-block-wide{display:none!important}
.fcb-modal.is-form-step .fcb-modal-scroll{background:#f6f8fb;padding:0}
.fcb-modal.is-form-step .fcb-modal-booking-box{margin:0;border:0;border-radius:0;box-shadow:none;background:#f6f8fb;display:block;padding:28px;min-height:calc(100vh - 34px)}
.fcb-modal.is-form-step .fcb-booking-wizard{max-width:860px;margin:0 auto}
.fcb-modal.is-form-step .fcb-reservation-form{display:grid!important;gap:18px;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:20px;padding:24px;box-shadow:0 18px 50px rgba(15,23,42,.08)}
.fcb-modal.is-form-step .fcb-form-grid{gap:14px}
.fcb-modal.is-form-step .fcb-field input,.fcb-modal.is-form-step .fcb-field select,.fcb-modal.is-form-step .fcb-field textarea{min-height:46px;border-radius:12px;padding:11px 12px;font-size:14px}
.fcb-form-topbar{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:2px}
.fcb-back-link{appearance:none;border:0;background:transparent;color:var(--fcb-primary-dark);font-weight:900;font-size:13px;cursor:pointer;padding:0;text-align:left}
.fcb-back-link:hover{text-decoration:underline}
.fcb-form-secure-pill{display:inline-flex;align-items:center;gap:6px;border:1px solid rgba(0,121,107,.16);background:rgba(0,121,107,.055);color:var(--fcb-primary-dark);font-weight:900;font-size:12px;border-radius:999px;padding:7px 10px;white-space:nowrap}
.fcb-form-secure-pill:before{content:'🔒';font-size:12px;line-height:1}
.fcb-form-title-row{border-bottom:1px solid var(--fcb-border);padding-bottom:16px;margin-bottom:2px!important}
.fcb-modal.is-form-step .fcb-customer-type{background:#f8fafc;border:1px solid var(--fcb-border);border-radius:16px;padding:8px}
.fcb-modal.is-form-step .fcb-payment-zone{background:linear-gradient(135deg,rgba(0,121,107,.055),#fff);border-radius:16px;padding:16px}
.fcb-bottom-note{background:#f8fafc!important;border-color:#e5eaf0!important;color:#667085!important;text-align:center;font-weight:700!important}
.fcb-modal-booking-box{display:block!important;grid-template-columns:1fr!important;align-items:stretch!important;background:linear-gradient(135deg,rgba(0,121,107,.06),#fff)!important}
.fcb-modal-booking-box .fcb-booking-wizard{max-width:100%}
.fcb-wizard-step[data-fcb-wizard-step="details"].is-active{display:grid;gap:14px}
@media (max-width:767px){
  .fcb-modal.is-form-step .fcb-modal-booking-box{padding:16px 12px;min-height:100vh}
  .fcb-modal.is-form-step .fcb-reservation-form{border-radius:18px;padding:16px;gap:15px}
  .fcb-form-topbar{display:grid;gap:8px;justify-items:start}
  .fcb-form-secure-pill{white-space:normal}
  .fcb-form-title-row{padding-bottom:12px}
}
.fcb-modal-loading{min-height:360px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:8px;padding:44px 22px;color:#475467;background:#fff}
.fcb-modal-loading:before{content:"";width:38px;height:38px;border-radius:999px;border:3px solid #e4e7ec;border-top-color:var(--fcb-primary);animation:fcbSpin .8s linear infinite;margin-bottom:8px}
.fcb-modal-loading strong{display:block;color:#0b172a;font-size:18px;font-weight:950}.fcb-modal-loading span{display:block;font-size:13px;line-height:1.45}.fcb-modal-error:before{display:none}.fcb-modal-error strong{color:#b42318}@keyframes fcbSpin{to{transform:rotate(360deg)}}


/* v0.3.2 — Correctifs mobile popup : CTA toujours visible + espacements haut propres */
html.fcb-modal-open,
body.fcb-modal-open{overflow:hidden!important}
.fcb-mobile-sticky-cta{display:none}
@media (max-width:767px){
  .fcb-modal{padding:0!important;align-items:stretch!important;justify-content:stretch!important}
  .fcb-modal-dialog{width:100vw!important;height:100dvh!important;max-height:100dvh!important;border-radius:0!important;border:0!important;display:flex!important;flex-direction:column!important;overflow:hidden!important}
  @supports not (height:100dvh){.fcb-modal-dialog{height:100vh!important;max-height:100vh!important}}
  .fcb-modal-scroll{flex:1 1 auto!important;max-height:none!important;height:auto!important;overflow:auto!important;-webkit-overflow-scrolling:touch!important;padding:0 0 calc(88px + env(safe-area-inset-bottom))!important;background:#fff!important}
  .fcb-modal-close{top:max(10px,env(safe-area-inset-top))!important;right:12px!important;z-index:30!important;width:38px!important;height:38px!important;background:rgba(255,255,255,.96)!important;box-shadow:0 10px 24px rgba(15,23,42,.18)!important}
  .fcb-modal-hero{height:146px!important;border-bottom:1px solid rgba(15,23,42,.06)!important}
  .fcb-modal-head{display:block!important;padding:14px 16px 12px!important;border-bottom:1px solid #edf1f5!important}
  .fcb-modal-kicker{font-size:10px!important;margin-bottom:5px!important;letter-spacing:.055em!important}
  .fcb-modal-head h3{font-size:18px!important;line-height:1.18!important;margin:0 42px 6px 0!important;letter-spacing:-.01em!important}
  .fcb-modal-head p{font-size:13px!important;line-height:1.35!important;margin:0!important}
  .fcb-modal-price{margin-top:10px!important;text-align:left!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;min-width:0!important;background:rgba(0,121,107,.055)!important;border:1px solid rgba(0,121,107,.12)!important;border-radius:12px!important;padding:10px 12px!important}
  .fcb-modal-price strong{font-size:20px!important;line-height:1!important;white-space:nowrap!important}
  .fcb-modal-price span{margin:0!important;text-align:right!important;font-size:12px!important;line-height:1.25!important}
  .fcb-modal-grid{grid-template-columns:1fr!important;padding:10px 12px 0!important;gap:10px!important}
  .fcb-modal-block{padding:13px!important;border-radius:12px!important}
  .fcb-modal-block-wide{margin:10px 12px 0!important;padding:13px!important;border-radius:12px!important}
  .fcb-modal-block h4,.fcb-modal-booking-box h4{font-size:14px!important;margin-bottom:8px!important}
  .fcb-modal-block p,.fcb-modal-copy p{font-size:13px!important;line-height:1.45!important}
  .fcb-schedule-list{gap:7px!important}
  .fcb-schedule-list li{display:grid!important;grid-template-columns:1fr auto!important;align-items:center!important;gap:8px!important;padding-bottom:7px!important}
  .fcb-schedule-list span{margin-top:0!important;white-space:nowrap!important;text-align:right!important}

  /* En étape détail mobile, le tunnel complet reste prêt dans le DOM mais ne pollue pas l'écran. */
  .fcb-modal:not(.is-form-step) .fcb-modal-booking-box{display:none!important}
  .fcb-modal.has-session-content:not(.is-form-step) .fcb-mobile-sticky-cta{display:block!important;position:absolute!important;left:0!important;right:0!important;bottom:0!important;z-index:24!important;padding:10px 12px calc(12px + env(safe-area-inset-bottom))!important;background:rgba(255,255,255,.97)!important;border-top:1px solid rgba(15,23,42,.08)!important;box-shadow:0 -14px 32px rgba(15,23,42,.14)!important;backdrop-filter:blur(8px)!important}
  .fcb-mobile-sticky-cta .fcb-btn{width:100%!important;min-height:50px!important;border-radius:12px!important;font-size:14px!important;font-weight:950!important}

  /* En étape formulaire, le contenu reprend toute la hauteur sans CTA parasite. */
  .fcb-modal.is-form-step .fcb-modal-scroll{padding-bottom:0!important;background:#f6f8fb!important}
  .fcb-modal.is-form-step .fcb-mobile-sticky-cta{display:none!important}
  .fcb-modal.is-form-step .fcb-modal-booking-box{padding:14px 12px calc(18px + env(safe-area-inset-bottom))!important;min-height:100%!important}
  .fcb-modal.is-form-step .fcb-reservation-form{border-radius:18px!important;padding:16px!important;gap:15px!important;box-shadow:0 12px 34px rgba(15,23,42,.08)!important}
}
@media (max-width:390px){
  .fcb-modal-head{padding-left:13px!important;padding-right:13px!important}
  .fcb-modal-grid{padding-left:10px!important;padding-right:10px!important}
  .fcb-modal-block-wide{margin-left:10px!important;margin-right:10px!important}
  .fcb-modal-price{display:block!important}
  .fcb-modal-price span{text-align:left!important;margin-top:6px!important}
  .fcb-schedule-list li{grid-template-columns:1fr!important}
  .fcb-schedule-list span{text-align:left!important;white-space:normal!important}
}

/* v0.3.5 — participant(s) plus intuitifs + page paiement interne stylée */
.fcb-participants-field{border:1px solid #e7edf4;background:#fbfcfe;border-radius:14px;padding:13px 14px;display:grid!important;gap:10px}
.fcb-participants-field>span{font-size:13px!important;color:#0b172a!important;font-weight:950!important}
.fcb-participants-help{margin:0!important;color:#667085!important;font-size:12px!important;line-height:1.45!important;font-weight:650!important}
.fcb-participant-fields{display:grid;gap:9px}
.fcb-participant-line{display:grid;gap:5px;margin:0!important}
.fcb-participant-line span{font-size:12px;color:#344054;font-weight:850}
.fcb-participant-line input{width:100%;min-height:42px;border:1px solid #d9e1ea;border-radius:10px;background:#fff;padding:10px 11px;color:#172033;font-size:13px;line-height:1.25;box-shadow:0 1px 2px rgba(16,24,40,.03);outline:none}
.fcb-participant-line input:focus{border-color:var(--fcb-primary);box-shadow:0 0 0 3px rgba(0,121,107,.1)}
@media(max-width:767px){.fcb-participant-line input{font-size:16px;min-height:46px}.fcb-participants-field{padding:12px}}

.fcb-payment-page-body{margin:0!important;background:#f5f8fb!important;color:#101828!important;font-family:Inter,Arial,sans-serif!important}
.fcb-payment-page{padding:38px 18px;background:radial-gradient(circle at top left,rgba(0,121,107,.09),transparent 34%),#f5f8fb;box-sizing:border-box}
.fcb-payment-shell{max-width:1120px;margin:0 auto}
.fcb-payment-header{text-align:center;margin:0 auto 24px;max-width:760px}
.fcb-payment-kicker{display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(0,121,107,.16);background:rgba(0,121,107,.06);color:var(--fcb-primary-dark);border-radius:999px;padding:7px 12px;font-size:12px;font-weight:950;letter-spacing:.02em;text-transform:uppercase;margin-bottom:12px}
.fcb-payment-header h1{margin:0 0 8px!important;font-size:clamp(30px,4vw,48px)!important;line-height:1.05!important;color:#0b172a!important;font-weight:950!important;letter-spacing:-.04em!important}
.fcb-payment-header p{margin:0!important;color:#667085!important;font-size:16px!important;line-height:1.55!important}
.fcb-payment-layout{display:grid;grid-template-columns:minmax(280px,360px) minmax(0,1fr);gap:18px;align-items:start}
.fcb-payment-summary,.fcb-payment-methods{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:22px;box-shadow:0 20px 60px rgba(15,23,42,.08)}
.fcb-payment-summary{padding:22px;position:sticky;top:18px}
.fcb-payment-summary h2{margin:0 0 14px!important;color:#0b172a!important;font-size:20px!important;font-weight:950!important;letter-spacing:-.02em!important}
.fcb-payment-summary-card{display:grid;gap:7px;border:1px solid rgba(0,121,107,.14);background:linear-gradient(135deg,rgba(0,121,107,.07),#fff);border-radius:16px;padding:15px;margin-bottom:13px}
.fcb-payment-summary-card strong{font-size:16px;color:#0b172a;font-weight:950;line-height:1.25}
.fcb-payment-summary-card span{font-size:13px;color:#475467;line-height:1.4}
.fcb-payment-summary-block{border-top:1px solid #edf1f5;padding-top:13px;margin-top:13px}
.fcb-payment-summary-block h3{margin:0 0 7px!important;color:#344054!important;font-size:13px!important;text-transform:uppercase;letter-spacing:.04em;font-weight:950!important}
.fcb-payment-summary-block p{margin:0!important;color:#475467!important;font-size:13px!important;line-height:1.55!important}
.fcb-payment-total{display:flex;align-items:center;justify-content:space-between;gap:10px;border-top:1px solid #edf1f5;margin-top:16px;padding-top:16px}
.fcb-payment-total span{color:#475467;font-weight:800;font-size:13px}
.fcb-payment-total strong{color:var(--fcb-primary-dark);font-size:26px;font-weight:950;white-space:nowrap}
.fcb-payment-balance{margin-top:10px;border-radius:12px;background:#fff7ed;border:1px solid #fed7aa;color:#9a3412;padding:10px 12px;font-size:13px;font-weight:800;line-height:1.35}
.fcb-payment-methods{padding:24px;min-height:340px}
.fcb-payment-methods #order_review_heading{display:none!important}
.fcb-payment-methods table.shop_table{width:100%!important;border:1px solid #edf1f5!important;border-radius:16px!important;overflow:hidden!important;margin:0 0 18px!important;background:#fff!important;border-collapse:separate!important;border-spacing:0!important}
.fcb-payment-methods table.shop_table th,.fcb-payment-methods table.shop_table td{border:0!important;border-bottom:1px solid #edf1f5!important;padding:14px 16px!important;color:#344054!important;font-size:14px!important;background:#fff!important}
.fcb-payment-methods table.shop_table tr:last-child th,.fcb-payment-methods table.shop_table tr:last-child td{border-bottom:0!important}
.fcb-payment-methods .woocommerce-checkout-payment,.fcb-payment-methods #payment{background:#f8fafc!important;border:1px solid #edf1f5!important;border-radius:18px!important;padding:16px!important}
.fcb-payment-methods #payment ul.payment_methods{border:0!important;padding:0!important;margin:0 0 14px!important;list-style:none!important}
.fcb-payment-methods #payment ul.payment_methods li{background:#fff!important;border:1px solid #e7edf4!important;border-radius:14px!important;padding:14px!important;margin:0 0 10px!important;color:#344054!important}
.fcb-payment-methods #payment div.payment_box{background:#f8fafc!important;border-radius:12px!important;margin:10px 0 0!important;padding:12px!important;color:#475467!important;font-size:13px!important;line-height:1.45!important}
.fcb-payment-methods #payment div.payment_box:before{display:none!important}
.fcb-payment-methods #place_order,.fcb-payment-methods button.button,.fcb-payment-methods input.button{width:100%!important;min-height:52px!important;border:0!important;border-radius:13px!important;background:var(--fcb-primary)!important;color:#fff!important;font-weight:950!important;font-size:15px!important;box-shadow:0 12px 24px rgba(0,121,107,.22)!important;text-transform:none!important;line-height:1!important}
.fcb-payment-methods #place_order:hover,.fcb-payment-methods button.button:hover{background:var(--fcb-primary-dark)!important}
.fcb-payment-footnote{text-align:center;margin:16px 0 0!important;color:#667085!important;font-size:13px!important;font-weight:700!important}
.fcb-payment-page .woocommerce-error,.fcb-payment-page .woocommerce-message,.fcb-payment-page .woocommerce-info{border-radius:14px!important;border:1px solid #e7edf4!important;background:#fff!important;box-shadow:0 8px 24px rgba(15,23,42,.06)!important;margin:0 0 16px!important;padding:14px 16px!important;color:#344054!important}
@media(max-width:860px){.fcb-payment-page{padding:22px 12px}.fcb-payment-layout{grid-template-columns:1fr}.fcb-payment-summary{position:static;padding:18px;border-radius:18px}.fcb-payment-methods{padding:16px;border-radius:18px}.fcb-payment-total strong{font-size:22px}.fcb-payment-header{text-align:left}.fcb-payment-kicker{justify-content:flex-start}.fcb-payment-header p{font-size:14px!important}}
/* v0.3.5 participant UX + internal payment hardening */
.fcb-participant-fields{display:grid;gap:9px;margin-top:8px}
.fcb-participant-line{display:grid;gap:6px;border:1px solid #e7edf4;background:#f8fafc;border-radius:12px;padding:10px 11px;margin:0}
.fcb-participant-line span{font-size:12px;font-weight:900;color:#344054}
.fcb-participant-line input{background:#fff!important}
.fcb-payment-page-body #wpadminbar{display:none!important}
html:has(body.fcb-payment-page-body){margin-top:0!important}
.fcb-payment-methods form#order_review,.fcb-payment-methods form.woocommerce-checkout{margin:0!important}
.fcb-payment-methods .woocommerce-form-coupon-toggle,.fcb-payment-methods .woocommerce-billing-fields,.fcb-payment-methods .woocommerce-shipping-fields,.fcb-payment-methods .woocommerce-additional-fields{display:none!important}
.fcb-payment-methods .woocommerce{margin:0!important}
@media(max-width:767px){.fcb-participant-line{padding:10px}.fcb-payment-page{padding-bottom:40px}}


/* v0.3.6 — paiement interne mobile propre, sans table WooCommerce qui déborde */
html:has(body.fcb-payment-page-body),
body.fcb-payment-page-body{width:100%!important;max-width:100%!important;overflow-x:hidden!important}
body.fcb-payment-page-body *{box-sizing:border-box!important}
.fcb-payment-page{overflow-x:hidden!important}
.fcb-payment-shell,.fcb-payment-layout,.fcb-payment-summary,.fcb-payment-methods,.fcb-payment-methods .woocommerce,.fcb-payment-methods form,.fcb-payment-methods #order_review,.fcb-payment-methods #payment{max-width:100%!important;min-width:0!important}
.fcb-payment-methods{overflow:hidden!important}
.fcb-payment-methods table.shop_table{display:none!important}
.fcb-payment-methods #payment ul.payment_methods li{max-width:100%!important;min-width:0!important;overflow:hidden!important}
.fcb-payment-methods #payment ul.payment_methods li label{display:flex!important;align-items:center!important;flex-wrap:wrap!important;gap:8px!important;width:100%!important;max-width:100%!important;min-width:0!important;white-space:normal!important;overflow-wrap:anywhere!important;line-height:1.35!important}
.fcb-payment-methods #payment ul.payment_methods li input.input-radio{flex:0 0 auto!important;margin:0 4px 0 0!important}
.fcb-payment-methods #payment ul.payment_methods li img{display:inline-block!important;max-height:28px!important;max-width:54px!important;width:auto!important;height:auto!important;object-fit:contain!important;margin:2px 3px!important;vertical-align:middle!important;float:none!important}
.fcb-payment-methods .form-row,.fcb-payment-methods .form-row-first,.fcb-payment-methods .form-row-last{float:none!important;width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important}
.fcb-payment-methods input,.fcb-payment-methods select,.fcb-payment-methods textarea,.fcb-payment-methods .input-text,.fcb-payment-methods .wc-stripe-elements-field,.fcb-payment-methods .stripe-card-group,.fcb-payment-methods .wc-stripe-card-element,.fcb-payment-methods iframe{max-width:100%!important}
.fcb-payment-methods .woocommerce-terms-and-conditions-wrapper,.fcb-payment-methods .woocommerce-privacy-policy-text,.fcb-payment-methods .woocommerce-terms-and-conditions-checkbox-text{width:100%!important;max-width:100%!important;white-space:normal!important;overflow-wrap:break-word!important;word-break:normal!important}
.fcb-payment-methods .woocommerce-privacy-policy-text p{margin:0 0 12px!important;font-size:14px!important;line-height:1.55!important;color:#344054!important}
.fcb-payment-methods label.woocommerce-form__label-for-checkbox{display:grid!important;grid-template-columns:24px minmax(0,1fr)!important;gap:10px!important;align-items:start!important;width:100%!important;max-width:100%!important;margin:12px 0!important;line-height:1.45!important}
.fcb-payment-methods label.woocommerce-form__label-for-checkbox input[type=checkbox]{width:22px!important;height:22px!important;min-width:22px!important;margin:2px 0 0!important}
.fcb-payment-methods label.woocommerce-form__label-for-checkbox span{min-width:0!important;display:block!important;font-size:14px!important;color:#344054!important}
@media(max-width:767px){
  .fcb-payment-page{padding:16px 10px 32px!important}
  .fcb-payment-header{margin-bottom:14px!important}
  .fcb-payment-header h1{font-size:28px!important;line-height:1.08!important}
  .fcb-payment-header p{font-size:14px!important}
  .fcb-payment-layout{gap:12px!important}
  .fcb-payment-summary,.fcb-payment-methods{border-radius:18px!important;padding:14px!important}
  .fcb-payment-summary-card{padding:13px!important}
  .fcb-payment-summary-block p{overflow-wrap:anywhere!important}
  .fcb-payment-total{align-items:flex-start!important}
  .fcb-payment-total strong{font-size:22px!important;text-align:right!important;white-space:normal!important;overflow-wrap:anywhere!important}
  .fcb-payment-methods #payment{padding:12px!important;border-radius:16px!important}
  .fcb-payment-methods #payment ul.payment_methods li{padding:12px!important;border-radius:13px!important}
  .fcb-payment-methods #payment ul.payment_methods li label{font-size:16px!important;gap:7px!important}
  .fcb-payment-methods #payment ul.payment_methods li img{max-height:24px!important;max-width:46px!important;margin:3px 2px!important}
  .fcb-payment-methods #payment div.payment_box{font-size:13px!important;padding:10px!important;overflow-wrap:break-word!important}
  .fcb-payment-methods #place_order,.fcb-payment-methods button.button,.fcb-payment-methods input.button{min-height:56px!important;border-radius:16px!important;font-size:15px!important;line-height:1.2!important;padding:14px 16px!important;white-space:normal!important}
  .fcb-payment-footnote{font-size:13px!important;line-height:1.5!important;padding:0 8px!important}
}


/* v0.3.8 — intégration thème : largeur contenue + footer/header full bleed propre */
body.fcb-payment-page-body{background:#f5f8fb!important;overflow-x:hidden!important}
body.fcb-payment-page-body .fcb-payment-page{min-height:0!important;width:100%!important;max-width:none!important;padding:42px 0 54px!important;background:radial-gradient(circle at top left,rgba(0,121,107,.09),transparent 34%),#f5f8fb!important;overflow-x:hidden!important}
body.fcb-payment-page-body .fcb-payment-shell{width:min(100% - 32px,1240px)!important;max-width:1240px!important;margin-left:auto!important;margin-right:auto!important;min-width:0!important}
body.fcb-payment-page-body .fcb-payment-layout{grid-template-columns:minmax(270px,330px) minmax(0,1fr)!important;gap:20px!important;width:100%!important;max-width:100%!important;min-width:0!important}
body.fcb-payment-page-body .fcb-payment-methods,body.fcb-payment-page-body .fcb-payment-summary{min-width:0!important;max-width:100%!important}
body.fcb-payment-page-body .fcb-payment-methods .woocommerce,body.fcb-payment-page-body .fcb-payment-methods form,body.fcb-payment-page-body .fcb-payment-methods #order_review,body.fcb-payment-page-body .fcb-payment-methods #payment{max-width:100%!important;min-width:0!important}
body.fcb-payment-page-body .fcb-payment-header{max-width:760px!important;margin-left:auto!important;margin-right:auto!important}
body.fcb-payment-page-body footer,body.fcb-payment-page-body .site-footer,body.fcb-payment-page-body .footer,body.fcb-payment-page-body .footer-wrapper,body.fcb-payment-page-body .footer-container,body.fcb-payment-page-body .etheme-footer-wrapper,body.fcb-payment-page-body .elementor-location-footer{width:100vw!important;max-width:100vw!important;margin-left:calc(50% - 50vw)!important;margin-right:calc(50% - 50vw)!important;box-sizing:border-box!important}
body.fcb-payment-page-body header,body.fcb-payment-page-body .site-header,body.fcb-payment-page-body .header-wrapper,body.fcb-payment-page-body .etheme-header-wrapper,body.fcb-payment-page-body .elementor-location-header{width:100vw!important;max-width:100vw!important;margin-left:calc(50% - 50vw)!important;margin-right:calc(50% - 50vw)!important;box-sizing:border-box!important}
body.fcb-payment-page-body .page-wrapper,body.fcb-payment-page-body .template-container,body.fcb-payment-page-body .content-page,body.fcb-payment-page-body .site-content{overflow-x:hidden!important}
@media(max-width:860px){body.fcb-payment-page-body .fcb-payment-page{padding:24px 0 38px!important}body.fcb-payment-page-body .fcb-payment-shell{width:min(100% - 20px,1240px)!important}body.fcb-payment-page-body .fcb-payment-layout{grid-template-columns:1fr!important;gap:13px!important}body.fcb-payment-page-body .fcb-payment-header{text-align:left!important;margin-bottom:16px!important}}
@media(max-width:520px){body.fcb-payment-page-body .fcb-payment-shell{width:min(100% - 16px,1240px)!important}body.fcb-payment-page-body .fcb-payment-page{padding-top:18px!important}.fcb-payment-summary{position:static!important}}

/* v0.4.0 vraie page WordPress paiement formation */
.fcb-payment-empty,.fcb-payment-error,.fcb-payment-success{max-width:760px;margin:30px auto;padding:22px;border:1px solid #e7edf4;border-radius:18px;background:#fff;box-shadow:0 12px 34px rgba(15,23,42,.08);color:#344054}.fcb-payment-error strong,.fcb-payment-success strong,.fcb-payment-empty strong{display:block;margin-bottom:8px;color:#0b172a;font-size:18px}.fcb-payment-page-body .fcb-payment-page{max-width:100%;}

/* v0.5.1 — Public booking module 9/10 pass: wider layout, stronger cards, better date ranges, cleaner mobile. */
.fcb-booking.fcb-booking-wide{
  width:min(1420px, calc(100vw - 48px));
  max-width:1420px;
  margin-left:auto;
  margin-right:auto;
  transform:none;
  position:relative;
}
.fcb-booking .fcb-booking-title{
  font-size:22px;
  margin-bottom:16px;
  letter-spacing:-.02em;
}
.fcb-booking .fcb-sessions-list{gap:14px}
.fcb-booking .fcb-session-card{
  grid-template-columns:136px 238px minmax(0,1fr) 250px !important;
  min-height:156px;
  gap:24px;
  border-radius:12px;
  box-shadow:0 10px 28px rgba(15,23,42,.07);
}
.fcb-booking .fcb-session-card:before{width:7px}
.fcb-booking .fcb-date-box{
  min-height:156px;
  padding:16px 12px 16px 20px;
  background:linear-gradient(180deg, rgba(0,121,107,.035), rgba(255,255,255,0));
}
.fcb-booking .fcb-date-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:850;
  color:#667085;
  margin-bottom:8px;
}
.fcb-booking .fcb-date-day{
  font-size:27px;
  line-height:1.02;
  color:var(--fcb-primary-dark);
  font-weight:950;
  letter-spacing:-.045em;
  max-width:108px;
}
.fcb-booking .fcb-date-month{
  font-size:20px;
  line-height:1.08;
  margin-top:4px;
  color:var(--fcb-primary-dark);
  font-weight:900;
  text-transform:lowercase;
}
.fcb-booking .fcb-date-time{
  margin-top:11px;
  font-size:13px;
  color:#344054;
  font-weight:800;
}
.fcb-booking .fcb-session-image-wrap{
  width:238px;
  height:124px;
  border-radius:9px;
}
.fcb-booking .fcb-session-main{padding:20px 0 18px}
.fcb-booking .fcb-card-badges{gap:7px;margin-bottom:8px}
.fcb-booking .fcb-card-badges span{
  font-size:11px;
  padding:5px 10px;
  border-color:rgba(0,121,107,.16);
}
.fcb-booking .fcb-session-title{
  font-size:19px;
  line-height:1.2;
  margin-bottom:7px;
  letter-spacing:-.018em;
}
.fcb-booking .fcb-session-address{
  font-size:15px;
  line-height:1.35;
  margin-bottom:4px;
}
.fcb-booking .fcb-session-description{
  font-size:14px;
  line-height:1.45;
  max-width:780px;
  margin-top:6px;
}
.fcb-booking .fcb-session-availability{
  font-size:15px;
  margin-top:5px;
}
.fcb-booking .fcb-session-action{
  padding:20px 22px 20px 0;
  gap:13px;
}
.fcb-booking .fcb-session-price{
  font-size:24px;
  letter-spacing:-.035em;
}
.fcb-booking .fcb-btn{
  min-height:44px;
  padding:12px 18px;
  border-radius:7px;
  font-size:13px;
}
.fcb-booking .fcb-link-btn{font-size:12px}
@media (min-width: 768px) and (max-width: 1220px){
  .fcb-booking.fcb-booking-wide{width:min(100%, calc(100vw - 34px));margin-left:auto;transform:none}
  .fcb-booking .fcb-session-card{grid-template-columns:120px 200px minmax(0,1fr) 220px !important;gap:18px}
  .fcb-booking .fcb-session-image-wrap{width:200px;height:116px}
  .fcb-booking .fcb-session-title{font-size:18px}
  .fcb-booking .fcb-session-price{font-size:21px}
}
@media (max-width: 767px){
  .fcb-booking.fcb-booking-wide{
    width:100%;
    max-width:100%;
    margin-left:auto;
    transform:none;
  }
  .fcb-booking .fcb-booking-title{
    font-size:17px;
    margin:0 0 10px;
    letter-spacing:-.01em;
  }
  .fcb-booking .fcb-sessions-list{gap:14px}
  .fcb-booking .fcb-session-card{
    display:block;
    min-height:0;
    padding:13px;
    border-radius:12px;
    box-shadow:0 8px 22px rgba(15,23,42,.08);
  }
  .fcb-booking .fcb-session-card:before{height:5px;width:auto}
  .fcb-booking .fcb-date-box{
    min-height:0;
    border-right:0;
    padding:0 0 10px;
    margin:0;
    background:transparent;
    display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    justify-content:flex-start;
    gap:4px 6px;
    text-align:left;
  }
  .fcb-booking .fcb-date-label{
    font-size:11px;
    margin:0;
    color:#667085;
    width:auto;
  }
  .fcb-booking .fcb-date-day{
    font-size:16px;
    line-height:1.15;
    letter-spacing:-.02em;
    max-width:none;
  }
  .fcb-booking .fcb-date-month{
    font-size:16px;
    line-height:1.15;
    margin:0;
  }
  .fcb-booking .fcb-date-time{
    width:100%;
    margin:2px 0 0;
    font-size:12px;
    color:#667085;
  }
  .fcb-booking .fcb-session-image-wrap{
    width:100%;
    height:auto;
    aspect-ratio:16/9;
    border-radius:9px;
    margin:0 0 12px;
  }
  .fcb-booking .fcb-session-main{padding:0}
  .fcb-booking .fcb-card-badges{gap:5px;margin-bottom:7px}
  .fcb-booking .fcb-card-badges span{
    font-size:10px;
    padding:4px 7px;
    font-weight:800;
  }
  .fcb-booking .fcb-session-title{
    font-size:15px;
    line-height:1.28;
    margin-bottom:6px;
  }
  .fcb-booking .fcb-session-address{
    font-size:13px;
    line-height:1.35;
  }
  .fcb-booking .fcb-session-description{
    font-size:12px;
    line-height:1.4;
    margin-top:5px;
  }
  .fcb-booking .fcb-session-availability{
    font-size:13px;
    line-height:1.35;
    margin-top:5px;
  }
  .fcb-booking .fcb-session-action{
    padding:13px 0 0;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:9px 10px;
  }
  .fcb-booking .fcb-session-price{
    font-size:17px;
    white-space:normal;
    letter-spacing:-.02em;
  }
  .fcb-booking .fcb-btn{
    min-height:40px;
    padding:10px 12px;
    border-radius:7px;
    font-size:12px;
  }
  .fcb-booking .fcb-link-btn{
    grid-column:1 / -1;
    justify-self:end;
    font-size:11px;
  }
}
@media (max-width: 420px){
  .fcb-booking .fcb-session-action{grid-template-columns:1fr}
  .fcb-booking .fcb-btn{width:100%}
  .fcb-booking .fcb-link-btn{justify-self:center}
}

/* v0.5.2 — Public card polish: premium date block + taller desktop images. */
@media (min-width: 1024px){
  .fcb-booking.fcb-booking-wide{
    width:min(1420px, calc(100vw - 40px));
  }
  .fcb-booking .fcb-session-card{
    grid-template-columns:148px 292px minmax(0,1fr) 250px !important;
    min-height:178px;
    gap:26px;
    border-radius:14px;
  }
  .fcb-booking .fcb-date-box{
    min-height:178px;
    padding:18px 14px 18px 22px;
    background:linear-gradient(180deg, rgba(0,121,107,.055), rgba(255,255,255,.96));
  }
  .fcb-booking .fcb-date-label{
    font-size:11px;
    margin-bottom:10px;
    letter-spacing:.09em;
    opacity:.82;
  }
  .fcb-booking .fcb-date-day{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    width:100%;
    color:var(--fcb-primary-dark);
    font-size:35px;
    line-height:.95;
    font-weight:950;
    letter-spacing:-.055em;
    white-space:nowrap;
    max-width:none;
  }
  .fcb-booking .fcb-date-range-sep{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:26px;
    height:22px;
    padding:0 7px;
    border-radius:999px;
    border:1px solid rgba(0,121,107,.20);
    background:#fff;
    color:#60707a;
    font-size:11px;
    line-height:1;
    font-weight:900;
    letter-spacing:0;
    text-transform:uppercase;
  }
  .fcb-booking .fcb-date-range-sep-wide{
    height:auto;
    min-width:0;
    padding:0;
    border:0;
    background:transparent;
    font-size:14px;
    text-transform:none;
  }
  .fcb-booking .fcb-date-month{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:8px;
    padding:4px 12px 5px;
    border-radius:999px;
    background:rgba(0,121,107,.08);
    color:var(--fcb-primary-dark);
    font-size:16px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.01em;
    text-transform:lowercase;
  }
  .fcb-booking .fcb-date-time{
    margin-top:12px;
    font-size:12px;
    color:#475467;
    font-weight:800;
  }
  .fcb-booking .fcb-session-image-wrap{
    width:292px;
    height:146px;
    border-radius:10px;
  }
  .fcb-booking .fcb-session-main{padding:22px 0 20px}
  .fcb-booking .fcb-session-title{font-size:20px;margin-bottom:8px}
}
@media (min-width: 768px) and (max-width: 1220px){
  .fcb-booking .fcb-session-card{grid-template-columns:132px 230px minmax(0,1fr) 220px !important;min-height:166px;gap:20px}
  .fcb-booking .fcb-date-box{min-height:166px}
  .fcb-booking .fcb-session-image-wrap{width:230px;height:134px}
  .fcb-booking .fcb-date-day{font-size:30px;gap:5px}
  .fcb-booking .fcb-date-month{font-size:15px}
}
@media (max-width: 767px){
  .fcb-booking .fcb-date-box{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:2px 8px;
    padding:0 0 9px;
  }
  .fcb-booking .fcb-date-label{
    grid-row:1 / span 2;
    align-self:center;
    padding:5px 7px;
    border-radius:999px;
    background:rgba(0,121,107,.08);
    color:var(--fcb-primary-dark);
    font-size:9px;
    line-height:1;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-weight:900;
  }
  .fcb-booking .fcb-date-day{
    display:flex;
    align-items:center;
    gap:4px;
    font-size:15px;
    line-height:1.1;
    letter-spacing:-.015em;
  }
  .fcb-booking .fcb-date-range-sep{
    font-size:10px;
    font-weight:850;
    color:#667085;
  }
  .fcb-booking .fcb-date-month{
    font-size:13px;
    line-height:1.1;
    color:#667085;
    font-weight:800;
  }
  .fcb-booking .fcb-date-time{
    grid-column:2;
    font-size:11px;
    margin-top:1px;
  }
  .fcb-booking .fcb-session-image-wrap{aspect-ratio:16/8.6}
}


/* v0.5.3 — Public card refinement: taller desktop visuals, cleaner date range, mobile reverted to simpler layout. */
@media (min-width: 1024px){
  .fcb-booking .fcb-session-card{
    grid-template-columns:148px 330px minmax(0,1fr) 250px !important;
    min-height:204px;
    gap:28px;
  }
  .fcb-booking .fcb-date-box{
    min-height:204px;
  }
  .fcb-booking .fcb-session-image-wrap{
    width:330px;
    height:168px;
    border-radius:11px;
  }
  .fcb-booking .fcb-session-main{
    padding:25px 0 23px;
  }
  .fcb-booking .fcb-session-action{
    padding-top:24px;
    padding-bottom:24px;
  }
  .fcb-booking .fcb-date-range-sep{
    display:inline;
    min-width:0;
    height:auto;
    padding:0 4px;
    border:0;
    border-radius:0;
    background:transparent;
    color:#667085;
    font-size:13px;
    line-height:1;
    font-weight:850;
    letter-spacing:0;
    text-transform:lowercase;
  }
}
@media (min-width: 768px) and (max-width: 1220px){
  .fcb-booking .fcb-session-card{
    grid-template-columns:132px 250px minmax(0,1fr) 220px !important;
    min-height:178px;
  }
  .fcb-booking .fcb-date-box{min-height:178px}
  .fcb-booking .fcb-session-image-wrap{width:250px;height:144px}
  .fcb-booking .fcb-date-range-sep{
    border:0;
    background:transparent;
    padding:0 3px;
    min-width:0;
    color:#667085;
    font-size:12px;
    text-transform:lowercase;
  }
}
@media (max-width: 767px){
  .fcb-booking .fcb-date-box{
    min-height:0 !important;
    border-right:0 !important;
    padding:0 0 8px !important;
    margin:0 !important;
    background:transparent !important;
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:wrap !important;
    align-items:baseline !important;
    justify-content:flex-start !important;
    gap:4px 6px !important;
    text-align:left !important;
  }
  .fcb-booking .fcb-date-label{
    display:inline !important;
    width:auto !important;
    grid-row:auto !important;
    padding:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#667085 !important;
    font-size:11px !important;
    line-height:1.15 !important;
    letter-spacing:.04em !important;
    text-transform:none !important;
    font-weight:700 !important;
    margin:0 !important;
  }
  .fcb-booking .fcb-date-day{
    display:flex !important;
    align-items:baseline !important;
    gap:4px !important;
    font-size:15px !important;
    line-height:1.15 !important;
    letter-spacing:-.015em !important;
    max-width:none !important;
    color:var(--fcb-primary-dark) !important;
    font-weight:850 !important;
  }
  .fcb-booking .fcb-date-range-sep{
    border:0 !important;
    background:transparent !important;
    padding:0 !important;
    min-width:0 !important;
    height:auto !important;
    color:#667085 !important;
    font-size:11px !important;
    line-height:1 !important;
    font-weight:750 !important;
    text-transform:lowercase !important;
  }
  .fcb-booking .fcb-date-month{
    font-size:15px !important;
    line-height:1.15 !important;
    margin:0 !important;
    color:var(--fcb-primary-dark) !important;
    font-weight:850 !important;
    background:transparent !important;
    padding:0 !important;
    border-radius:0 !important;
  }
  .fcb-booking .fcb-date-time{
    width:100% !important;
    grid-column:auto !important;
    margin:1px 0 0 !important;
    font-size:11px !important;
    color:#667085 !important;
  }
  .fcb-booking .fcb-session-image-wrap{
    aspect-ratio:16/9 !important;
    margin-bottom:12px !important;
  }
}

/* v0.5.4 — Public module premium matching approved mockup */
.fcb-booking.fcb-booking-wide{
  width:min(1420px, calc(100vw - 56px)) !important;
  max-width:1420px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  transform:none !important;
}
.fcb-booking .fcb-booking-title{
  font-size:26px !important;
  line-height:1.15 !important;
  margin:0 0 18px !important;
  letter-spacing:-.035em !important;
  font-weight:900 !important;
  color:#0b172a !important;
}
.fcb-booking .fcb-sessions-list{
  gap:16px !important;
}
@media (min-width:1024px){
  .fcb-booking .fcb-session-card{
    display:grid !important;
    grid-template-columns:158px 360px minmax(0,1fr) 265px !important;
    gap:30px !important;
    align-items:stretch !important;
    min-height:222px !important;
    padding:0 !important;
    border:1px solid #dde7ee !important;
    border-radius:16px !important;
    background:#fff !important;
    box-shadow:0 14px 32px rgba(15,23,42,.065) !important;
    overflow:hidden !important;
  }
  .fcb-booking .fcb-session-card:before{
    width:7px !important;
    height:auto !important;
    border-radius:16px 0 0 16px !important;
  }
  .fcb-booking .fcb-date-box{
    min-height:222px !important;
    padding:28px 18px 24px 30px !important;
    border-right:1px solid #e6eef3 !important;
    background:linear-gradient(180deg, rgba(0,121,107,.05), rgba(248,252,251,.72)) !important;
    text-align:left !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:flex-start !important;
  }
  .fcb-booking .fcb-date-label{
    position:relative !important;
    font-size:12px !important;
    line-height:1 !important;
    text-transform:uppercase !important;
    letter-spacing:.085em !important;
    font-weight:900 !important;
    color:#475467 !important;
    opacity:.9 !important;
    margin:0 0 15px !important;
    padding-left:22px !important;
  }
  .fcb-booking .fcb-date-label:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:14px;
    height:14px;
    transform:translateY(-50%);
    background-repeat:no-repeat;
    background-position:center;
    background-size:14px 14px;
    opacity:.95;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b6259' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  }
  .fcb-booking .fcb-date-day{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:9px !important;
    width:100% !important;
    max-width:none !important;
    font-size:38px !important;
    line-height:.95 !important;
    color:#0b6259 !important;
    font-weight:950 !important;
    letter-spacing:-.055em !important;
    white-space:nowrap !important;
  }
  .fcb-booking .fcb-date-range-sep{
    display:inline !important;
    min-width:0 !important;
    height:auto !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#667085 !important;
    font-size:30px !important;
    line-height:.9 !important;
    font-weight:650 !important;
    letter-spacing:-.05em !important;
    text-transform:none !important;
  }
  .fcb-booking .fcb-date-range-sep-wide{
    font-size:18px !important;
    color:#0b6259 !important;
    font-weight:900 !important;
  }
  .fcb-booking .fcb-date-month{
    display:block !important;
    margin:10px 0 0 !important;
    padding:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#00796B !important;
    font-size:22px !important;
    line-height:1.05 !important;
    font-weight:900 !important;
    letter-spacing:-.02em !important;
    text-transform:lowercase !important;
  }
  .fcb-booking .fcb-date-time{
    margin:18px 0 0 !important;
    padding-top:16px !important;
    width:100% !important;
    border-top:1px solid rgba(0,121,107,.16) !important;
    color:#344054 !important;
    font-size:13px !important;
    line-height:1.2 !important;
    font-weight:800 !important;
  }
  .fcb-booking .fcb-session-image-wrap{
    align-self:center !important;
    width:360px !important;
    height:190px !important;
    margin:0 !important;
    border-radius:11px !important;
    box-shadow:0 10px 24px rgba(15,23,42,.10) !important;
    overflow:hidden !important;
  }
  .fcb-booking .fcb-session-image{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }
  .fcb-booking .fcb-session-main{
    padding:34px 0 30px !important;
    min-width:0 !important;
  }
  .fcb-booking .fcb-card-badges{
    gap:8px !important;
    margin:0 0 14px !important;
  }
  .fcb-booking .fcb-card-badges span{
    font-size:12px !important;
    line-height:1 !important;
    padding:7px 11px !important;
    border-radius:999px !important;
    background:rgba(0,121,107,.075) !important;
    border:1px solid rgba(0,121,107,.18) !important;
    color:#006e62 !important;
    font-weight:850 !important;
  }
  .fcb-booking .fcb-session-title{
    font-size:24px !important;
    line-height:1.15 !important;
    margin:0 0 11px !important;
    color:#0b172a !important;
    letter-spacing:-.035em !important;
    font-weight:900 !important;
  }
  .fcb-booking .fcb-session-address{
    font-size:15px !important;
    line-height:1.45 !important;
    margin:0 0 14px !important;
    color:#344054 !important;
  }
  .fcb-booking .fcb-session-description{
    font-size:14px !important;
    line-height:1.45 !important;
    color:#475467 !important;
    max-width:720px !important;
    margin:0 0 12px !important;
  }
  .fcb-booking .fcb-session-availability{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    margin:0 !important;
    font-size:15px !important;
    line-height:1.3 !important;
    color:#344054 !important;
  }
  .fcb-booking .fcb-session-availability:before{
    content:"✓";
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    border-radius:50%;
    color:#fff;
    background:var(--fcb-primary);
    font-size:12px;
    font-weight:900;
    flex:0 0 auto;
  }
  .fcb-booking .fcb-session-action{
    padding:36px 30px 32px 30px !important;
    border-left:1px solid #e4ebf0 !important;
    align-items:center !important;
    justify-content:center !important;
    gap:16px !important;
  }
  .fcb-booking .fcb-session-price{
    font-size:27px !important;
    line-height:1.05 !important;
    color:#004f49 !important;
    font-weight:950 !important;
    letter-spacing:-.045em !important;
    white-space:nowrap !important;
  }
  .fcb-booking .fcb-btn{
    min-height:54px !important;
    min-width:178px !important;
    padding:15px 22px !important;
    border-radius:10px !important;
    font-size:15px !important;
    font-weight:900 !important;
    box-shadow:0 12px 24px rgba(0,121,107,.18) !important;
  }
  .fcb-booking .fcb-link-btn{
    font-size:14px !important;
    font-weight:850 !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
  }
  .fcb-booking .fcb-link-btn:after{
    content:"→";
    font-size:16px;
    line-height:1;
  }
}
@media (min-width:1024px) and (max-width:1320px){
  .fcb-booking.fcb-booking-wide{width:min(1220px, calc(100vw - 40px)) !important;}
  .fcb-booking .fcb-session-card{grid-template-columns:140px 300px minmax(0,1fr) 230px !important;gap:22px !important;min-height:202px !important;}
  .fcb-booking .fcb-date-box{min-height:202px !important;padding-left:24px !important;}
  .fcb-booking .fcb-session-image-wrap{width:300px !important;height:170px !important;}
  .fcb-booking .fcb-session-title{font-size:21px !important;}
  .fcb-booking .fcb-session-price{font-size:24px !important;}
}
@media (min-width:768px) and (max-width:1023px){
  .fcb-booking.fcb-booking-wide{width:min(100%, calc(100vw - 30px)) !important;margin-left:auto !important;transform:none !important;}
  .fcb-booking .fcb-session-card{grid-template-columns:126px 220px minmax(0,1fr) 205px !important;gap:18px !important;min-height:176px !important;}
  .fcb-booking .fcb-date-box{min-height:176px !important;padding:18px 12px 16px 20px !important;}
  .fcb-booking .fcb-date-day{font-size:28px !important;gap:5px !important;}
  .fcb-booking .fcb-date-range-sep{font-size:20px !important;}
  .fcb-booking .fcb-date-month{font-size:15px !important;}
  .fcb-booking .fcb-session-image-wrap{width:220px !important;height:140px !important;}
  .fcb-booking .fcb-session-main{padding:20px 0 !important;}
  .fcb-booking .fcb-session-title{font-size:18px !important;}
  .fcb-booking .fcb-session-action{padding:22px 18px !important;}
  .fcb-booking .fcb-session-price{font-size:21px !important;}
  .fcb-booking .fcb-btn{min-width:145px !important;min-height:44px !important;font-size:13px !important;}
}
@media (max-width:767px){
  .fcb-booking.fcb-booking-wide{width:100% !important;max-width:100% !important;margin-left:auto !important;transform:none !important;}
  .fcb-booking .fcb-booking-title{font-size:18px !important;margin-bottom:12px !important;}
  .fcb-booking .fcb-session-card{
    display:block !important;
    min-height:0 !important;
    padding:13px !important;
    border-radius:14px !important;
    background:#fff !important;
    border:1px solid #dde7ee !important;
    box-shadow:0 10px 24px rgba(15,23,42,.08) !important;
    overflow:hidden !important;
  }
  .fcb-booking .fcb-session-card:before{left:0 !important;right:0 !important;top:auto !important;bottom:0 !important;width:auto !important;height:5px !important;border-radius:0 !important;}
  .fcb-booking .fcb-date-box{
    display:flex !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:4px 6px !important;
    padding:0 0 10px !important;
    margin:0 !important;
    border:0 !important;
    background:transparent !important;
    text-align:left !important;
  }
  .fcb-booking .fcb-date-label{font-size:11px !important;color:#667085 !important;font-weight:750 !important;text-transform:none !important;letter-spacing:0 !important;margin:0 !important;padding:0 !important;background:transparent !important;}
  .fcb-booking .fcb-date-label:before{display:none !important;}
  .fcb-booking .fcb-date-day{font-size:15px !important;line-height:1.15 !important;font-weight:850 !important;letter-spacing:-.015em !important;display:flex !important;gap:4px !important;color:var(--fcb-primary-dark) !important;}
  .fcb-booking .fcb-date-range-sep{font-size:13px !important;color:#667085 !important;font-weight:650 !important;padding:0 !important;border:0 !important;background:transparent !important;}
  .fcb-booking .fcb-date-month{font-size:15px !important;line-height:1.15 !important;font-weight:850 !important;color:var(--fcb-primary-dark) !important;margin:0 !important;padding:0 !important;background:transparent !important;}
  .fcb-booking .fcb-date-time{width:100% !important;margin:2px 0 0 !important;font-size:11px !important;color:#667085 !important;font-weight:700 !important;}
  .fcb-booking .fcb-session-image-wrap{width:100% !important;height:auto !important;aspect-ratio:16/9 !important;border-radius:10px !important;margin:0 0 12px !important;box-shadow:none !important;}
  .fcb-booking .fcb-session-main{padding:0 !important;}
  .fcb-booking .fcb-card-badges{gap:5px !important;margin:0 0 8px !important;}
  .fcb-booking .fcb-card-badges span{font-size:10px !important;padding:4px 7px !important;}
  .fcb-booking .fcb-session-title{font-size:15px !important;line-height:1.28 !important;margin:0 0 6px !important;letter-spacing:-.015em !important;}
  .fcb-booking .fcb-session-address{font-size:13px !important;line-height:1.35 !important;margin:0 0 4px !important;}
  .fcb-booking .fcb-session-description{font-size:12px !important;line-height:1.4 !important;margin:4px 0 6px !important;}
  .fcb-booking .fcb-session-availability{font-size:13px !important;margin:4px 0 0 !important;gap:5px !important;}
  .fcb-booking .fcb-session-availability:before{display:none !important;}
  .fcb-booking .fcb-session-action{display:grid !important;grid-template-columns:1fr auto !important;gap:9px 10px !important;align-items:center !important;border:0 !important;padding:13px 0 0 !important;}
  .fcb-booking .fcb-session-price{font-size:17px !important;letter-spacing:-.02em !important;}
  .fcb-booking .fcb-btn{min-height:40px !important;min-width:0 !important;padding:10px 12px !important;border-radius:8px !important;font-size:12px !important;}
  .fcb-booking .fcb-link-btn{grid-column:1 / -1 !important;justify-self:end !important;font-size:11px !important;}
}
@media (max-width:420px){
  .fcb-booking .fcb-session-action{grid-template-columns:1fr !important;}
  .fcb-booking .fcb-btn{width:100% !important;}
  .fcb-booking .fcb-link-btn{justify-self:center !important;}
}


/* v0.5.6 — audit fixes: modal viewport stability + safe wide centering */
.fcb-booking.fcb-booking-wide{
  margin-left:auto !important;
  margin-right:auto !important;
  transform:none !important;
}
.fcb-booking .fcb-modal{
  position:fixed !important;
  inset:0 !important;
}
.fcb-booking .fcb-date-label:before{
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:14px 14px !important;
}


/* v0.5.7 — viewport centering fix for wide booking module on constrained theme containers */
.fcb-booking.fcb-booking-wide{
  width:min(1420px, calc(100vw - 56px)) !important;
  max-width:min(1420px, calc(100vw - 56px)) !important;
  position:relative !important;
  left:50% !important;
  margin-left:calc(-1 * min(710px, calc((100vw - 56px) / 2))) !important;
  margin-right:0 !important;
  transform:none !important;
}
@media (max-width:1270px){
  .fcb-booking.fcb-booking-wide{
    width:min(1220px, calc(100vw - 40px)) !important;
    max-width:min(1220px, calc(100vw - 40px)) !important;
    left:50% !important;
    margin-left:calc(-1 * min(610px, calc((100vw - 40px) / 2))) !important;
    margin-right:0 !important;
  }
}
@media (max-width:1024px){
  .fcb-booking.fcb-booking-wide{
    width:min(100%, calc(100vw - 30px)) !important;
    max-width:min(100%, calc(100vw - 30px)) !important;
    left:auto !important;
    position:relative !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}


/* v0.5.8 — droit de rétractation / exécution immédiate */
.fcb-withdrawal-field{
  background:linear-gradient(135deg, rgba(216,135,0,.075), #fff) !important;
  border-color:rgba(216,135,0,.28) !important;
}
.fcb-withdrawal-field span{
  display:grid !important;
  gap:6px !important;
}
.fcb-withdrawal-field strong{
  color:#8a5400 !important;
  font-size:13px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
}
.fcb-withdrawal-field em{
  color:#344054 !important;
  font-style:normal !important;
  font-size:12px !important;
  line-height:1.42 !important;
  font-weight:650 !important;
}
@media (max-width:767px){
  .fcb-withdrawal-field strong{font-size:12px !important;}
  .fcb-withdrawal-field em{font-size:11.5px !important;}
}

/* v0.5.9 — CGV formations intégrées */
.fcb-terms-page{
  --fcb-primary:#00796B;
  --fcb-primary-dark:#005F54;
  max-width:980px;
  margin:0 auto;
  padding:34px 18px 54px;
  color:#162033;
  font-family:inherit;
}
.fcb-terms-header{
  border:1px solid #e4e9ef;
  background:linear-gradient(135deg, rgba(0,121,107,.08), #fff);
  border-radius:18px;
  padding:28px 30px;
  margin-bottom:24px;
}
.fcb-terms-header span{
  display:inline-flex;
  color:var(--fcb-primary-dark);
  background:rgba(0,121,107,.08);
  border:1px solid rgba(0,121,107,.16);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.fcb-terms-header h1{
  margin:14px 0 8px;
  color:#0b172a;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:950;
}
.fcb-terms-header p{
  margin:0;
  color:#475467;
  font-size:15px;
  line-height:1.55;
}
.fcb-terms-content{
  border:1px solid #e4e9ef;
  border-radius:18px;
  background:#fff;
  padding:30px;
  box-shadow:0 12px 30px rgba(15,23,42,.045);
}
.fcb-terms-content h3{
  margin:30px 0 12px;
  padding-top:22px;
  border-top:1px solid #edf1f5;
  color:#0b172a;
  font-size:21px;
  line-height:1.25;
  font-weight:900;
  letter-spacing:-.02em;
}
.fcb-terms-content h3:first-child{margin-top:0;padding-top:0;border-top:0}
.fcb-terms-content h4{
  margin:18px 0 8px;
  color:var(--fcb-primary-dark);
  font-size:16px;
  font-weight:900;
}
.fcb-terms-content p,
.fcb-terms-content li{
  color:#344054;
  font-size:15px;
  line-height:1.65;
}
.fcb-terms-content p{margin:0 0 12px}
.fcb-terms-content ul{margin:8px 0 16px 20px;padding:0}
.fcb-terms-content a{color:var(--fcb-primary-dark);font-weight:800;text-decoration:underline}
@media (max-width:767px){
  .fcb-terms-page{padding:20px 12px 38px}
  .fcb-terms-header,.fcb-terms-content{padding:20px;border-radius:14px}
  .fcb-terms-header h1{font-size:27px}
  .fcb-terms-content h3{font-size:18px}
  .fcb-terms-content p,.fcb-terms-content li{font-size:14px}
}


/* v0.6.0 — prix TTC allégé + information TVA contextuelle */
.fcb-session-price,
.fcb-modal-price-line{
  display:inline-flex !important;
  align-items:baseline !important;
  justify-content:center !important;
  gap:4px !important;
  position:relative !important;
  overflow:visible !important;
}
.fcb-price-amount{
  font:inherit !important;
  color:inherit !important;
  letter-spacing:inherit !important;
  white-space:nowrap !important;
}
.fcb-price-tax-label{
  font-size:.52em !important;
  line-height:1 !important;
  font-weight:850 !important;
  letter-spacing:0 !important;
  color:inherit !important;
  opacity:.78 !important;
  white-space:nowrap !important;
}
.fcb-price-info{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:17px !important;
  height:17px !important;
  flex:0 0 17px !important;
  margin-left:2px !important;
  border-radius:999px !important;
  outline:none !important;
  cursor:help !important;
  vertical-align:middle !important;
}
.fcb-price-info-icon{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:17px !important;
  height:17px !important;
  border:1px solid currentColor !important;
  border-radius:999px !important;
  font-size:11px !important;
  line-height:1 !important;
  font-family:Arial,sans-serif !important;
  font-weight:900 !important;
  color:var(--fcb-primary-dark) !important;
  background:#fff !important;
  opacity:.82 !important;
  box-sizing:border-box !important;
}
.fcb-price-info:hover .fcb-price-info-icon,
.fcb-price-info:focus .fcb-price-info-icon{
  color:#fff !important;
  background:var(--fcb-primary-dark) !important;
  opacity:1 !important;
}
.fcb-price-tooltip{
  position:absolute !important;
  top:calc(100% + 8px) !important;
  right:-8px !important;
  z-index:40 !important;
  width:220px !important;
  max-width:calc(100vw - 40px) !important;
  padding:9px 11px !important;
  border-radius:9px !important;
  background:#15212f !important;
  color:#fff !important;
  box-shadow:0 12px 30px rgba(15,23,42,.24) !important;
  font-size:12px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
  letter-spacing:0 !important;
  text-align:left !important;
  white-space:normal !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transform:translateY(-3px) !important;
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease !important;
}
.fcb-price-tooltip:before{
  content:"" !important;
  position:absolute !important;
  right:11px !important;
  bottom:100% !important;
  border:6px solid transparent !important;
  border-bottom-color:#15212f !important;
}
.fcb-price-info:hover .fcb-price-tooltip,
.fcb-price-info:focus .fcb-price-tooltip,
.fcb-price-info:focus-within .fcb-price-tooltip{
  opacity:1 !important;
  visibility:visible !important;
  transform:translateY(0) !important;
}
.fcb-modal-price-line{
  font-size:inherit !important;
  font-weight:inherit !important;
}
.fcb-modal-price-line .fcb-price-tax-label{
  font-size:.55em !important;
}
@media (max-width:767px){
  .fcb-session-price{
    justify-content:flex-start !important;
  }
  .fcb-price-tooltip{
    left:0 !important;
    right:auto !important;
    width:min(220px, calc(100vw - 54px)) !important;
  }
  .fcb-price-tooltip:before{
    left:8px !important;
    right:auto !important;
  }
}


/* v0.6.1 — icône info pleine + soulignement continu du lien détail */
.fcb-price-info-icon{
  color:#fff !important;
  background:#00796B !important;
  border-color:#00796B !important;
  opacity:1 !important;
}
.fcb-price-info:hover .fcb-price-info-icon,
.fcb-price-info:focus .fcb-price-info-icon{
  color:#fff !important;
  background:#005F54 !important;
  border-color:#005F54 !important;
}

.fcb-booking .fcb-link-btn{
  text-decoration:none !important;
  border-bottom:1px solid currentColor !important;
  padding-bottom:1px !important;
  line-height:1.15 !important;
}
.fcb-booking .fcb-link-btn:hover,
.fcb-booking .fcb-link-btn:focus{
  text-decoration:none !important;
  border-bottom-color:currentColor !important;
}


/* v0.6.2 — badges avantages complets */
.fcb-booking .fcb-card-badges{
  align-items:center !important;
  flex-wrap:wrap !important;
}
@media (min-width:1024px){
  .fcb-booking .fcb-card-badges span{
    font-size:11px !important;
    padding:6px 10px !important;
  }
}
@media (max-width:767px){
  .fcb-booking .fcb-card-badges{
    gap:5px !important;
  }
  .fcb-booking .fcb-card-badges span{
    font-size:9.5px !important;
    line-height:1.1 !important;
    padding:4px 7px !important;
  }
}


/* ==========================================================================
   v0.8.0 — couleurs par domaine + liens réellement sans apparence de bouton
   ========================================================================== */

.fcb-booking,
.fcb-payment-page{
  --fcb-primary-rgb:0,121,107;
}

/* Les couleurs importantes suivent la couleur propre à chaque domaine. */
.fcb-booking .fcb-date-label:before{
  background-image:none !important;
  background-color:var(--fcb-primary) !important;
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") !important;
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") !important;
  -webkit-mask-repeat:no-repeat !important;
  mask-repeat:no-repeat !important;
  -webkit-mask-position:center !important;
  mask-position:center !important;
  -webkit-mask-size:14px 14px !important;
  mask-size:14px 14px !important;
}

.fcb-booking .fcb-date-day,
.fcb-booking .fcb-date-range-sep-wide,
.fcb-booking .fcb-date-month,
.fcb-booking .fcb-session-price,
.fcb-booking .fcb-modal-price strong,
.fcb-booking .fcb-schedule-list span,
.fcb-booking .fcb-payment-options span strong,
.fcb-booking .fcb-reservation-summary strong,
.fcb-booking .fcb-booking-recap strong,
.fcb-booking .fcb-form-secure-pill,
.fcb-booking .fcb-back-link,
.fcb-booking .fcb-terms-field a{
  color:var(--fcb-primary-dark) !important;
}

.fcb-booking .fcb-session-title{
  color:#0b172a !important;
}

.fcb-booking .fcb-date-time{
  border-top-color:rgba(var(--fcb-primary-rgb),.18) !important;
}

.fcb-booking .fcb-card-badges span{
  color:var(--fcb-primary-dark) !important;
  background:rgba(var(--fcb-primary-rgb),.075) !important;
  border-color:rgba(var(--fcb-primary-rgb),.20) !important;
}

.fcb-booking .fcb-check-list li:before{
  color:var(--fcb-primary) !important;
  background:rgba(var(--fcb-primary-rgb),.11) !important;
}

.fcb-booking .fcb-payment-options label:has(input:checked),
.fcb-booking .fcb-customer-type label:has(input:checked){
  border-color:var(--fcb-primary) !important;
  background:rgba(var(--fcb-primary-rgb),.055) !important;
  box-shadow:0 0 0 2px rgba(var(--fcb-primary-rgb),.08) !important;
}

.fcb-booking .fcb-field input:focus,
.fcb-booking .fcb-field select:focus,
.fcb-booking .fcb-field textarea:focus,
.fcb-booking .fcb-participant-line input:focus{
  border-color:var(--fcb-primary) !important;
  box-shadow:0 0 0 3px rgba(var(--fcb-primary-rgb),.10) !important;
}

.fcb-booking .fcb-reservation-summary,
.fcb-booking .fcb-booking-recap div,
.fcb-booking .fcb-form-secure-pill{
  border-color:rgba(var(--fcb-primary-rgb),.17) !important;
  background:rgba(var(--fcb-primary-rgb),.055) !important;
}

.fcb-booking .fcb-modal-booking-box,
.fcb-booking .fcb-modal.is-form-step .fcb-payment-zone{
  background:linear-gradient(135deg,rgba(var(--fcb-primary-rgb),.06),#fff) !important;
}

.fcb-booking .fcb-modal-price{
  background:rgba(var(--fcb-primary-rgb),.055) !important;
  border-color:rgba(var(--fcb-primary-rgb),.14) !important;
}

.fcb-booking .fcb-btn{
  box-shadow:0 12px 24px rgba(var(--fcb-primary-rgb),.18) !important;
}

.fcb-booking .fcb-price-info-icon{
  color:#fff !important;
  background:var(--fcb-primary) !important;
  border-color:var(--fcb-primary) !important;
}

.fcb-booking .fcb-price-info:hover .fcb-price-info-icon,
.fcb-booking .fcb-price-info:focus .fcb-price-info-icon{
  color:#fff !important;
  background:var(--fcb-primary-dark) !important;
  border-color:var(--fcb-primary-dark) !important;
}

/* « Voir le détail » : lien texte, même si le thème force les boutons. */
.fcb-booking button.fcb-link-btn,
.fcb-booking .fcb-session-action button.fcb-link-btn{
  all:unset !important;
  box-sizing:border-box !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:7px !important;
  width:auto !important;
  min-width:0 !important;
  max-width:max-content !important;
  min-height:0 !important;
  height:auto !important;
  margin:0 !important;
  padding:2px 0 !important;
  border:0 !important;
  border-radius:0 !important;
  outline:0 !important;
  background:transparent !important;
  background-image:none !important;
  color:var(--fcb-primary-dark) !important;
  box-shadow:none !important;
  font:inherit !important;
  font-size:14px !important;
  line-height:1.25 !important;
  font-weight:850 !important;
  letter-spacing:0 !important;
  text-align:left !important;
  text-decoration:none !important;
  text-transform:none !important;
  cursor:pointer !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}

.fcb-booking button.fcb-link-btn:after{
  content:"→" !important;
  display:inline !important;
  font-size:16px !important;
  line-height:1 !important;
  transform:translateX(0) !important;
  transition:transform .15s ease !important;
}

.fcb-booking button.fcb-link-btn:hover,
.fcb-booking button.fcb-link-btn:focus-visible{
  color:var(--fcb-primary) !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  text-decoration:underline !important;
  text-underline-offset:3px !important;
}

.fcb-booking button.fcb-link-btn:hover:after,
.fcb-booking button.fcb-link-btn:focus-visible:after{
  transform:translateX(3px) !important;
}

/* Liens de la popup : itinéraire et téléphone sans bloc/bordure. */
.fcb-booking a.fcb-outline-btn{
  all:unset !important;
  box-sizing:border-box !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:6px !important;
  width:auto !important;
  min-width:0 !important;
  min-height:0 !important;
  margin:0 !important;
  padding:1px 0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  background-image:none !important;
  color:var(--fcb-primary-dark) !important;
  box-shadow:none !important;
  font:inherit !important;
  font-size:13px !important;
  line-height:1.35 !important;
  font-weight:850 !important;
  text-decoration:underline !important;
  text-decoration-thickness:1px !important;
  text-underline-offset:3px !important;
  text-transform:none !important;
  cursor:pointer !important;
}

.fcb-booking a.fcb-outline-btn:hover,
.fcb-booking a.fcb-outline-btn:focus-visible{
  color:var(--fcb-primary) !important;
  background:transparent !important;
  box-shadow:none !important;
}

/* Même correction sur la page de paiement. */
.fcb-payment-page .fcb-payment-kicker,
.fcb-payment-page .fcb-payment-summary-card{
  border-color:rgba(var(--fcb-primary-rgb),.16) !important;
  background:rgba(var(--fcb-primary-rgb),.06) !important;
}
.fcb-payment-page .fcb-payment-total strong{
  color:var(--fcb-primary-dark) !important;
}
.fcb-payment-page .fcb-payment-methods #place_order,
.fcb-payment-page .fcb-payment-methods button.button,
.fcb-payment-page .fcb-payment-methods input.button{
  box-shadow:0 12px 24px rgba(var(--fcb-primary-rgb),.22) !important;
}

@media (max-width:767px){
  .fcb-booking button.fcb-link-btn,
  .fcb-booking .fcb-session-action button.fcb-link-btn{
    grid-column:1 / -1 !important;
    justify-self:end !important;
    font-size:12px !important;
  }
}


/* ==========================================================================
   v0.8.1 — navigation et fermeture de la popup protégées du thème
   ========================================================================== */

/* Retour en haut du formulaire : simple lien texte, jamais un bouton bleu. */
.fcb-booking button.fcb-back-link{
  all:unset !important;
  box-sizing:border-box !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:6px !important;
  width:auto !important;
  min-width:0 !important;
  max-width:max-content !important;
  min-height:0 !important;
  height:auto !important;
  margin:0 !important;
  padding:3px 0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  background-image:none !important;
  box-shadow:none !important;
  color:var(--fcb-primary-dark) !important;
  font:inherit !important;
  font-size:13px !important;
  line-height:1.35 !important;
  font-weight:850 !important;
  letter-spacing:0 !important;
  text-align:left !important;
  text-decoration:none !important;
  text-transform:none !important;
  cursor:pointer !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}

.fcb-booking button.fcb-back-link:hover,
.fcb-booking button.fcb-back-link:focus-visible{
  color:var(--fcb-primary) !important;
  background:transparent !important;
  box-shadow:none !important;
  text-decoration:underline !important;
  text-underline-offset:3px !important;
}

/* Croix de fermeture : vrai bouton rond et compact. */
.fcb-booking button.fcb-modal-close{
  all:unset !important;
  box-sizing:border-box !important;
  position:absolute !important;
  top:14px !important;
  right:14px !important;
  z-index:30 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:38px !important;
  height:38px !important;
  min-width:38px !important;
  min-height:38px !important;
  margin:0 !important;
  padding:0 0 2px !important;
  border:1px solid rgba(15,23,42,.12) !important;
  border-radius:999px !important;
  background:#fff !important;
  background-image:none !important;
  color:#334155 !important;
  box-shadow:0 8px 22px rgba(15,23,42,.14) !important;
  font-family:Arial,Helvetica,sans-serif !important;
  font-size:24px !important;
  line-height:1 !important;
  font-weight:400 !important;
  text-align:center !important;
  text-decoration:none !important;
  text-transform:none !important;
  cursor:pointer !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}

.fcb-booking button.fcb-modal-close:hover,
.fcb-booking button.fcb-modal-close:focus-visible{
  border-color:rgba(var(--fcb-primary-rgb),.28) !important;
  background:rgba(var(--fcb-primary-rgb),.08) !important;
  color:var(--fcb-primary-dark) !important;
  box-shadow:0 8px 22px rgba(var(--fcb-primary-rgb),.16) !important;
  transform:none !important;
}

/* Bouton Retour du bas : secondaire blanc, texte lisible et bordure bleue. */
.fcb-booking .fcb-form-actions-inline button.fcb-outline-btn[data-fcb-prev-step]{
  all:unset !important;
  box-sizing:border-box !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  min-width:0 !important;
  min-height:48px !important;
  height:48px !important;
  margin:0 !important;
  padding:0 18px !important;
  border:1.5px solid var(--fcb-primary) !important;
  border-radius:10px !important;
  background:#fff !important;
  background-image:none !important;
  color:var(--fcb-primary-dark) !important;
  box-shadow:none !important;
  font:inherit !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:.04em !important;
  text-align:center !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}

.fcb-booking .fcb-form-actions-inline button.fcb-outline-btn[data-fcb-prev-step]:hover,
.fcb-booking .fcb-form-actions-inline button.fcb-outline-btn[data-fcb-prev-step]:focus-visible{
  border-color:var(--fcb-primary-dark) !important;
  background:rgba(var(--fcb-primary-rgb),.07) !important;
  color:var(--fcb-primary-dark) !important;
  box-shadow:0 0 0 3px rgba(var(--fcb-primary-rgb),.10) !important;
}

/* Le bouton principal garde un texte blanc, même si le thème force la couleur des boutons. */
.fcb-booking .fcb-form-actions-inline button.fcb-btn[type="submit"],
.fcb-booking .fcb-form-actions-inline button.fcb-btn{
  color:#fff !important;
}

/* La topbar garde une hauteur naturelle et ne transforme plus le retour en bloc. */
.fcb-booking .fcb-form-topbar{
  min-height:38px !important;
}

@media (max-width:767px){
  .fcb-booking button.fcb-modal-close{
    top:10px !important;
    right:10px !important;
    width:36px !important;
    height:36px !important;
    min-width:36px !important;
    min-height:36px !important;
  }

  .fcb-booking .fcb-form-topbar{
    align-items:flex-start !important;
  }

  .fcb-booking button.fcb-back-link{
    max-width:62% !important;
    font-size:12px !important;
  }

  .fcb-booking .fcb-form-secure-pill{
    white-space:normal !important;
    text-align:right !important;
  }
}


/* ==========================================================================
   v0.8.5 — largeur recalculée depuis le parent réel du shortcode
   ========================================================================== */

.fcb-booking.fcb-booking-wide{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  margin-left:0 !important;
  margin-right:0 !important;
  transform:none !important;
  position:relative !important;
  container-type:normal !important;
  container-name:none !important;
}

.fcb-booking .fcb-sessions-list,
.fcb-booking .fcb-session-card{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
}

.fcb-booking .fcb-session-card > *{
  min-width:0 !important;
}

@media(max-width:767px){
  .fcb-booking.fcb-booking-wide{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }
}


/* ==========================================================================
   v0.8.7 — page paiement : suppression du faux bandeau « Payer la commande »
   ========================================================================== */

body.fcb-payment-page-body .page-heading,
body.fcb-payment-page-body .woocommerce-page-title,
body.fcb-payment-page-body .woocommerce-breadcrumb,
body.fcb-payment-page-body .breadcrumbs,
body.fcb-payment-page-body .page-title-wrapper,
body.fcb-payment-page-body .page-title-section,
body.fcb-payment-page-body .entry-header:not(.fcb-payment-header){
  display:none !important;
  height:0 !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  overflow:hidden !important;
}

body.fcb-payment-page-body .site-header,
body.fcb-payment-page-body .header-wrapper,
body.fcb-payment-page-body .etheme-header-wrapper,
body.fcb-payment-page-body .elementor-location-header{
  width:100% !important;
  max-width:100% !important;
  margin-left:0 !important;
  margin-right:0 !important;
  transform:none !important;
}

body.fcb-payment-page-body .page-wrapper,
body.fcb-payment-page-body .template-container,
body.fcb-payment-page-body .content-page,
body.fcb-payment-page-body .site-content,
body.fcb-payment-page-body main.site-main{
  margin-top:0 !important;
  padding-top:0 !important;
}

body.fcb-payment-page-body .fcb-payment-page{
  margin-top:0 !important;
}


/* v0.9.0 — paiement natif limité aux sites satellites */
body.fcb-native-satellite-order-pay form#order_review{
  width:calc(100% - 32px);
  max-width:980px;
  margin:32px auto 60px;
}
body.fcb-native-satellite-order-pay form#order_review > .shop_table{
  display:none !important;
}
body.fcb-native-satellite-order-pay form#order_review #payment{
  border-radius:16px;
  overflow:hidden;
}
