
:root {
    --delsuites-red: #e30613;
    --language-text: #191919;
    --language-muted: #666666;
    --language-border: #dddddd;
}

#language-suggestion {
position: fixed;
top: 114px;
left: 0;
right: 0;
z-index: 9999;
width: 100%;
background: rgba(255,255,255,0.8);
border-bottom: 1px solid #dddddd;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}


#language-suggestion[hidden] {
    display: none !important;
}

.language-banner__inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 76px;
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.language-banner__message {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-banner__icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--delsuites-red);
    background: rgba(227, 6, 19, 0.08);
    border-radius: 50%;
    font-size: 22px;
}

.language-banner__title {
    margin: 0;
    color: var(--language-text);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}

.language-banner__description {
    margin: 3px 0 0;
    color: var(--language-muted);
    font-size: 14px;
    line-height: 1.4;
}

.language-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.language-banner__primary,
.language-banner__secondary {
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 2px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.language-banner__primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--delsuites-red);
    border: 1px solid var(--delsuites-red);
    text-decoration: none;
}

.language-banner__primary:hover,
.language-banner__primary:focus {
    color: #ffffff;
    background: #bd0010;
    border-color: #bd0010;
}

.language-banner__secondary {
    color: var(--language-text);
    background: #ffffff;
    border: 1px solid #777777;
}

.language-banner__secondary:hover,
.language-banner__secondary:focus {
    background: #f3f3f3;
    border-color: #444444;
}

.language-banner__close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #555555;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.language-banner__close:hover,
.language-banner__close:focus {
    color: #000000;
    background: #f1f1f1;
}

@media (max-width: 800px) {
    .language-banner__inner {
        width: calc(100% - 32px);
        padding: 16px 0;
        display: block;
        position: relative;
    }

    .language-banner__message {
        padding-right: 45px;
    }

    .language-banner__actions {
        margin-top: 16px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .language-banner__primary,
    .language-banner__secondary {
        width: 100%;
        text-align: center;
    }

    .language-banner__close {
        position: absolute;
        top: 12px;
        right: 0;
    }
}
