/* Custom header additions — inherits Westio's header-1 layout,
   styles only the new right-side elements. */

.wc-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Remove Westio's decorative circle before top-level menu links */
.main-navigation ul.menu > li.menu-item > a:before {
    display: none;
}

/* Kill default list bullets on menu items */
.site-header .main-navigation ul,
.site-header .main-navigation li,
.wc-lang-switcher ul,
.wc-lang-switcher li {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.site-header .main-navigation li::marker,
.wc-lang-switcher li::marker {
    content: none;
}

/* Language switcher: dropdown showing current language, others on open */
.wc-lang-switcher {
    position: relative;
}

.wc-lang-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: inherit;
    font-family: inherit;
}

.wc-lang-globe {
    display: block;
}

.wc-lang-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}

.wc-lang-switcher:hover .wc-lang-arrow,
.wc-lang-switcher:focus-within .wc-lang-arrow {
    transform: rotate(225deg) translateY(-1px);
}

.wc-lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 64px;
    padding: 6px 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 100;
}

.wc-lang-switcher:hover .wc-lang-dropdown,
.wc-lang-switcher:focus-within .wc-lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.wc-lang-dropdown li a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0d2438;
    text-align: center;
    transition: background .15s ease;
}

.wc-lang-dropdown li a:hover {
    background: rgba(189, 173, 123, .15);
}

.wc-header-phone {
    font-size: 15px;
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
}

.wc-header-cta {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--e-global-color-primary, #BDAD7B);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    color: inherit;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease;
}

.wc-header-cta:hover {
    background: var(--e-global-color-primary, #BDAD7B);
    color: #fff;
}
