/* static/css/style.css - Additional custom styles for perfection */
.personalized {
    animation: slideInLeft 0.5s ease-out;
}
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.card-img-top {
    transition: opacity 0.3s;
}
.card:hover .card-img-top {
    opacity: 0.9;
}
.btn {
    border-radius: 25px;
    font-weight: 500;
}
.hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
/* New: For suggestions and cart */
.list-group-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}
#feedback-status {
    color: green;
    margin-top: 10px;
}