.mt-addons-tabs {
    position: relative;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}
.mt-addons-tabs nav {
    background: #fff;
    /*box-shadow: 0 0 20px rgb(0 0 0 / 7%);*/
    text-align: center;
}
.mt-addons-tabs nav ul {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    flex-flow: row wrap;
    justify-content: center;
}
.mt-addons-tabs nav ul li:first-child {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}
.mt-addons-tabs nav ul li.tab-active,
.mt-addons-tabs nav ul li.tab-current {
    background: transparent !important;
}
.mt-addons-tabs nav ul li.tab-active .mt-addons-tabs-nav-icon,
.mt-addons-tabs nav ul li.tab-current .mt-addons-tabs-nav-icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.mt-addons-tabs nav ul li.tab-current {
    z-index: 100;
}
.mt-addons-tabs nav ul li {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 !important;
    text-align: center;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 0.5px solid #eaeaea;
    background: #fff;
    transition: all 0.3s ease;
}
.mt-addons-tabs nav li.tab-current a {
    color: #74777b;
}
.mt-addons-tabs nav ul li a {
    overflow: visible;
    padding: 30px 0;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}
.mt-addons-tabs nav a {
    position: relative;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 2.5;
}
.mt-addons-tabs nav ul li.tab-current img.mt-addons-tabs-nav-icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.mt-addons-tabs-nav-icon {
    max-height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.mt-addons-tabs  nav ul li.tab-current .mt-addons-tabs-nav-title {
    color: #fff;
}
.mt-addons-tabs .mt-addons-tabs-nav-title {
    font-size: 18px!important;
    font-weight: 500;
    color: #da5f60;
    margin-top: 20px;
    margin-bottom: 0;
    transition: color 0.3s ease;
    word-wrap: break-word;
    white-space: normal;
}
.mt-addons-tab-content {
    position: relative;
    margin-top: 70px;
}
.mt-addons-tab-content section.content-current {
    display: block;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
}
.mt-addons-tab-content section {
    display: none;
    margin: 0 auto;
    max-width: 1140px;
    animation: fadeIn 0.3s ease-in;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.mt-addons-tab-content img.mt-addons-tab-content-image {
    max-height: 350px;
    width: auto;
    height: auto;
}
.mt-addons-tab-content .mt-addons-tab-content-title {
    font-size: 28px;
    margin-top: 20px;
    color: #c4c4c4;
}
.mt-addons-tab-content section p {
    margin: 0;
    padding: 0;
    color: #8b8b8a;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    margin-top: 25px;
}
.mt-addons-tab-content a.tabs_button {
    color: #fff!important;
    padding: 15px 30px;
    border-radius: 35px;
    font-size: 14px;
    letter-spacing: .5px;
    background: #e56768;
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mt-addons-tab-content-button {
    color: #fff!important;
    padding: 15px 30px;
    font-size: 14px;
    letter-spacing: .5px;
    display: inline-block;
    margin-top: 40px;
    transition: all 400ms ease 0s;
    -webkit-transition: all 400ms ease 0s;
    text-decoration: none;
    border-radius: 5px;
}
.mt-addons-tab-content-button:hover {
    background-color: #222 !important;
    transform: translateY(-2px);
}
.mt-addons-tab-flex-zone {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.mt-addons-tab-flex-zone .col-md-4,
.mt-addons-tab-flex-zone .col-md-8 {
    padding: 15px 0px;
}
@media only screen and (max-width: 767px) {
    .mt-addons-tabs nav ul li {
        min-width: 50%;
        flex: 1 1 50%;
    }
    .mt-addons-tabs .col-md-6{
        width: 100%!important;
    }
    .mt-addons-tabs .row {
        margin: 10px!important;
    }
    .mt-addons-tabs nav ul li a {
        padding: 20px 10px;
    }
    
    .mt-addons-tabs .mt-addons-tabs-nav-title {
        font-size: 14px !important;
        margin-top: 10px;
    }
    
    .mt-addons-tabs-nav-icon {
        max-height: 30px;
    }
    
    .mt-addons-tab-content {
        margin-top: 40px;
    }
    
    .mt-addons-tab-content .mt-addons-tab-content-title {
        font-size: 22px;
    }
    
    
    .mt-addons-tab-flex-zone .col-md-4,
    .mt-addons-tab-flex-zone .col-md-8 {
        width: 100%!important;
        text-align: center;
    }
    
    .mt-addons-tab-content img.mt-addons-tab-content-image {
        max-height: 250px;
    }
}
@media only screen and (max-width: 480px) {
    .mt-addons-tabs nav ul li {
        min-width: 100%;
        flex: 1 1 100%;
    }
    
    .mt-addons-tabs nav ul {
        flex-direction: column;
    }
    
    .mt-addons-tabs nav ul li:first-child {
        border-radius: 10px 10px 0 0;
    }
    
    .mt-addons-tabs nav ul li:last-child {
        border-radius: 0 0 10px 10px;
    }
}

/* Elementor Editor Compatibility */
/*.elementor-widget-modeltheme-addons-tabs .mt-addons-tabs {
    pointer-events: auto;
}

.elementor-widget-modeltheme-addons-tabs .mt-addons-tabs-nav a {
    cursor: pointer;
}*/

/* Ensure proper spacing in Elementor editor */
.elementor-widget-modeltheme-addons-tabs {
    width: 100%;
}

/* Fix for potential Bootstrap conflicts */
.mt-addons-tabs .row {
    margin: 0;
}

.mt-addons-tabs .col-md-4,
.mt-addons-tabs .col-md-6,
.mt-addons-tabs .col-md-8,
.mt-addons-tabs .col-sm-12 {
    position: relative;
    min-height: 1px;
}

.mt-addons-tabs .col-md-4 {
    width: 33.33333333%;
}

.mt-addons-tabs .col-md-6 {
    width: 50%;
}

.mt-addons-tabs .col-md-8 {
    width: 66.66666667%;
}

/* Ensure images are responsive */
.mt-addons-tabs img {
    max-width: 100%;
    height: auto;
}

/* Improve accessibility */
.mt-addons-tabs-nav a:focus {
    outline-offset: 2px;
}

/* Loading state */
.mt-addons-tabs.loading {
    opacity: 0.7;
    pointer-events: none;
}