/* ═══════════════════════════════════════════════════
   BeezyTech Trust Badges v1.1.0
   Checkout (top + order review) + Footer
═══════════════════════════════════════════════════ */

/* ── Shared strip ────────────────────────────────── */
.bt-trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.25rem;
    background: #f9f8f5;
    border: 1px solid #e6e0d0;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
}

.bt-trust-heading {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin: 0;
    line-height: 1;
}

.bt-trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bt-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bt-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #c8b47a;
    flex-shrink: 0;
}

.bt-trust-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.bt-trust-label {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    color: rgba(15, 23, 41, 0.99);
}

.bt-trust-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
    flex-shrink: 0;
}

/* ── Checkout TOP badge ──────────────────────────── */
.bt-trust-checkout-top {
    margin: 0 0 1.5rem;
    background: #fff;
    border: 2px solid #c8b47a;
}

/* ── Checkout ORDER REVIEW badge ─────────────────── */
.bt-trust-checkout-order {
    margin: 0 0 1rem;
}

/* ── Footer variant ──────────────────────────────── */
.bt-trust-footer-wrap {
    width: 100%;
    background: rgba(15, 23, 41, 0.99);
    padding: 1rem 1.5rem;
}

.bt-trust-footer {
    background: transparent;
    border-color: rgba(200, 180, 122, 0.25);
    max-width: 900px;
    margin: 0 auto;
}

.bt-trust-footer .bt-trust-heading {
    color: rgba(255, 255, 255, 0.4);
}

.bt-trust-footer .bt-trust-item,
.bt-trust-footer .bt-trust-label {
    color: #fff;
}

.bt-trust-footer .bt-trust-icon {
    color: #c8b47a;
}

.bt-trust-footer .bt-trust-divider {
    background: rgba(255, 255, 255, 0.15);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 600px) {
    .bt-trust-items  { gap: 0.5rem; }
    .bt-trust-divider { display: none; }
    .bt-trust-label  { font-size: 0.72rem; }
}
