/* Современный тост для уведомлений */
.wishlist-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 280px;
    height: 50px;
    background: #1a1a2e;
    color: #fff;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 46, 0.95);
    border-left: 4px solid #2d5a2c;
}

.wishlist-toast.isActive {
    transform: translateX(0);
    opacity: 1;
}

.wishlist-toast.success {
    border-left-color: #2d5a2c;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.wishlist-toast.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a1a1a 100%);
}

.wishlist-toast__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(45, 90, 44, 0.2);
}

.wishlist-toast.success .wishlist-toast__icon i {
    color: #2d5a2c;
    font-size: 18px;
}

.wishlist-toast.error .wishlist-toast__icon i {
    color: #dc3545;
    font-size: 18px;
}

.wishlist-toast__message {
    flex: 1;
    line-height: 1.4;
}

.wishlist-toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.wishlist-toast__progress-bar {
    height: 100%;
    width: 100%;
    background: #2d5a2c;
    animation: toastProgress 3s linear forwards;
}

@keyframes toastProgress {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* Анимация пульсации для иконки */
@keyframes toastPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.wishlist-toast.isActive .wishlist-toast__icon {
    animation: toastPulse 0.3s ease;
}

/* Для мобильных устройств */
@media (max-width: 576px) {
    .wishlist-toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        min-width: auto;
        transform: translateY(100px);
    }
    .wishlist-toast.isActive {
        transform: translateY(0);
    }
}
.carousel .carousel-inner{
    height: 736px;
}