/* ==========================================================================
   Rukabo guest footer
   Used on landing/auth/guest pages
   ========================================================================== */

.rk-guest-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0;
    padding: 26px 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(5, 6, 17, .42);
    color: rgba(255, 255, 255, .70);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .045),
        0 -18px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.rk-guest-footer-shell {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.rk-guest-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.rk-guest-footer-nav a {
    color: rgba(255, 255, 255, .62) !important;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none !important;
    transition: color .16s ease, text-shadow .16s ease;
}

.rk-guest-footer-nav a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 18px rgba(255, 70, 188, .32);
}

.rk-guest-footer-stores {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 16px;
    text-align: center;
}

.rk-guest-footer-stores iframe {
    display: block !important;
    width: 100% !important;
    max-width: 360px !important;
    height: 80px !important;
    border: 0 !important;
    overflow: hidden !important;
    float: none !important;
    margin: 0 auto !important;
}

.rk-guest-footer-store-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
}

.rk-guest-footer-store-fallback a {
    color: #9ab2ff !important;
    font-weight: 700;
    text-decoration: none !important;
}

.rk-guest-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.rk-guest-footer-socials,
.rk-guest-footer-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.rk-guest-footer-socials a,
.rk-guest-footer-copy,
.rk-guest-footer-copy a {
    color: rgba(255, 255, 255, .64) !important;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none !important;
}

.rk-guest-footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rk-guest-footer-socials a:hover,
.rk-guest-footer-copy a:hover {
    color: #ffffff !important;
}

.rk-guest-footer-lang .dropdown,
.rk-guest-footer-lang .dropup {
    display: inline-flex;
}

.rk-guest-footer-lang .dropdown-toggle,
.rk-guest-footer-lang a {
    color: rgba(255, 255, 255, .70) !important;
}

@media (max-width: 767px) {
    .rk-guest-footer {
        padding: 24px 16px 26px;
    }

    .rk-guest-footer-nav {
        gap: 8px 14px;
    }

    .rk-guest-footer-nav a {
        font-size: 12px;
    }

    .rk-guest-footer-stores iframe {
        max-width: 320px !important;
        height: 80px !important;
    }

    .rk-guest-footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .rk-guest-footer-socials,
    .rk-guest-footer-copy {
        gap: 8px 12px;
    }
}

@media (max-width: 420px) {
    .rk-guest-footer-stores iframe {
        height: 156px !important;
    }
}