/* Real Clear Biogenix — trust-bar.css
   Shared trust bar component: home page + shop page.
   Tokens (--v3-px, --v3-max, --v3-blue, --v3-body) are defined
   in home.css / shop.css and resolve correctly at use-time. */

/* =========================================================
   TRUST BAR
   ========================================================= */
.rcb-trust-bar {
    background: #1a1a2e;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0 var(--v3-px);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.rcb-trust-bar__inner {
    max-width: var(--v3-max);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}

.rcb-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 32px 40px;
    font-family: var(--v3-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.12);
}
.rcb-trust-item:last-child {
    border-right: none;
}
.rcb-trust-item svg {
    color: var(--v3-blue);
    flex-shrink: 0;
    width: 48px !important;
    height: 48px !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
    .rcb-trust-bar__inner {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }
    .rcb-trust-item {
        width: auto;
        white-space: normal;
        padding: 20px 8px;
        font-size: 12px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        grid-column: span 2;
        border-right: 1px solid rgba(255,255,255,.12);
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .rcb-trust-item:nth-child(3) {
        border-right: none;
    }
    /* Items 4+5: offset one column each side so the pair is centered */
    .rcb-trust-item:nth-child(4) {
        grid-column: 2 / span 2;
        border-bottom: none;
    }
    .rcb-trust-item:nth-child(5) {
        grid-column: 4 / span 2;
        border-bottom: none;
        border-right: none;
    }
    .rcb-trust-item svg {
        width: 52px !important;
        height: 52px !important;
        flex-shrink: 0;
    }
}
