/* Product Image Standardization - Global Styles */

/* All Product Card Images */
.product-card-img,
.product-card .product-card-img,
.product-card2 .product-card-img,
.product-card3 .product-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img img,
.product-card .product-card-img img,
.product-card2 .product-card-img img,
.product-card3 .product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card-img:hover img {
    transform: scale(1.05);
}

/* Double Image Support */
.product-card-img.double-img img.img1 {
    display: block;
}

.product-card-img.double-img img.img2 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card-img.double-img:hover img.img1 {
    display: none;
}

.product-card-img.double-img:hover img.img2 {
    display: block;
}

/* Category Card Images */
.category-card-img,
.category-card .category-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background: #f8f9fa;
}

.category-card-img img,
.category-card .category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-img img {
    transform: scale(1.1);
}

/* Category Card Style 2 */
.category-card.style-2 {
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.category-card.style-2 .category-card-img {
    height: 180px;
    margin-bottom: 0;
}

.category-card.style-2 .category-card-content {
    padding: 15px 10px;
    background: #fff;
}

.category-card.style-2 .category-card-content a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
}

.category-card.style-2 .category-card-content a:hover {
    color: #667eea;
}

/* Subcategory Images */
.subcategory-card .subcategory-image {
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.subcategory-card .subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top Selling Slider Images */
.top-selling-slider .product-card-img {
    height: 280px;
}

/* Suggest Slider Images */
.suggest-slider .product-card-img,
.product-card2.style-2 .product-card-img {
    height: 250px;
}

/* Shop Page Product Images */
.shop-product-card .product-card-img,
.product-card.style-3 .product-card-img {
    height: 320px;
}

/* Product Details Page */
.shop-details-img img,
.shop-details-tab-img img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

/* Admin Product Images */
.image-preview,
.product-image-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .product-card-img,
    .product-card .product-card-img,
    .product-card2 .product-card-img {
        height: 280px;
    }
    
    .category-card-img,
    .category-card .category-card-img {
        height: 220px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .product-card-img,
    .product-card .product-card-img,
    .product-card2 .product-card-img,
    .product-card3 .product-card-img {
        height: 250px;
    }
    
    .category-card-img,
    .category-card .category-card-img {
        height: 160px;
    }
    
    .category-card.style-2 .category-card-img {
        height: 140px;
    }
    
    .category-card.style-2 .category-card-content a {
        font-size: 13px;
    }
    
    .top-selling-slider .product-card-img {
        height: 220px;
    }
    
    .suggest-slider .product-card-img,
    .product-card2.style-2 .product-card-img {
        height: 200px;
    }
    
    .shop-product-card .product-card-img,
    .product-card.style-3 .product-card-img {
        height: 240px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .product-card-img,
    .product-card .product-card-img,
    .product-card2 .product-card-img,
    .product-card3 .product-card-img {
        height: 220px;
    }
    
    .category-card-img,
    .category-card .category-card-img {
        height: 140px;
    }
    
    .category-card.style-2 .category-card-img {
        height: 120px;
    }
    
    .category-card.style-2 .category-card-content {
        padding: 10px 5px;
    }
    
    .category-card.style-2 .category-card-content a {
        font-size: 12px;
    }
    
    .top-selling-slider .product-card-img {
        height: 200px;
    }
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for images in cards */
.card img,
.product-card img {
    display: block;
}
