/* WC AI Images - Frontend Styles */

/* Badge en imágenes de producto */
.wc-ai-image-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 8px;
    box-shadow: 0 2px 4px rgba(124, 58, 237, 0.3);
}

/* Estilos para la galería de producto */
.woocommerce-product-gallery__image[data-ai-generated="true"]::after {
    content: 'Imagen generada por IA';
    display: block;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 8px;
}

/* Badge en listados de productos */
.woocommerce-loop-product__link img[data-ai-generated="true"] {
    position: relative;
}

.ai-generated-label {
    display: block;
    text-align: center;
    margin-top: 6px;
    font-size: 11px;
    color: #7c3aed;
    font-weight: 600;
}

.ai-generated-label::before {
    content: '✦';
    margin-right: 4px;
}

/* Estilos responsive */
@media (max-width: 768px) {
    .wc-ai-image-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
}
