/* Global trust bar styles */
.bngc-trust-bar {
    position: sticky;
    top: 0;
    z-index: 24;
    background: rgba(14, 42, 71, 0.03);
    border-bottom: 1px solid rgba(14, 42, 71, 0.08);
    backdrop-filter: blur(6px);
}

body.admin-bar .bngc-trust-bar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .bngc-trust-bar {
        top: 46px;
    }
}

.bngc-trust-bar__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bngc-trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(14, 42, 71, 0.04);
    border: 1px solid rgba(14, 42, 71, 0.08);
    color: #0e2a47;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
}

.bngc-trust-bar__icon {
    width: 16px;
    height: 16px;
    color: #0e2a47;
    opacity: 0.9;
}

.bngc-trust-bar__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bngc-trust-bar__text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.bngc-trust-bar__bullet {
    opacity: 0.65;
}

.bngc-trust-bar--inline {
    position: static;
    border-radius: 12px;
    border: 1px solid rgba(14, 42, 71, 0.08);
    background: rgba(14, 42, 71, 0.02);
}

.bngc-trust-bar--inline .bngc-trust-bar__inner {
    justify-content: flex-start;
    padding: 8px 12px;
    gap: 10px;
}

.bngc-trust-bar--inline .bngc-trust-bar__item {
    background: transparent;
    border: none;
    padding: 4px 0;
}

.bngc-trust-bar--cta {
    margin-top: 12px;
}

@media (max-width: 640px) {
    .bngc-trust-bar__text {
        white-space: normal;
    }
}