/*
 * Site-wide chrome styles previously inlined in _Layout.cshtml:
 * favourites badge in the navigation plus the footer links / CTA button.
 * Kept as a separate cacheable stylesheet (asp-append-version handles busting).
 */

.favorite-badge {
    background: #e7a920;
    border-radius: 999px;
    color: #1d1d1f;
    display: none;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    min-width: 18px;
    padding: 2px 6px;
    text-align: center;
    vertical-align: middle;
}

.favorite-badge.is-visible {
    display: inline-block;
}

/* Footer: links column (replaces FIND US) — larger, white, hover gold. */
.footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .footer-links li {
    margin-bottom: 10px;
}

.footer .footer-links a {
    color: #fff;
    font-size: 16px;
    letter-spacing: .3px;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.footer .footer-links a:hover,
.footer .footer-links a:focus {
    color: #e7a920;
    padding-left: 4px;
}

/* Footer: "Contact us" button (replaces LET'S TALK contact line). */
.footer .footer-quote-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 14px 30px;
    background: #e7a920;
    border: 2px solid #e7a920;
    border-radius: 999px;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.footer .footer-quote-btn:hover,
.footer .footer-quote-btn:focus {
    background: transparent;
    color: #e7a920;
    text-decoration: none;
}

/* Language switcher (rendered only when >1 culture is enabled in Site Settings). */
.lang-switch {
    display: inline-flex;
    gap: 10px;
    margin-right: 16px;
    vertical-align: middle;
}

.lang-switch a {
    color: inherit;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .6;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity .2s ease, color .2s ease;
}

.lang-switch a:hover,
.lang-switch a:focus {
    color: #e7a920;
    opacity: 1;
}

.lang-switch a.is-active {
    color: #e7a920;
    opacity: 1;
    pointer-events: none;
}

.lang-switch--mobile {
    display: flex;
    gap: 18px;
    padding: 0 30px;
}

.lang-switch--mobile a {
    font-size: 15px;
}
