.catalog-interactive {
    padding: 100px 0;
    background: #fdfdfd;
    overflow: hidden;
    position: relative;
    min-height: 800px;
}

.catalog-interactive__wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
}

/* Центральный персонаж */
.catalog-interactive__center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    /* Установлено по запросу пользователя */
    z-index: 1;
    text-align: center;
}

.catalog-interactive__bg-person {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Элементы каталога */
.catalog-interactive__items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.catalog-interactive__item {
    position: absolute;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: 350px;
    /* Фиксированная ширина для симметрии иконок */
}

.catalog-interactive__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    position: relative;
    width: 100%;
}

/* Иконка (круг) */
.catalog-interactive__node {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 134, 201, 0.15);
    border: 2px solid #fff;
    transition: all 0.3s ease;
    z-index: 3;
    flex-shrink: 0;
}

.catalog-interactive__link:hover .catalog-interactive__node {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 134, 201, 0.25);
    border-color: #0086c9;
}

.catalog-interactive__icon {
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-interactive__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Текстовая информация */
.catalog-interactive__info {
    display: flex;
    flex-direction: column;
}

.catalog-interactive__title {
    margin: 0;
    font-size: 18px;
    /* Увеличено на 2px для соответствия стилю */
    font-weight: 700;
    color: #1a202c;
    white-space: nowrap;
}

.catalog-interactive__more {
    font-size: 14px;
    color: #0086c9;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.catalog-interactive__more i {
    font-size: 16px;
}

/* Радиальное позиционирование (классы для 10 элементов по дуге) */

.item-0,
.item-1,
.item-2,
.item-3,
.item-4 {
    justify-content: flex-end;
}

/* Левая сторона: сначала текст, потом иконка */
.item-0 .catalog-interactive__link,
.item-1 .catalog-interactive__link,
.item-2 .catalog-interactive__link,
.item-3 .catalog-interactive__link,
.item-4 .catalog-interactive__link {
    flex-direction: row-reverse;
    text-align: right;
}

.item-0 .catalog-interactive__more,
.item-1 .catalog-interactive__more,
.item-2 .catalog-interactive__more,
.item-3 .catalog-interactive__more,
.item-4 .catalog-interactive__more {
    flex-direction: row-reverse;
}

.item-0 {
    top: 7%;
    left: -60px;
}

.item-1 {
    top: 28%;
    left: -100px;
}

.item-2 {
    top: 50%;
    left: -140px;
}

.item-3 {
    top: 72%;
    left: -100px;
}

.item-4 {
    top: 90%;
    left: -60px;
}

/* Правая сторона (сверху вниз) — Идеальное зеркало */
.item-5,
.item-6,
.item-7,
.item-8,
.item-9 {
    justify-content: flex-start;
}

/* Правая сторона: стандартно иконка, потом текст */
.item-5 .catalog-interactive__link,
.item-6 .catalog-interactive__link,
.item-7 .catalog-interactive__link,
.item-8 .catalog-interactive__link,
.item-9 .catalog-interactive__link {
    flex-direction: row;
    text-align: left;
}

.item-5 {
    top: 7%;
    right: -60px;
}

.item-6 {
    top: 28%;
    right: -100px;
}

.item-7 {
    top: 50%;
    right: -140px;
}

.item-8 {
    top: 72%;
    right: -100px;
}

.item-9 {
    top: 90%;
    right: -60px;
}

/* Адаптивность */
/* Центрирование мобильной сетки и дополнительные правки */
@media (max-width: 992px) {
    .catalog-interactive {
        min-height: auto;
        padding: 40px 0;
    }

    .catalog-interactive__wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .catalog-interactive__center {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        margin-bottom: 30px;
        max-width: 500px;
        width: 60%;
    }

    .catalog-interactive__items {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        padding: 0 5px;
        /* Уменьшили отступ, чтобы прижать влево */
    }

    .catalog-interactive__item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        flex-direction: row !important;
        text-align: left !important;
        width: 100%;
        align-items: flex-start;
        /* Прижимаем к верху для многострочного текста */
    }

    .catalog-interactive__link {
        flex-direction: row !important;
        align-items: flex-start;
        gap: 12px;
    }

    .catalog-interactive__info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        min-width: 0;
    }

    .catalog-interactive__more {
        flex-direction: row !important;
        margin-top: 5px;
    }

    /* Увеличение карточек в моб версии */
    .catalog-interactive__node {
        width: 80px;
        /* Вернул 80px чтобы не было слишком громоздко */
        height: 80px;
    }

    .catalog-interactive__title {
        font-size: 20px;
        /* Увеличили до 20px по просьбе пользователя */
        white-space: normal !important;
        line-height: 1.2;
        max-width: 180px;
        /* Увеличили область, чтобы крупный шрифт умещался */
        text-align: left !important;
    }

    .catalog-interactive__more {
        font-size: 14px;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .catalog-interactive__items {
        grid-template-columns: 1fr;
    }
}