/* ═══════════════════════════════════════════
   Valroc – Widget Machine CTA Formulaires
   ═══════════════════════════════════════════ */

/* ── Boutons ── */
.vmcf-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vmcf-btn-wrap {
    display: flex;
    width: 100%;
}

.vmcf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 6px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
    text-align: center;
    line-height: 1.3;
    background-color: transparent;
    box-sizing: border-box;
}

/* Icône : conteneur contraint */
.vmcf-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    overflow: hidden;
}
.vmcf-btn-icon i {
    font-size: 20px;
    line-height: 1;
}
/* !important nécessaire : Font Awesome SVG injecte des styles inline */
.vmcf-btn-icon svg {
    width: 20px !important;
    height: 20px !important;
}

.vmcf-btn:focus {
    outline: none;
}

/* ── Panneau ── */
.vmcf-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
}

.vmcf-panel.is-open {
    max-height: none;
}

.vmcf-panel-inner {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 0 0 8px 8px;
}

/* ── Titre panneau ── */
.vmcf-panel-title {
    font-size: 18px;
    margin-bottom: 20px;
}
