.slider-container {
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 5px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    transform-style: preserve-3d;
}

.slider-tabs {
    display: flex;
    padding: 0;
}

.slider-tab {
    padding: 20px;
    cursor: pointer;
    /* color: #fbba35; */
    color: #000;
    font-weight: bold;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    border-bottom: 2px solid #000;
    position: relative;
}

.slider-tab:not(.active):hover::after {
    left: 0;
    width: 100%;
}
.slider-tab:not(.active)::after {
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fbba35;
    transition: all .3s;
    content: "";
}
.slider-tab.active {
    color: #fbba35;
    font-weight: 700;
    border-bottom: 2px solid #fbba35;
}

.slider-content {
    padding: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-item > img{
    margin-top: 30px;
}

.content-item.active {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}
.content-item .col{
    width: 50%;
}
.balconies-types__title{
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #1c1c1c;
    font-weight: 700;
    font-size: 27px;
    font-family: "Exo 2", sans-serif;
    line-height: 1;
    border-bottom: 2px solid #1c1c1c;
}
.price span{
    color: red;
    font-weight: bold;
}
.price > b{
    font-size: 26px;
}
.catalog-section {
    margin-bottom: 0px;
}
.catalog-section .catalog-section__item-link{
    margin-top: 20px;
}
.link_order{
    padding: 20px 32px;
    border: 1px solid #fbba35;
    background: #fbba35;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    transition: .3s;
    border-radius: 10px;
    overflow: hidden;
    clear: both;
    width: fit-content;
    margin-top: 10px;
}
.catalog-section__item-link_slider{
    padding: 20px 32px;
    margin-top: 10px;
}
.section_detail{
    margin: 30px 0 30px;
}
.wrap_link{
    display: flex;
    gap: 20px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .slider-tabs {
        flex-direction: column;
    }
    .content-item.active {
        flex-direction: column;
    }
    .balconies-types__title{
        font-size: 21px;
    }
    .content-item .col{
        width: 100%;
    }
    .slider-tab {
        padding: 15px;
    }
}
      

/* Мобильная версия - аккордеон */
.mobile-tab {
    display: none;
    /* border-bottom: 1px solid #ddd; */
    border-bottom: 1px solid #000;
}

.mobile-tab.active .mobile-tab-header span {
    color: #fbba35;
}

.mobile-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-size: 16px;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.mobile-tab-content {
    padding: 0;
    display: none;
    background: white;
}

.mobile-tab.active .mobile-tab-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-tab-header .arrow {
    transition: transform 0.3s ease;
}

.mobile-tab.active .mobile-tab-header .arrow {
    transform: rotate(180deg);
}

.mobile-content-item {
    padding: 20px;
}

.mobile-content-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 968px) {
    .slider-tabs,
    .slider-content {
        display: none;
    }
    
    .mobile-tab {
        display: block;
    }
    
    .slider-container {
        padding: 0;
    }
    
    .content-item.active {
        flex-direction: column;
        padding: 20px;
    }
    
    .content-item img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}

/* Медиа-запрос для десктопов */
@media (min-width: 969px) {
    .mobile-tab {
        display: none;
    }
    
    .slider-tabs,
    .slider-content {
        display: flex;
    }
}

/* Адаптивность для средних экранов */
@media (max-width: 1200px) {
    .content-item.active {
        padding: 20px;
        gap: 20px;
    }
    
    .content-item img {
        width: 400px;
        height: 360px;
    }
}