/**
 * Category Images - Global Styles
 * Universal styles for category images across all themes
 */

/* Base category image styles */
.category-image {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Theme-specific adjustments */

/* Modern Theme */
.category-image {
    border: 1px solid rgba(0,0,0,0.1);
}

/* Elegance Theme - Horizontal categories */
.elegance-category-image {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    margin-right: 6px;
}

/* Luxury Theme - Horizontal categories */
.luxury-category-image {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    margin-right: 6px;
}

/* Premium Theme */
.premium-category-image {
    width: 18px;
    height: 18px;
    border-radius: 8px;
    margin-right: 6px;
}


/* Classic Theme */
.classic-category-image {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 6px;
}

/* Hover effects */
.category-image:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-image {
        width: 18px;
        height: 18px;
    }
    
    .elegance-category-image,
    .luxury-category-image,
    .premium-category-image {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .category-image {
        width: 16px;
        height: 16px;
    }
    
    .elegance-category-image,
    .luxury-category-image,
    .premium-category-image {
        width: 14px;
        height: 14px;
    }
}
