/*
Theme Name: Astra Child
Theme URI: https://example.com/astra-child/
Description: Tema hijo de Astra para personalizar productos
Author: Tu Nombre
Author URI: https://example.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* ===== ESTILOS PARA EL BLOQUE DE DATOS DE LA EMPRESA ===== */
.producto-info-adicional {
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f7f9fc;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    clear: both;
}

.producto-info-adicional h3 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 20px;
    border-bottom: 2px solid #e0e6ed;
    padding-bottom: 12px;
}

.producto-info-adicional p {
    margin: 8px 0;
    line-height: 1.6;
}

/* ===== OCULTAR DUPLICADOS ===== */
/* Ocultar categorías y tags duplicados */
.single-product .product_meta {
    display: none !important;
}

/* Ocultar migas de pan duplicadas */
.woocommerce-breadcrumb + .woocommerce-breadcrumb {
    display: none !important;
}

/* ===== REDES SOCIALES ===== */
.redes-sociales {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.red-social {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: #f0f4f8;
    color: #1a1a1a;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid #e0e6ed;
    transition: all 0.2s;
}

.red-social:hover {
    background: #e0e6ed;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #1a1a1a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .producto-info-adicional {
        padding: 15px;
        margin-top: 15px;
    }
    
    .producto-info-adicional iframe {
        height: 200px !important;
    }
    
    .red-social {
        font-size: 12px;
        padding: 4px 10px;
    }
}