.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.096);
}
.card .btn {
    transition: all 0.3s ease;
}
.card .btn:hover {
    transform: scale(1.05);
}

h1{
    color: #f084a2;
}

.border-secondary{
    border:2px solid #f084a2 !important;
}

.text-discount{
    color: #555;
    text-decoration: line-through;
    font-size: 13px !important;
}