/* Product Image Display Fix */
/* Fix for complete image display in product cards */

.product-card,
.related-product-card {
    overflow: visible !important;
}

.product-card .product-image,
.related-product-card .product-image {
    height: 200px !important;
    width: 100% !important;
    background: #ffffff !important;
    border-radius: 8px 8px 0 0 !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.product-card img,
.related-product-card img,
.featured-product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px 8px 0 0 !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    border: none !important;
}

/* Remove aspect ratio constraint for full image display */

/* Fix for homepage featured products */
.featured-products .product-card img,
.categories-section .product-card img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}

/* Responsive image sizes */
@media (max-width: 768px) {
    .product-card .product-image,
    .related-product-card .product-image {
        height: 180px !important;
        padding: 10px !important;
    }
}

@media (max-width: 576px) {
    .product-card .product-image,
    .related-product-card .product-image {
        height: 160px !important;
        padding: 8px !important;
    }
}