.product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}
.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
.product-image {
    border-radius: 12px 12px 0 0;
}
.product-badge {
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.btn-outline-primary, .btn-warning {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover, .btn-warning:hover {
    transform: translateY(-2px);
}