hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(100, 170, 255, 0.12), transparent);
    margin: 0;
}

footer {
    border-top: 1px solid rgba(100, 170, 255, 0.06);
    background: rgba(5, 13, 26, 0.6);
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

.footer-wrapper {
    min-height: 200px;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-sub-text {
    font-size: 13px;
    color: var(--text-muted) !important;
    font-weight: 400;
}

.footer-third-party {
    max-height: 50px;
    display: flex;
}

.footer-items-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-items-wrapper .item-default {
    margin-bottom: 8px;
}

.footer-wrapper .item,
.footer-wrapper p,
.footer-wrapper .footer-sub-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-wrapper .item {
    transition: color 0.2s ease;
}

.footer-wrapper .item:hover {
    color: var(--text-primary);
}

.footer-wrapper .logo-wrapper .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-wrapper .logo-wrapper .navbar-brand .store-logo {
    display: none !important;
}

.footer-wrapper .logo-wrapper .navbar-brand .store-name-img {
    height: 34px;
    max-width: 200px;
    transform: none;
    object-fit: contain;
    object-position: left center;
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .footer-wrapper {
        padding: 24px 16px;
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-wrapper > div {
        flex: 0 0 auto;
        width: calc(50% - 10px);
    }

    .footer-wrapper .item,
    .footer-wrapper p {
        font-size: 13px;
    }
}
