/* ===== WPBakery Tabs – Extra Large Premium Style ===== */

/* Normal Tabs */
.vc_tta-tabs .vc_tta-tabs-list li a {
    background-color: #ffffff !important;   /* White background */
    color: #000000 !important;
    font-size: 22px !important;             /* Extra Large text */
    font-weight: 800 !important;            /* Extra Bold */
    padding: 18px 45px !important;          /* Bigger tab size */
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

/* Active Tab */
.vc_tta-tabs .vc_tta-tabs-list li.vc_active > a {
    background-color: #e29e73 !important;   /* Orange active */
    color: #ffffff !important;
    font-weight: 900 !important;            /* Extra Extra Bold */
}

/* Hover Effect */
.vc_tta-tabs .vc_tta-tabs-list li a:hover {
    background-color: #e29e73 !important;
    color: #ffffff !important;
}

/* Spacing Between Tabs */
.vc_tta-tabs .vc_tta-tabs-list li {
    margin-right: 15px !important;
}


/* ===== FORCE BUTTON TO NEVER BREAK ===== */

.vc_btn3,
.wpb_button,
.vc_general.vc_btn3 {

    display: inline-flex !important;   /* Prevent block behavior */
    width: fit-content !important;     /* Fit exactly to text */
    max-width: fit-content !important;
    white-space: nowrap !important;    /* No text wrapping */
    
    padding: 8px 16px !important;      /* Compact padding */
    font-size: 14px !important;        
    line-height: 1 !important;

    align-items: center !important;
    justify-content: center !important;
}

/* Prevent parent column restriction */
.vc_column-inner {
    overflow: visible !important;
}