.container {
    margin-top: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md-4 {
    flex: 1;
    margin-bottom: 20px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    align-items: center;
    max-width: 400px;
    width: 100%;

}

.card:hover {
    transform: scale(1.02);
}

.card-title {
    font-size: 20px;
    color: #333;
}

.card-text {
    font-size: 18px;
    color: #666;
}

/* Discount and Price Info Styling */
.discount-info {
    background-color: #BEF0D4;
    color: #012411;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

.list-info {
    background-color: #BEF0D4;
    color: #333;
    font-size: 13px;
    font-weight: 20px;
    text-align: center;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

/* Original Price and Saving Styling */
.price-info {
    background-color: #ff9100;
    color: #333;
    font-size: 15px;
    font-weight: 20px;
    text-align: center;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

.btn-clickable {
    display: block;
    margin: 0 auto;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-clickable:hover {
    background-color: #218838;
    transform: scale(1.05);
    cursor: pointer;
}