/* =========================================================================
 * Vappax CTA Buttons — Elementor Widget Styles
 * ====================================================================== */

.vappax-cta-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.vappax-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 8px;
    transition: background-color 0.25s, color 0.25s, transform 0.15s, box-shadow 0.25s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.vappax-cta-btn:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.vappax-cta-btn i {
    font-size: 18px;
    flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .vappax-cta-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .vappax-cta-btn {
        justify-content: center;
    }
}
