.product {
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.5s ease, transform 0.3s ease;
}

.product:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: scale(1.01);
}
