.product-card {
    background-color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    text-align: center;
    flex-grow: 1;
    height: 100%;
}

.product-card .mt-auto {
    padding: 12px;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-card .card-body {
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.product-card h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.product-card .btn-editable {
    position: absolute;
    top: 10px;
    right: 10px;
    width: max-content;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}