/* TRUST BADGES BAR STYLING - IMAGE 1 FLOATING OVERLAP CARD COPY */

.veeru-trust-badges-bar {
    width: 100%;
    background-color: transparent;
    position: relative;
    z-index: 20;
    padding: 0;
    box-sizing: border-box;
}

/* SINGLE CONTINUOUS FLOATING WHITE CARD CONTAINER */
.trust-badges-container {
    max-width: 1380px;
    margin: -35px auto 0 auto;
    padding: 18px 30px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
    transition: margin-top 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background-color: transparent;
    border: none;
    flex: 1;
    justify-content: flex-start;
    transition: transform 0.2s ease;
}

.trust-badge-item:hover {
    transform: translateY(-2px);
}

.sol-dividers-yes .trust-badge-item:not(:last-child) {
    border-right: 1px solid #e2e8f0;
    padding-right: 20px;
}

/* ICON WRAPPER & MASK ENGINE */
.badge-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-mask {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: #0f172a;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.badge-icon-wrap i {
    font-size: 28px;
    color: #0f172a;
}

.badge-icon-wrap svg {
    width: 28px;
    height: 28px;
    fill: #0f172a;
}

/* TEXT WRAPPER */
.badge-text-wrap {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.1px;
    display: block;
}

.badge-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    color: #64748b;
    line-height: 1.35;
    margin-top: 2px;
    display: block;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
    .trust-badges-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }

    .trust-badge-item {
        flex: 1 1 40%;
    }

    .sol-dividers-yes .trust-badge-item:not(:last-child) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .trust-badges-container {
        margin-top: -25px;
        border-radius: 14px;
        padding: 16px 14px;
        gap: 12px;
    }

    .trust-badge-item {
        flex: 1 1 100%;
    }
}