/* Image Responsiveness Fix */
.category-hero-img, .main-product-image {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    box-sizing: border-box;
}

.category-showcase {
    max-width: 100%;
    overflow: hidden;
}

.main-image-container {
    width: 100%;
    max-width: 100%;
    height: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .category-hero-img, .main-product-image {
        height: 300px;
    }
    
    .main-image-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .category-hero-img, .main-product-image {
        height: 250px;
    }
    
    .main-image-container {
        height: 250px;
    }
}