.product-card {
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #198754;
}
.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}
.badge-custom {
    font-size: 0.7rem;
    position: absolute;
    top: 10px;
    right: 10px;
}