/* === Shopche home trust strip === */
.shopche-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0 24px;
}

.shopche-trust-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.shopche-trust-item .fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #ff6346;
    color: #fff;
    font-size: 18px;
}

.shopche-trust-item strong {
    display: block;
    color: #111827;
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 3px;
}

.shopche-trust-item small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .shopche-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin: 10px 0 14px;
    }

    .shopche-trust-item {
        padding: 8px 5px;
        border-radius: 8px;
    }

    .shopche-trust-item .fa {
        width: 26px;
        height: 26px;
        margin-bottom: 4px;
        font-size: 13px;
    }

    .shopche-trust-item strong {
        font-size: 11px;
        line-height: 1.15;
    }

    .shopche-trust-item small {
        font-size: 10px;
        line-height: 1.1;
    }
}