.site-footer {
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 28px 0 34px;
    text-align: center
}

.help-links h3 {
    font-size: 14px;
    color: #aaa;
    margin: 0 0 10px
}

.help-links a {
    color: #8b8b8b;
    text-decoration: none;
    font-weight: 800;
    margin: 0 10px
}

.footer-trust-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 26px auto 22px;
    max-width: 860px
}

.footer-trust-images img {
    max-width: 165px;
    max-height: 82px;
    object-fit: contain
}

.payment-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 18px auto;
    max-width: 760px
}

.payment-images img {
    width: 145px;
    height: 45px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    background: #181818;
    padding: 6px
}

.license-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 20px 0
}

.license-images img {
    width: 58px;
    height: 58px;
    object-fit: contain
}

.legal-text {
    max-width: 740px;
    margin: 18px auto;
    color: #bcbcbc;
    font-size: 13px;
    line-height: 1.55
}

.copyright {
    margin: 20px 0 0;
    color: #fff;
    font-size: 13px
}

@media(max-width:720px) {
    .site-footer {
        padding-bottom: 92px
    }

    .footer-trust-images {
        gap: 8px;
        margin: 20px auto 18px
    }

    .footer-trust-images img {
        max-width: 46%;
        max-height: 72px
    }

    .payment-images {
        gap: 8px
    }

    .payment-images img {
        width: 106px;
        height: 36px
    }

    .license-images img {
        width: 44px;
        height: 44px
    }

    .legal-text {
        font-size: 10px;
        padding: 0 8px
    }

    .help-links a {
        font-size: 13px;
        margin: 0 7px
    }
}

.bb-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px);
}

.bb-popup-overlay.is-open {
    display: flex;
}

.bb-popup-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    animation: popupFadeIn 0.3s ease-out;
}

.bb-popup-content img {
    width: 100%;
    height: auto;
    display: block;
}

.bb-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}