:root{--page-title-display:none;}/* Start custom CSS *//* ==========================================================
   COMPONENTES GLOBALES PARA PAGINAS DE PRODUCTO
   Agregar una sola vez al CSS global del tema.
   ========================================================== */

.producto-indicadores-global {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
}

.producto-indicador-global {
    padding: 20px 16px !important;
    border: 1px solid #d6e4f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    text-align: center !important;
}

.producto-indicador-global strong {
    display: block !important;
    margin-bottom: 4px !important;
    color: #1947ba !important;
    font-family: "Outfit", sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

.producto-indicador-global span {
    color: #4a6278 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
}

.tabla-tecnica-global {
    width: 100% !important;
    overflow-x: auto !important;
    border: 1px solid #d6e4f0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 28px rgba(0, 61, 122, 0.06) !important;
    -webkit-overflow-scrolling: touch !important;
}

.tabla-tecnica-global table {
    width: 100% !important;
    min-width: 620px !important;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
}

.tabla-tecnica-global th,
.tabla-tecnica-global td {
    padding: 13px 15px !important;
    border: 0 !important;
    border-bottom: 1px solid #d6e4f0 !important;
    text-align: left !important;
    vertical-align: top !important;
    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.tabla-tecnica-global thead th {
    color: #ffffff !important;
    background: #021c3b !important;
    font-family: "Outfit", sans-serif !important;
    font-weight: 700 !important;
}

.tabla-tecnica-global tbody th,
.tabla-tecnica-global td:first-child {
    color: #1947ba !important;
    background: #f8fbfe !important;
    font-weight: 700 !important;
}

.tabla-tecnica-global tr:last-child th,
.tabla-tecnica-global tr:last-child td {
    border-bottom: 0 !important;
}

.imagen-producto-global img {
    display: block !important;
    width: 100% !important;
    height: clamp(260px, 34vw, 440px) !important;
    object-fit: contain !important;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.14)) !important;
}

@media (max-width: 767px) {
    .producto-indicadores-global {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .producto-indicador-global {
        padding: 16px 12px !important;
    }

    .producto-indicador-global strong {
        font-size: 20px !important;
    }
}/* End custom CSS */