/* ══════════════════════════════════════
   mp_trustbadges — Bloques de confianza
   MotoresPersianas.com
══════════════════════════════════════ */

.mp-trust {
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 0;
}

/* Fullwidth: fondo de borde a borde */
.mp-trust.fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.mp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.mp-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-right: 1px solid #E2E8F0;
}

.mp-trust-item:last-child {
    border-right: none;
}

.mp-trust-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-trust-icon svg {
    width: 20px;
    height: 20px;
    color: #3498DB;
    stroke: #3498DB;
}

.mp-trust-text .h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1C1C1C;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.mp-trust-text p {
    font-size: 13.5px;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
}

/* Responsive: 2 columnas en tablet */
@media (max-width: 991px) {
    .mp-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mp-trust-item {
        border-right: none;
        padding: 8px 12px;
    }
}

/* Responsive: 1 columna en móvil */
@media (max-width: 575px) {
    .mp-trust-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mp-trust {
        padding: 16px 0;
    }
}

/* ══════════════════════════════════════
   OVERRIDE — Página de producto
   Grid 2×2 con tarjetas bordeadas
══════════════════════════════════════ */

#product .mp-trust {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 16px;
}

#product .mp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

#product .mp-trust-item {
    gap: 10px;
    padding: 10px 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
    border-radius: 8px;
}

#product .mp-trust-item:last-child {
    border-right: 1px solid #E2E8F0;
}

#product .mp-trust-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
}

#product .mp-trust-icon svg {
    width: 18px;
    height: 18px;
}

#product .mp-trust-text h4 {
    font-size: 13px;
}

#product .mp-trust-text p {
    font-size: 12px;
}
