.pro2-apps {
    padding: 110px 0 0;
    background: #fff;
}

.pro2-apps__title {
    margin: 0 0 64px;
    color: #202020;
    font-size: 94px;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.pro2-apps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pro2-apps__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 730px;
    padding: 46px 34px 42px;
    border-radius: 30px;
    background: #f0eff2;
    overflow: hidden;
}

.pro2-apps .forkaraoke_item {
    width: auto;
}

.pro2-apps__card-title {
    margin: 0;
    color: #111;
    text-align: center;
    font-size: 41px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.pro2-apps__card-image-file {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.pro2-apps__stores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
}

.pro2-apps__store {
    display: block;
    line-height: 0;
}

.pro2-apps__store img {
    display: block;
    width: 186px;
    height: auto;
}

.pro2-apps .forkaraoke_info {
    --forkaraoke-info-inset: 10px;
    position: absolute;
    width: calc(100% - (var(--forkaraoke-info-inset) * 2));
    height: calc(100% - (var(--forkaraoke-info-inset) * 2));
    top: var(--forkaraoke-info-inset);
    left: var(--forkaraoke-info-inset);
    display: none !important;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    transform-origin: center center;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.pro2-apps .forkaraoke_item.open .forkaraoke_info,
.pro2-apps .forkaraoke_info.open {
    display: block !important;
    animation-name: pro2appsforkaraokeopen;
    animation-duration: .5s;
}

.pro2-apps .forkaraoke_info.close {
    display: block !important;
    animation-name: pro2appsforkaraokeclose;
    animation-duration: .3s;
    opacity: 0;
}

.pro2-apps .forkaraoke_btn.plusminus {
    display: block;
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 13;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 18px 40px rgba(26, 26, 26, 0.14);
    cursor: pointer;
    transition: 0.3s;
}

.pro2-apps .forkaraoke_btn.plusminus.active {
    background: #373737;
}

.pro2-apps .forkaraoke_btn.plusminus::before,
.pro2-apps .forkaraoke_btn.plusminus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 3.5px;
    background: #333;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    border-radius: 999px;
}

.pro2-apps .forkaraoke_btn.plusminus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.pro2-apps .forkaraoke_btn.plusminus.active::before {
    background: #fff;
}

.pro2-apps .forkaraoke_btn.plusminus.active::after {
    background: #fff;
    transform: translate(-50%, -50%) rotate(0deg);
}

.pro2-apps .equipment-card__info-title {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pro2-apps .equipment-card__info-text {
    font-size: 22px;
    line-height: 1.35;
    color: #4b4b4b;
    max-width: 560px;
}

@keyframes pro2appsforkaraokeopen {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pro2appsforkaraokeclose {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media screen and (max-width: 1439px) {
    .pro2-apps {
        padding-top: 88px;
    }

    .pro2-apps__title {
        font-size: 64px;
        margin-bottom: 40px;
    }

    .pro2-apps__grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        width: auto;
        padding-bottom: 12px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        touch-action: auto;
    }

    .pro2-apps__grid::-webkit-scrollbar {
        display: none;
    }

    .pro2-apps__card:last-child {
        grid-column: auto;
    }

    .pro2-apps__card {
        flex: 0 0 auto;
        width: min(420px, calc(100vw - 96px));
        min-height: 730px;
        height: 730px;
        scroll-snap-align: start;
    }
}

@media screen and (max-width: 1024px) {
    .pro2-apps__title {
        font-size: 72px;
        margin-bottom: 48px;
    }

    .pro2-apps__grid {
        grid-template-columns: 1fr;
    }

    .pro2-apps__card {
        min-height: 780px;
    }

    .pro2-apps .equipment-card__info-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .pro2-apps .equipment-card__info-text {
        font-size: 18px;
        line-height: 1.32;
        max-width: none;
    }
}

@media screen and (max-width: 767px) {
    .pro2-apps {
        padding: 0;
    }

    .pro2-apps__title {
        margin-bottom: 32px;
        font-size: 40px;
        letter-spacing: -0.03em;
    }

    .pro2-apps__grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .pro2-apps__card {
        width: 100%;
        height: auto;
        min-height: 564px;
        padding: 36px 0 40px;
        border-radius: 24px;
    }

    .pro2-apps__card-title {
        font-size: 24px;
    }

    .pro2-apps__stores {
        margin: auto 20px 0;
        flex-direction: column;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .pro2-apps__store img {
        width: 148px;
    }

    .pro2-apps .forkaraoke_info {
        --forkaraoke-info-inset: 8px;
        padding: 25px 19px;
        border-radius: 10px;
    }

    .pro2-apps .forkaraoke_btn.plusminus {
        width: 44px;
        height: 44px;
        right: 20px;
        bottom: 20px;
    }

    .pro2-apps .forkaraoke_btn.plusminus::before,
    .pro2-apps .forkaraoke_btn.plusminus::after {
        width: 24px;
        height: 2px;
    }

    .pro2-apps .equipment-card__info-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .pro2-apps .equipment-card__info-text {
        font-size: 16px;
    }
}
