/* ================================================================
   WP Formation Booking – Public Styles v1.1
   Design : moderne, épuré, attractif, accessible
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --wfb-primary:      #0f2d52;
    --wfb-accent:       #1e73e8;
    --wfb-accent-light: #e8f0fd;
    --wfb-success:      #16a34a;
    --wfb-success-bg:   #dcfce7;
    --wfb-warning:      #d97706;
    --wfb-warning-bg:   #fef3c7;
    --wfb-danger:       #dc2626;
    --wfb-danger-bg:    #fee2e2;
    --wfb-pending-bg:   #eff6ff;
    --wfb-text:         #1e293b;
    --wfb-muted:        #64748b;
    --wfb-border:       #e2e8f0;
    --wfb-bg:           #f8fafc;
    --wfb-white:        #ffffff;
    --wfb-radius-sm:    8px;
    --wfb-radius:       14px;
    --wfb-radius-lg:    20px;
    --wfb-shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --wfb-shadow:       0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --wfb-shadow-lg:    0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
    --wfb-font:         'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --wfb-transition:   all .2s cubic-bezier(.4,0,.2,1);
}

/* ---- Wrapper général ---- */
.wfb-formations-grid, .wfb-single-wrap, .wfb-standalone-form,
.wfb-no-formations, .wfb-confirmation, .wfb-error {
    font-family: var(--wfb-font);
    color: var(--wfb-text);
    line-height: 1.6;
    box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }

/* ================================================================
   GRILLE DE FORMATIONS
   ================================================================ */
.wfb-formations-grid {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}
.wfb-cols-1 { grid-template-columns: 1fr; }
.wfb-cols-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.wfb-cols-3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.wfb-cols-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* Card */
.wfb-formation-card {
    background: var(--wfb-white);
    border-radius: var(--wfb-radius);
    box-shadow: var(--wfb-shadow);
    overflow: hidden;
    border: 1px solid var(--wfb-border);
    display: flex;
    flex-direction: column;
    transition: var(--wfb-transition);
    position: relative;
}
.wfb-formation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wfb-shadow-lg);
    border-color: var(--wfb-accent);
}
.wfb-card-indisponible { opacity: .7; pointer-events: none; filter: grayscale(.3); }

.wfb-card-image {
    height: 210px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--wfb-primary) 0%, var(--wfb-accent) 100%);
}
.wfb-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.wfb-formation-card:hover .wfb-card-image img { transform: scale(1.06); }
.wfb-card-overlay-complet {
    position: absolute; inset: 0;
    background: rgba(220,38,38,.82);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; font-weight: 800;
    letter-spacing: .2em; font-family: var(--wfb-font);
}

.wfb-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.wfb-card-cat {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--wfb-accent);
}
.wfb-card-title {
    font-size: 1.1rem; font-weight: 700;
    color: var(--wfb-primary); margin: 0; line-height: 1.35;
}
.wfb-card-meta { display: flex; flex-direction: column; gap: 5px; }
.wfb-meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; color: var(--wfb-muted);
}
.wfb-icon { font-size: .9em; }
.wfb-card-description { font-size: .88rem; color: #475569; margin: 0; flex: 1; }

/* Jauge places */
.wfb-card-places { display: flex; flex-direction: column; gap: 6px; }
.wfb-places-bar-wrap { }
.wfb-places-bar {
    height: 5px; background: var(--wfb-border);
    border-radius: 99px; overflow: hidden;
}
.wfb-places-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wfb-success) 0%, #22c55e 100%);
    border-radius: 99px;
    transition: width .6s ease;
}

/* Badges */
.wfb-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; border-radius: 99px;
    font-size: .76rem; font-weight: 600;
    font-family: var(--wfb-font);
}
.wfb-badge-complet    { background: var(--wfb-danger-bg); color: var(--wfb-danger); }
.wfb-badge-warning    { background: var(--wfb-warning-bg); color: var(--wfb-warning); }
.wfb-badge-disponible { background: var(--wfb-success-bg); color: var(--wfb-success); }

.wfb-card-footer {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--wfb-border);
    margin-top: auto;
}
.wfb-price { display: flex; align-items: baseline; gap: 4px; }
.wfb-price-free { font-size: 1.15rem; font-weight: 800; color: var(--wfb-success); }
.wfb-price-amount { font-size: 1.3rem; font-weight: 800; color: var(--wfb-primary); }
.wfb-price-currency { font-size: .85rem; font-weight: 600; color: var(--wfb-muted); }

/* Boutons */
.wfb-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 20px;
    border-radius: var(--wfb-radius-sm);
    font-family: var(--wfb-font);
    font-size: .9rem; font-weight: 600;
    border: none; cursor: pointer;
    transition: var(--wfb-transition);
    text-decoration: none; white-space: nowrap;
    line-height: 1.4;
}
.wfb-btn-primary {
    background: linear-gradient(135deg, var(--wfb-accent) 0%, #1558c0 100%);
    color: #fff; box-shadow: 0 3px 10px rgba(30,115,232,.3);
}
.wfb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,115,232,.4);
    color: #fff;
}
.wfb-btn-primary:active { transform: translateY(0); }
.wfb-btn-secondary {
    background: var(--wfb-white);
    color: var(--wfb-text);
    border: 1.5px solid var(--wfb-border);
}
.wfb-btn-secondary:hover { background: var(--wfb-bg); color: var(--wfb-text); }
.wfb-btn-disabled {
    background: var(--wfb-bg); color: #94a3b8;
    cursor: not-allowed; opacity: .8;
    pointer-events: none;
}

/* ================================================================
   PAGE FORMATION COMPLÈTE [wfb_formation id="X"]
   ================================================================ */
.wfb-single-wrap { max-width: 1100px; margin: 0 auto; }

/* --- Héro --- */
.wfb-hero {
    position: relative;
    min-height: 380px;
    display: flex; align-items: flex-end;
    border-radius: var(--wfb-radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    background: linear-gradient(135deg, var(--wfb-primary) 0%, #1e40af 60%, var(--wfb-accent) 100%);
    background-size: cover;
    background-position: center;
}
.wfb-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        0deg,
        rgba(10,20,50,.92) 0%,
        rgba(10,20,50,.60) 50%,
        rgba(10,20,50,.25) 100%
    );
}
.wfb-hero-content {
    position: relative; z-index: 1;
    padding: 40px 44px;
    width: 100%;
}
.wfb-hero-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 99px;
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: rgba(255,255,255,.95);
    margin-bottom: 14px;
}
.wfb-hero-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800; line-height: 1.2;
    color: #fff; margin: 0 0 10px 0;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.wfb-hero-sub { color: rgba(255,255,255,.8); margin: 0 0 18px 0; font-size: 1rem; }
.wfb-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.wfb-chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 14px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 99px;
    color: #fff; font-size: .84rem; font-weight: 500;
}

/* --- Body layout --- */
.wfb-single-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* --- Info grid --- */
.wfb-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}
.wfb-info-card {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--wfb-white);
    border: 1px solid var(--wfb-border);
    border-radius: var(--wfb-radius);
    padding: 16px;
    box-shadow: var(--wfb-shadow-sm);
    transition: var(--wfb-transition);
}
.wfb-info-card:hover {
    border-color: var(--wfb-accent);
    box-shadow: 0 0 0 3px var(--wfb-accent-light);
}
.wfb-info-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.wfb-info-label { font-size: .75rem; font-weight: 600; color: var(--wfb-muted); text-transform: uppercase; letter-spacing: .06em; }
.wfb-info-value { font-size: .92rem; font-weight: 600; color: var(--wfb-text); margin-top: 2px; }

/* --- Sections --- */
.wfb-single-section { margin-bottom: 32px; }
.wfb-section-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.2rem; font-weight: 700;
    color: var(--wfb-primary); margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wfb-border);
}
.wfb-section-icon { font-size: 1.1em; }
.wfb-description-content {
    font-size: .95rem; line-height: 1.75; color: #334155;
}
.wfb-description-content p { margin: 0 0 1em 0; }
.wfb-description-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--wfb-primary); margin: 1.5em 0 .5em; }
.wfb-description-content ul { padding-left: 1.5em; }
.wfb-description-content li { margin-bottom: .4em; }

/* Avantages */
.wfb-benefits-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.wfb-benefits-list li {
    display: flex; align-items: center; gap: 12px;
    background: var(--wfb-bg); border-radius: var(--wfb-radius-sm);
    padding: 10px 14px;
    font-size: .9rem; font-weight: 500;
    border-left: 3px solid var(--wfb-accent);
}
.wfb-benefit-icon { font-size: 1.05rem; flex-shrink: 0; }

/* ================================================================
   SIDEBAR
   ================================================================ */
.wfb-single-sidebar { position: sticky; top: 100px; }
.wfb-sidebar-card {
    background: var(--wfb-white);
    border-radius: var(--wfb-radius-lg);
    box-shadow: var(--wfb-shadow-lg);
    border: 1px solid var(--wfb-border);
    overflow: hidden;
}

/* Prix */
.wfb-sidebar-price-block {
    background: linear-gradient(135deg, var(--wfb-primary) 0%, #1e3a7a 100%);
    padding: 28px 28px 22px;
    text-align: center;
}
.wfb-sidebar-price {
    display: inline-flex; align-items: baseline; gap: 6px;
    font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1;
}
.wfb-sidebar-currency { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.7); }
.wfb-sidebar-price-free {
    font-size: 2rem; font-weight: 800;
    color: #4ade80;
}
.wfb-sidebar-price-note { color: rgba(255,255,255,.6); font-size: .8rem; margin: 6px 0 0; }

/* Places sidebar */
.wfb-sidebar-places { padding: 20px 24px; border-bottom: 1px solid var(--wfb-border); }
.wfb-sidebar-places-header {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 10px;
}
.wfb-sidebar-places-ratio { font-size: .8rem; color: var(--wfb-muted); font-weight: 600; }
.wfb-sidebar-bar {
    height: 8px; background: var(--wfb-border);
    border-radius: 99px; overflow: hidden;
}
.wfb-sidebar-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wfb-accent) 0%, #22d3ee 100%);
    border-radius: 99px; transition: width .8s ease;
}
.wfb-sidebar-urgency {
    margin: 10px 0 0;
    font-size: .82rem; color: var(--wfb-warning);
    background: var(--wfb-warning-bg);
    border-radius: var(--wfb-radius-sm);
    padding: 7px 12px;
}

/* Deadline */
.wfb-sidebar-deadline {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--wfb-border);
    background: #fffbeb;
}
.wfb-deadline-icon { font-size: 1.3rem; }
.wfb-deadline-label { font-size: .75rem; color: var(--wfb-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.wfb-deadline-date { font-size: .92rem; font-weight: 700; color: var(--wfb-warning); }

/* Formulaire sidebar */
.wfb-sidebar-form { padding: 24px; }
.wfb-sidebar-unavailable {
    padding: 30px 24px; text-align: center;
}
.wfb-unavail-icon { font-size: 2.5rem; margin-bottom: 10px; }
.wfb-sidebar-unavailable p { color: var(--wfb-muted); font-size: .92rem; }

/* Trust badges */
.wfb-sidebar-trust {
    padding: 16px 24px;
    background: var(--wfb-bg);
    border-top: 1px solid var(--wfb-border);
    display: flex; flex-direction: column; gap: 6px;
}
.wfb-trust-item { font-size: .78rem; color: var(--wfb-muted); font-weight: 500; }

/* ================================================================
   FORMULAIRE D'INSCRIPTION
   ================================================================ */
.wfb-form { display: flex; flex-direction: column; gap: 14px; }
.wfb-form-section-title {
    font-size: .8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--wfb-muted);
    margin-bottom: -4px;
}
.wfb-form-row { display: flex; gap: 12px; }
.wfb-form-row-2 > .wfb-field { flex: 1; min-width: 0; }

.wfb-field { display: flex; flex-direction: column; gap: 5px; }
.wfb-field label {
    font-size: .82rem; font-weight: 600;
    color: var(--wfb-text);
}
.wfb-required { color: var(--wfb-danger); }

.wfb-field input[type="text"],
.wfb-field input[type="email"],
.wfb-field input[type="tel"] {
    padding: 10px 13px;
    border: 1.5px solid var(--wfb-border);
    border-radius: var(--wfb-radius-sm);
    font-size: .88rem; font-family: var(--wfb-font);
    background: var(--wfb-bg);
    transition: var(--wfb-transition); width: 100%;
}
.wfb-field input:focus {
    border-color: var(--wfb-accent);
    background: var(--wfb-white);
    box-shadow: 0 0 0 3px var(--wfb-accent-light);
    outline: none;
}
.wfb-field input.wfb-error { border-color: var(--wfb-danger); }
.wfb-field input.wfb-valid { border-color: var(--wfb-success); }

.wfb-terms-field { margin-top: 2px; }
.wfb-checkbox-label {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: .8rem; color: var(--wfb-muted); cursor: pointer;
}
.wfb-checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 15px; height: 15px; }
.wfb-checkbox-label a { color: var(--wfb-accent); }

/* Messages */
.wfb-form-messages { min-height: 0; }
.wfb-alert {
    padding: 11px 14px; border-radius: var(--wfb-radius-sm);
    font-size: .86rem; font-weight: 500; line-height: 1.5;
    display: flex; align-items: flex-start; gap: 8px;
}
.wfb-alert-success { background: var(--wfb-success-bg); color: #166534; border-left: 3px solid var(--wfb-success); }
.wfb-alert-error   { background: var(--wfb-danger-bg); color: #991b1b; border-left: 3px solid var(--wfb-danger); }
.wfb-alert-warning { background: var(--wfb-warning-bg); color: #92400e; border-left: 3px solid var(--wfb-warning); }
.wfb-alert-info    { background: var(--wfb-pending-bg); color: #1e40af; border-left: 3px solid var(--wfb-accent); }

/* Submit */
.wfb-form-submit-wrap {
    display: flex; flex-direction: column; gap: 10px;
}
.wfb-form-total {
    text-align: center; font-size: .86rem; color: var(--wfb-muted);
}
.wfb-form-total strong { color: var(--wfb-primary); font-size: 1rem; }
.wfb-btn-submit {
    width: 100%; padding: 13px 20px;
    font-size: .95rem; font-weight: 700; border-radius: var(--wfb-radius-sm);
}
.wfb-paypal-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: .74rem; color: var(--wfb-muted); text-align: center;
}
.wfb-btn-icon { font-size: 1em; }

/* Spinner */
.wfb-spinner {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff; border-radius: 50%;
    animation: wfbSpin .7s linear infinite;
    flex-shrink: 0;
}
@keyframes wfbSpin { to { transform: rotate(360deg); } }

/* ================================================================
   MODAL (grille de formations)
   ================================================================ */
.wfb-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(15,30,60,.72);
    z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    backdrop-filter: blur(5px);
}
.wfb-modal {
    background: var(--wfb-white);
    border-radius: var(--wfb-radius-lg);
    width: 100%; max-width: 580px;
    max-height: 92vh; overflow-y: auto;
    box-shadow: var(--wfb-shadow-lg);
    animation: wfbModalIn .28s cubic-bezier(.34,1.46,.64,1);
    position: relative;
}
@keyframes wfbModalIn {
    from { transform: scale(.88) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}
.wfb-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: var(--wfb-bg); border: 1px solid var(--wfb-border);
    border-radius: 50%; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; color: var(--wfb-muted);
    transition: var(--wfb-transition); z-index: 1; line-height: 1;
}
.wfb-modal-close:hover { background: var(--wfb-danger-bg); color: var(--wfb-danger); border-color: var(--wfb-danger); }
#wfb-modal-content { padding: 28px; }
.wfb-standalone-form { padding: 28px; background: var(--wfb-white); border-radius: var(--wfb-radius-lg); box-shadow: var(--wfb-shadow); }

/* ================================================================
   PAGE CONFIRMATION
   ================================================================ */
.wfb-confirmation {
    max-width: 620px; margin: 32px auto;
    border-radius: var(--wfb-radius-lg);
    box-shadow: var(--wfb-shadow-lg);
    overflow: hidden;
    font-family: var(--wfb-font);
}
.wfb-confirm-header {
    padding: 40px 36px 30px;
    text-align: center;
}
.wfb-confirm-icon-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}
.wfb-confirm-icon-wrap svg { width: 44px; height: 44px; }
.wfb-confirm-icon-success { background: var(--wfb-success-bg); }
.wfb-confirm-icon-pending { background: var(--wfb-pending-bg); }
.wfb-confirm-icon-cancel  { background: var(--wfb-danger-bg); color: var(--wfb-danger); font-weight: 800; }

.wfb-confirmation-success { background: var(--wfb-white); border: 2px solid var(--wfb-success); }
.wfb-confirmation-pending { background: var(--wfb-white); border: 2px solid var(--wfb-accent); }
.wfb-confirmation-cancel  { background: var(--wfb-white); border: 2px solid var(--wfb-danger); }

.wfb-confirm-header h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 10px; color: var(--wfb-primary); }
.wfb-confirm-header p  { color: var(--wfb-muted); margin: 0; font-size: .95rem; }
.wfb-confirm-email-note {
    background: var(--wfb-pending-bg);
    padding: 12px 24px;
    font-size: .88rem; color: #1e40af;
    text-align: center; border-top: 1px solid #bfdbfe;
}
.wfb-confirm-details { padding: 24px 28px; }
.wfb-confirm-details h3 { font-size: .95rem; font-weight: 700; margin: 0 0 16px; color: var(--wfb-primary); text-transform: uppercase; letter-spacing: .06em; }
.wfb-confirm-grid { display: flex; flex-direction: column; gap: 8px; }
.wfb-confirm-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px;
    background: var(--wfb-bg); border-radius: var(--wfb-radius-sm);
    font-size: .88rem;
}
.wfb-confirm-row span { color: var(--wfb-muted); }
.wfb-confirm-row strong { color: var(--wfb-text); text-align: right; }
.wfb-confirm-row code { font-size: .78rem; background: var(--wfb-border); padding: 2px 6px; border-radius: 4px; }
.wfb-confirm-home-btn { margin: 8px 28px 28px; display: block; text-align: center; }

/* ================================================================
   NO FORMATIONS + ERREURS
   ================================================================ */
.wfb-no-formations { text-align: center; padding: 50px 20px; color: var(--wfb-muted); }
.wfb-no-formations p { font-size: 1.05rem; }
.wfb-error { color: var(--wfb-danger); padding: 12px; background: var(--wfb-danger-bg); border-radius: var(--wfb-radius-sm); font-size: .9rem; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .wfb-single-body { grid-template-columns: 1fr; }
    .wfb-single-sidebar { position: static; }
    .wfb-hero { min-height: 280px; border-radius: var(--wfb-radius); }
    .wfb-hero-content { padding: 28px 24px; }
    .wfb-hero-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .wfb-cols-2, .wfb-cols-3, .wfb-cols-4 { grid-template-columns: 1fr; }
    .wfb-form-row { flex-direction: column; }
    .wfb-confirm-header { padding: 30px 20px 22px; }
    .wfb-confirm-details { padding: 18px; }
    .wfb-confirm-row { flex-direction: column; align-items: flex-start; gap: 3px; }
    .wfb-hero-chips { flex-direction: column; align-items: flex-start; }
    .wfb-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
    .wfb-info-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   AJOUTS v1.2
   ================================================================ */
.wfb-sidebar-price-label {
    text-align: center;
    font-size: .8rem; font-weight: 600;
    color: rgba(255,255,255,.65);
    padding: 14px 24px 0;
    background: linear-gradient(135deg, var(--wfb-primary) 0%, #1e3a7a 100%);
    text-transform: uppercase; letter-spacing: .06em;
}
/* Garantir que info-cards avec formateur/lieu optionnel se rend bien */
.wfb-hero-chips { flex-wrap: wrap; }
/* Bénéfices avec emoji natif (pas d'icône séparée) */
.wfb-benefits-list li { align-items: flex-start; }
