.rexos-language-switcher {
    --rexos-ml-bg: rgba(17, 16, 14, 0.78);
    --rexos-ml-panel: #11100e;
    --rexos-ml-panel-hover: #1a1815;
    --rexos-ml-gold: #d2ad65;
    --rexos-ml-gold-hover: #e0bf79;
    --rexos-ml-gold-soft: rgba(210, 173, 101, 0.16);
    --rexos-ml-ivory: #f3efe6;
    --rexos-ml-muted: rgba(243, 239, 230, 0.72);
    --rexos-ml-border: rgba(210, 173, 101, 0.36);
    --rexos-ml-border-strong: rgba(210, 173, 101, 0.68);
    --rexos-ml-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    align-items: center;
    color: var(--rexos-ml-ivory);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    line-height: 1;
    max-width: 100%;
    position: relative;
    vertical-align: middle;
    z-index: 1000;
}

.rexos-language-switcher__link {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    color: var(--rexos-ml-muted);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 2rem;
    min-width: 2.3rem;
    padding: 0.45rem 0.58rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.rexos-language-switcher__link:hover,
.rexos-language-switcher__link:focus {
    background: var(--rexos-ml-gold-soft);
    border-color: var(--rexos-ml-border-strong);
    color: var(--rexos-ml-ivory);
    outline: none;
    text-decoration: none;
}

.rexos-language-switcher__link:focus-visible,
.rexos-language-switcher__button:focus-visible,
.rexos-ml-suggestion__action:focus-visible,
.rexos-contact-form input:focus-visible,
.rexos-contact-form textarea:focus-visible,
.rexos-contact-form button:focus-visible,
.rexos-contact-actions__button:focus-visible {
    box-shadow: 0 0 0 2px rgba(210, 173, 101, 0.55);
    outline: none;
}

.rexos-language-switcher__link.is-active {
    background: var(--rexos-ml-gold);
    border-color: var(--rexos-ml-gold);
    color: #11100e;
}

.rexos-language-switcher--names {
    gap: 0.35rem;
}

.rexos-language-switcher--names .rexos-language-switcher__link,
.rexos-language-switcher--dropdown .rexos-language-switcher__link {
    min-width: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    text-transform: none;
}

.rexos-language-switcher--codes .rexos-language-switcher__link + .rexos-language-switcher__link,
.rexos-language-switcher--names .rexos-language-switcher__link + .rexos-language-switcher__link {
    position: relative;
}

.rexos-language-switcher--codes .rexos-language-switcher__link + .rexos-language-switcher__link::before,
.rexos-language-switcher--names .rexos-language-switcher__link + .rexos-language-switcher__link::before {
    background: rgba(210, 173, 101, 0.32);
    content: "";
    height: 1rem;
    left: -0.12rem;
    position: absolute;
    width: 1px;
}

.rexos-language-switcher--dropdown {
    background: var(--rexos-ml-bg);
    border: 1px solid var(--rexos-ml-border);
    border-radius: 4px;
    display: inline-block;
    flex: 0 0 auto;
    inline-size: max-content;
    margin-inline-start: auto;
    max-inline-size: min(190px, calc(100vw - 24px));
    min-inline-size: 172px;
    position: relative;
    white-space: nowrap;
}

.rexos-language-switcher--dropdown[open] {
    border-color: var(--rexos-ml-border-strong);
}

.rexos-language-switcher--dropdown > summary,
.rexos-language-switcher__button {
    align-items: center;
    color: var(--rexos-ml-ivory);
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    list-style: none;
    min-height: 44px;
    padding: 0.52rem 0.68rem;
    user-select: none;
}

.rexos-language-switcher--dropdown > summary::-webkit-details-marker {
    display: none;
}

.rexos-language-switcher__current {
    align-items: center;
    display: inline-flex;
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
}

.rexos-language-switcher__current-name {
    color: var(--rexos-ml-ivory);
    flex: 1 1 auto;
    font-size: 0.86rem;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rexos-language-switcher__flag {
    border: 1px solid rgba(243, 239, 230, 0.24);
    display: block;
    flex: 0 0 auto;
    height: 15px;
    object-fit: cover;
    width: 22px;
}

.rexos-language-switcher__caret {
    border-color: var(--rexos-ml-gold) transparent transparent transparent;
    border-style: solid;
    border-width: 0.32rem 0.24rem 0;
    flex: 0 0 auto;
    height: 0;
    transition: transform 160ms ease;
    width: 0;
}

.rexos-language-switcher--dropdown[open] .rexos-language-switcher__caret {
    transform: rotate(180deg);
}

.rexos-language-switcher__menu {
    background: var(--rexos-ml-panel);
    border: 1px solid var(--rexos-ml-border-strong);
    border-radius: 4px;
    box-shadow: var(--rexos-ml-shadow);
    display: grid;
    gap: 0.14rem;
    inset-inline-start: auto;
    inset-inline-end: 0;
    min-inline-size: 100%;
    max-inline-size: calc(100vw - 24px);
    padding: 0.35rem;
    position: absolute;
    top: calc(100% - 1px);
    width: max-content;
    z-index: 9999;
}

.rexos-language-switcher__menu .rexos-language-switcher__link {
    border-radius: 3px;
    display: grid;
    gap: 0.66rem;
    grid-template-columns: 22px minmax(0, 1fr);
    justify-content: stretch;
    min-height: 44px;
    padding: 0.58rem 0.72rem;
    width: 100%;
}

.rexos-language-switcher__menu .rexos-language-switcher__link:hover,
.rexos-language-switcher__menu .rexos-language-switcher__link:focus {
    background: var(--rexos-ml-panel-hover);
}

.rexos-language-switcher__menu .rexos-language-switcher__link.is-active {
    background: var(--rexos-ml-gold-soft);
    border-color: var(--rexos-ml-gold);
    color: var(--rexos-ml-ivory);
    font-weight: 820;
}

.rexos-language-switcher__option-name {
    font-size: 0.86rem;
    font-weight: 740;
    letter-spacing: 0;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
}

.rexos-header-has-language-switcher .rexos-header-language-row,
.rexos-header-has-language-switcher .header-inner {
    flex-wrap: nowrap;
}

.rexos-header-has-language-switcher .header-nav,
.rexos-header-has-language-switcher .nav,
.rexos-header-has-language-switcher .nav-left,
.rexos-header-has-language-switcher .nav-right {
    flex-wrap: nowrap;
    min-width: 0;
}

.rexos-header-has-language-switcher .nav > li > a,
.rexos-header-has-language-switcher .nav-top-link {
    white-space: nowrap;
}

.rexos-header-has-language-switcher .html.custom:has(.rexos-language-switcher),
.rexos-header-has-language-switcher .rexos-language-switcher {
    flex: 0 0 auto;
    margin-inline-start: auto;
}

@media (min-width: 1181px) and (max-width: 1366px) {
    .rexos-header-has-language-switcher .nav > li > a,
    .rexos-header-has-language-switcher .nav-top-link {
        padding-inline: 0.48rem;
    }

    .rexos-header-has-language-switcher #logo {
        width: 176px;
    }
}

@media (max-width: 1180px) {
    .rexos-header-has-language-switcher .hide-for-medium,
    .rexos-header-has-language-switcher .header-nav-main {
        display: none !important;
    }

    .rexos-header-has-language-switcher .show-for-medium,
    .rexos-header-has-language-switcher .mobile-nav {
        display: flex !important;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher--dropdown {
        margin-inline-start: 0;
        max-inline-size: calc(100vw - 24px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rexos-language-switcher__link,
    .rexos-language-switcher__caret,
    .rexos-contact-actions__button,
    .rexos-contact-form__submit {
        transition: none;
    }
}

.rexos-lang-en,
.rexos-lang-de,
.rexos-lang-sq,
.rexos-lang-fr,
.rexos-lang-it,
.rexos-lang-tr {
    scroll-behavior: smooth;
}

.rexos-ml-suggestion {
    align-items: center;
    background: rgba(15, 14, 12, 0.94);
    border: 1px solid rgba(210, 173, 101, 0.42);
    bottom: 1.25rem;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.32);
    color: #fff8ec;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    left: 50%;
    max-width: min(42rem, calc(100vw - 2rem));
    padding: 0.75rem;
    position: fixed;
    transform: translateX(-50%);
    z-index: 9999;
}

.rexos-ml-suggestion[hidden] {
    display: none;
}

.rexos-ml-suggestion__text {
    font-size: 0.92rem;
    line-height: 1.35;
}

.rexos-ml-suggestion__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rexos-ml-suggestion__action {
    background: transparent;
    border: 1px solid rgba(210, 173, 101, 0.42);
    color: #fff8ec;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    min-height: 2.25rem;
    padding: 0.52rem 0.75rem;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.rexos-ml-suggestion__action:hover,
.rexos-ml-suggestion__action:focus {
    background: rgba(210, 173, 101, 0.18);
    border-color: rgba(210, 173, 101, 0.74);
    color: #fff8ec;
    outline: none;
    text-decoration: none;
}

.rexos-ml-suggestion__action--accept {
    background: #d2ad65;
    border-color: #d2ad65;
    color: #11100e;
}

.rexos-ml-suggestion__action--accept:hover,
.rexos-ml-suggestion__action--accept:focus {
    background: #e0bf79;
    color: #11100e;
}

.rexos-contact-form {
    background: #fffdf8;
    border: 1px solid rgba(210, 173, 101, 0.34);
    border-radius: 5px;
    color: #1e1c18;
    max-width: 760px;
    padding: clamp(1.1rem, 2vw, 1.6rem);
}

.rexos-contact-form__title {
    color: #171511;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    letter-spacing: 0;
    margin: 0 0 1rem;
}

.rexos-contact-form__notice {
    border: 1px solid rgba(210, 173, 101, 0.44);
    border-radius: 4px;
    display: grid;
    gap: 0.18rem;
    margin: 0 0 1rem;
    padding: 0.8rem 0.9rem;
}

.rexos-contact-form__notice--success {
    background: #f5f8ef;
    border-color: rgba(98, 125, 71, 0.45);
}

.rexos-contact-form__notice--error {
    background: #fff6f3;
    border-color: rgba(178, 0, 0, 0.32);
}

.rexos-contact-form__grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rexos-contact-form__field {
    display: grid;
    gap: 0.34rem;
    margin: 0;
}

.rexos-contact-form__field--message {
    grid-column: 1 / -1;
}

.rexos-contact-form label {
    color: #24211b;
    font-size: 0.92rem;
    font-weight: 700;
}

.rexos-contact-form input,
.rexos-contact-form textarea {
    background: #fff;
    border: 1px solid rgba(45, 40, 30, 0.24);
    border-radius: 4px;
    color: #171511;
    font: inherit;
    min-height: 48px;
    padding: 0.68rem 0.78rem;
    width: 100%;
}

.rexos-contact-form textarea {
    line-height: 1.45;
    min-height: 150px;
    resize: vertical;
}

.rexos-contact-form [aria-invalid="true"] {
    border-color: #b20000;
}

.rexos-contact-form__field-error {
    color: #9a1b1b;
    font-size: 0.82rem;
    line-height: 1.35;
}

.rexos-contact-form__trap {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.rexos-contact-form__submit,
.rexos-contact-actions__button {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-weight: 760;
    justify-content: center;
    min-height: 46px;
    text-decoration: none;
    white-space: nowrap;
}

.rexos-contact-form__submit {
    background: #171511;
    border: 1px solid #171511;
    color: #fff8ec;
    cursor: pointer;
    margin-top: 1rem;
    padding: 0.74rem 1.05rem;
}

.rexos-contact-form__submit:hover,
.rexos-contact-form__submit:focus {
    background: #2a251c;
    color: #fff8ec;
}

.rexos-contact-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.rexos-contact-actions__button {
    border: 1px solid rgba(210, 173, 101, 0.52);
    color: #171511;
    gap: 0.42rem;
    padding: 0.66rem 0.92rem;
}

.rexos-contact-actions__button--primary {
    background: #fff8ec;
}

.rexos-contact-actions__button--whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.rexos-contact-actions__button--whatsapp:hover,
.rexos-contact-actions__button--whatsapp:focus {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
}

.rexos-contact-actions__icon {
    display: block;
    flex: 0 0 auto;
    height: 20px;
    width: 20px;
}

@media (max-width: 700px) {
    .rexos-language-switcher {
        gap: 0.16rem;
    }

    .rexos-language-switcher__link {
        font-size: 0.68rem;
        min-height: 1.9rem;
        min-width: 2rem;
        padding: 0.4rem 0.45rem;
    }

    .rexos-language-switcher--names .rexos-language-switcher__link {
        flex: 1 1 auto;
    }

    .rexos-language-switcher--dropdown {
        min-inline-size: 172px;
    }

    .rexos-language-switcher__menu {
        overflow-x: hidden;
    }

    .rexos-ml-suggestion {
        align-items: stretch;
        bottom: 0.75rem;
        display: grid;
        justify-items: stretch;
        text-align: center;
    }

    .rexos-ml-suggestion__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rexos-contact-form {
        padding: 1rem;
    }

    .rexos-contact-form__grid {
        grid-template-columns: 1fr;
    }

    .rexos-contact-actions {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr;
    }

    .rexos-contact-actions__button {
        width: 100%;
    }
}


/* Rexos Multilingual v0.1.7 mobile header spacing */
@media (max-width: 1180px) {
    .rexos-header-has-language-switcher .rexos-header-language-row {
        align-items: center;
        box-sizing: border-box;
        column-gap: 12px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-width: 0;
        padding-inline: 16px;
        width: 100%;
    }

    .rexos-header-has-language-switcher .rexos-header-language-row > .flex-col {
        min-width: 0;
    }

    .rexos-header-has-language-switcher .rexos-header-language-row > .show-for-medium.flex-left {
        grid-column: 1;
        justify-self: start;
    }

    .rexos-header-has-language-switcher .rexos-header-language-row > .logo,
    .rexos-header-has-language-switcher .rexos-header-language-row > #logo {
        grid-column: 2;
        justify-self: center;
        min-width: 0;
        overflow: hidden;
    }

    .rexos-header-has-language-switcher .rexos-header-language-row > .logo a,
    .rexos-header-has-language-switcher .rexos-header-language-row > #logo a {
        max-width: min(170px, 38vw);
    }

    .rexos-header-has-language-switcher .rexos-header-language-row > .logo img,
    .rexos-header-has-language-switcher .rexos-header-language-row > #logo img {
        height: auto;
        max-width: min(170px, 38vw);
    }

    .rexos-header-has-language-switcher .rexos-header-language-row > .show-for-medium.flex-right {
        grid-column: 3;
        justify-self: end;
        min-width: 0;
    }

    .rexos-header-has-language-switcher .mobile-nav.nav-right {
        justify-content: flex-end;
        min-width: 0;
        width: auto;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher-host {
        margin: 0;
        max-width: min(172px, 42vw);
        min-width: 0;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher,
    .rexos-header-has-language-switcher .rexos-language-switcher--dropdown {
        inline-size: auto;
        justify-self: end;
        margin-inline-end: 0;
        margin-inline-start: 0;
        max-inline-size: min(172px, 42vw);
        min-inline-size: 0;
        min-width: 0;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher__button,
    .rexos-header-has-language-switcher .rexos-language-switcher--dropdown > summary {
        box-sizing: border-box;
        gap: 0.38rem;
        max-width: 100%;
        min-height: 44px;
        min-width: 0;
        padding-inline: 0.52rem;
        width: auto;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher__current {
        gap: 6px;
        min-width: 0;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher__current-name {
        font-size: 0.82rem;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher__menu {
        inset-inline-end: 0;
        inset-inline-start: auto;
        max-inline-size: calc(100vw - 32px);
        overflow-x: hidden;
    }
}

@media (max-width: 430px) {
    .rexos-header-has-language-switcher .rexos-header-language-row {
        column-gap: 8px;
        padding-inline: 14px;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher-host,
    .rexos-header-has-language-switcher .rexos-language-switcher,
    .rexos-header-has-language-switcher .rexos-language-switcher--dropdown {
        max-inline-size: min(154px, 42vw);
        max-width: min(154px, 42vw);
    }

    .rexos-header-has-language-switcher .rexos-language-switcher__button,
    .rexos-header-has-language-switcher .rexos-language-switcher--dropdown > summary {
        gap: 0.32rem;
        padding-inline: 0.44rem;
    }

    .rexos-header-has-language-switcher .rexos-language-switcher__current-name {
        font-size: 0.8rem;
    }
}
