.vertical-tabs-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.vertical-tabs {
    display: flex;
    flex-direction: column;
    gap: 30px!important;
    min-width: 14%;
}

.tab-switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 3px solid #ddd;
    width: 165px!important;
    height: 165px!important;
    justify-content: center;
    position: relative;
}

.tab-switcher:hover {
    transform: scale(1.1);
    border-color: #007bff;
}

.tab-switcher.active {
    border-color: #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    animation: activeTabPulse 0.5s ease;
}

.tab-switcher img {
    width: fit-content!important;
    height: 102px!important;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.tab-title {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #333;
    transition: color 0.3s ease;
    max-width: 100px;
    white-space: normal;
    word-break: break-word;
}

.tab-switcher.active .tab-title {
    color: #007bff;
}

.tabs-content-wrapper {
    flex: 1;
    min-width: 300px;
}

.tab-content {
    display: none;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    animation: slideIn 0.5s ease;
    opacity: 0;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: fadeInImage 0.6s ease;
}

.content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    animation: fadeInText 0.6s ease 0.2s forwards;
    opacity: 0;
}

/* Анимации */
@keyframes activeTabPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 20px 0 rgba(0, 123, 255, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .vertical-tabs-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .vertical-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .tab-switcher {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }
    
    .tab-switcher img {
        width: 70px;
        height: 70px;
    }
    
    .tabs-content-wrapper {
        min-width: auto;
    }
    
    .tab-content {
        padding: 20px;
    }
}

.vertical-tabs .tab-switcher.active:nth-child(1) {
    border: #333;
    box-shadow: 0px 2px 9px #73C2EB !important;
}
.tab-switcher.active:nth-child(1)  .tab-title{
    color: #73C2EB !important;
}
.vertical-tabs .tab-switcher.active:nth-child(2) {
    border: #333;
    box-shadow: 0px 2px 9px #c5c5c5bd !important;
}
.tab-switcher.active:nth-child(2)  .tab-title{
    color: #9E9E9E !important;
}
.vertical-tabs .tab-switcher.active:nth-child(3) {
    border: #333;
    box-shadow: 0px 2px 9px #FF8C3F !important;
}
.tab-switcher.active:nth-child(3)  .tab-title{
    color: #FF8C3F !important;
}
.vertical-tabs .tab-switcher.active:nth-child(4) {
    border: #333;
    box-shadow: 0px 2px 9px #B28CB2 !important;
}

.tab-switcher.active:nth-child(4)  .tab-title{
    color: #B28CB2 !important;
}

.vertical-tabs .tab-switcher.active:nth-child(5) {
    border: #333;
    box-shadow: 0px 2px 9px #DF5794 !important;
}

.tab-switcher.active:nth-child(5)  .tab-title{
    color: #DF5794 !important;
}

.tab-title {
    color: #e73d70!important;
    font-size:12px!important;
    line-height:1em
}
