/* ────────────────────────────────────────────────────────────
   Trust block — secure-payment note + uniform payment-method tiles.
   Loaded by components/trust-block.blade.php.
   ──────────────────────────────────────────────────────────── */

.trust-block {
    border: 1px solid #e5e7eb;
    margin-top: 12px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(219, 234, 254, .55) 0%, rgba(255, 255, 255, .85) 60%, rgba(224, 242, 254, .45) 100%);
}

.trust-block__note { padding: 10px 16px; }
.trust-block__note p { font-size: 11.5px; color: #6b7280; margin: 0; line-height: 1.55; text-align: left; }
.trust-block__note i { color: #0083f2; margin-right: 5px; }

.trust-block__strip { height: 22px; background: linear-gradient(180deg, #333 0%, #1a1a1a 45%, #2e2e2e 100%); }

/* uniform tiles — equal height, white card, logo centered */
.pay-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 10px; }
.pay-tile {
    flex: 0 0 auto;
    height: 30px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(16, 24, 64, .05);
}
.pay-tile__logo { max-height: 20px; width: auto; height: auto; display: block; }
.pay-tile__logo[alt="Visa"] { padding: 3px 0; box-sizing: border-box; }

/* logos that carry their own background: no tile bg, keep the rounded corners */
.pay-tile--bare {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
}
.pay-tile--bare .pay-tile__logo { max-height: 28px; height: 28px; border-radius: 6px; }
