/* Анимации для корзины */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

/* Плавные переходы для карточек товаров */
.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Стили для кнопок */
.remove-from-cart {
    transition: all 0.2s ease;
}

.remove-from-cart:hover {
    transform: scale(1.1);
}

/* Градиенты и тени */
.bg-gradient-cart {
    background: linear-gradient(135deg, #EBF4FF 0%, #E6E9FF 100%);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 640px) {
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-content {
        padding: 1rem;
    }
}

/* Улучшенные стили для пустой корзины */
.empty-cart-container {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Стили для цен */
.price-tag {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #F3F4F6;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.price-tag:hover {
    background: #E5E7EB;
    transform: scale(1.05);
} 