﻿.card {
    border-radius: .25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .card:hover {
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    padding-bottom: .25rem;
}

.card-description {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    min-height: 45px;
}

.card-price {
    text-align: center;
}

.card-img-top {
    max-height: 115px;
    max-width: 75%;
    object-fit: contain;
    margin: auto;
    padding: 10px;
}

.card-bottom-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
