/* Style wrapper for the uploaded dynamic images */
.product-image-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Ensure the custom uploaded image scales naturally */
.uploaded-product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* Optional styling for price display */
.product-price {
    font-weight: bold;
    color: #c00000;
    margin: 5px 0;
    font-size: 1.1rem;
}
/* Container layout for buttons */
.category-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 40px 0;
}

/* Base button styles */
.filter-btn {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #eee;
    border-color: #bbb;
}

/* Active Highlight Style matching your red theme */
.filter-btn.active {
    background-color: #c00000;
    color: white;
    border-color: #c00000;
    box-shadow: 0 4px 10px rgba(192, 0, 0, 0.2);
}