/* Main styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}
.navbar{
    background-color: #ecf9f3;
}
/* Product cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.product-card .no-image {
    height: 200px;
    background-color: #f8f9fa;
}

.product-meta .badge {
    margin-right: 5px;
    margin-bottom: 5px;
}

/* No image placeholder */
.no-image {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
}
.product-img-container img{
    object-fit: contain;
    width: 100%;
    height: 100%
}
    .product-card {
        transition: all 0.3s ease;
    }
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .product-img-container {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .product-img-container img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .no-image {
        width: 100px;
        height: 100px;
        background-color: #f8f9fa;
        margin: 0 auto;
    }
    .product-meta .badge {
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .card-body {
        padding: 1rem;
    }