/* body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
} */

.product-heading {
    color: #34495e; /* Darker blue/green for the heading */
    font-weight: bold;
}

.product-card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.product-card img {
    width: 100%;
    height: 200px; /* Adjust as needed */
    object-fit: cover; /* Ensures images cover the area without distortion */
}

.product-card .card-body {
    padding: 1rem;
    border: 2px solid rgb(214, 214, 214);
    border-radius: 5px;
}

.product-title-blue {
    color: #34495e; /* Darker blue, similar to the image */
    font-weight: bold;
    font-size: 1.1rem;
}

.product-title-red {
    color: #dc3545; /* Bootstrap's danger red, or a custom red */
    font-weight: bold;
    font-size: 1.1rem;
}

/* Optional: Adjustments for smaller screens if needed, though Bootstrap handles most responsiveness */
@media (max-width: 767.98px) {
    .product-card img {
        height: 180px;
    }
}