/* ================================================
   🔥 MODERN 2025 CAROUSEL ARROWS
   Glassmorphism + Neubrutalism fusion
   ================================================ */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.08);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.carousel-control-prev:active,
.carousel-control-next:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

/* Современные SVG стрелки */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 28px;
    height: 28px;
    background-image: none;
    position: relative;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #150a0a;
    border-right: none;
    border-bottom: none;
    top: 50%;
    left: 50%;
}

.carousel-control-prev-icon::before {
    transform: translate(-40%, -50%) rotate(-45deg);
}

.carousel-control-next-icon::before {
    transform: translate(-60%, -50%) rotate(135deg);
}

/* Анимация при hover - пульсация */
.carousel-control-prev:hover .carousel-control-prev-icon::before,
.carousel-control-next:hover .carousel-control-next-icon::before {
    animation: arrowPulse 0.6s ease-in-out;
}

@keyframes arrowPulse {
    0%, 100% { transform: translate(-40%, -50%) rotate(-45deg) scale(1); }
    50% { transform: translate(-40%, -50%) rotate(-45deg) scale(1.15); }
}

.carousel-control-next:hover .carousel-control-next-icon::before {
    animation: arrowPulseRight 0.6s ease-in-out;
}

@keyframes arrowPulseRight {
    0%, 100% { transform: translate(-60%, -50%) rotate(135deg) scale(1); }
    50% { transform: translate(-60%, -50%) rotate(135deg) scale(1.15); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 22px;
        height: 22px;
    }

    .carousel-control-prev-icon::before,
    .carousel-control-next-icon::before {
        width: 16px;
        height: 16px;
        border-width: 2.5px;
    }
}