/* Support buttons - fixed right bottom, above scroll-to-top */
.support-buttons {
    position: fixed;
    right: 23px;
    bottom: 120px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.support-buttons__item {
    display: block;
}

.support-buttons__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.support-buttons__link:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.support-buttons__link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.support-buttons__link {
    position: relative;
}

.support-buttons__tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
    padding: 6px 10px;
    background: #333;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.support-buttons__link:hover .support-buttons__tooltip {
    opacity: 1;
}

/* Footer bottom - full width, text center */
.footer-bottom .copy-right-content {
    text-align: center;
}

/* Flag icons - display as circle instead of oval */
.lang-flag,
.mobile-lang-inline .lang-flag {
    width: 24px !important;
    height: 24px !important;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.mobile-lang-inline .lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu: center language flags row */
.mobile-lan-curr-nav {
    display: flex;
    justify-content: center;
}
.mobile-lan-curr-nav .language.mobile-lang-inline {
    width: 100%;
}

/* Language dropdown: flag + text inline, left + vertical center */
.dropdown-list {
    text-align: left;
}

.dropdown-list li a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px;
}

.dropdown-list li a .lang-flag {
    flex-shrink: 0;
}

/* Footer TikTok social link (replaces Twitter) */
.footer-social-list li a.tiktok {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social-list li a.tiktok svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 575px) {
    .support-buttons {
        right: 23px;
        bottom: 120px;
    }

    .support-buttons__link {
        width: 44px;
        height: 44px;
    }

    .support-buttons__link img {
        width: 22px;
        height: 22px;
    }
}

/* Blog details / page section: row align top so sidebar does not overflow */
.page-secton-wrapper.section-space-pb .row {
    align-items: flex-start;
}