.thick-line {
    border: 4px solid black; 
    width: 100%; 
}
.product-card {
        transition: transform 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
}
.product-card:hover {
    transform: scale(1.05);
}
.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d9534f;
}