/**
 * Geo-redirect suggestion banner
 * Shown when user IP doesn't match current language path.
 * Dismissable, persisted via localStorage.
 */
.lh-geo-banner {
    background: #4992BB;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding: 16px 0;
    position: relative;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lh-geo-banner[hidden] {
    display: none !important;
}

.lh-geo-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 60px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lh-geo-banner__text {
    text-align: center;
}

.lh-geo-banner__link {
    display: inline-block;
    margin-left: 8px;
    background: #fff;
    color: #4992BB;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.lh-geo-banner__link:hover {
    background: #DCEBF3;
    color: #333;
}

.lh-geo-banner__dismiss {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s, border-color 0.2s;
}

.lh-geo-banner__dismiss:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

@media (max-width: 768px) {
    .lh-geo-banner {
        font-size: 14px;
        padding: 14px 0;
    }

    .lh-geo-banner__inner {
        padding-right: 50px;
        flex-direction: column;
        gap: 8px;
    }

    .lh-geo-banner__link {
        margin-left: 0;
        padding: 8px 24px;
    }
}