/* Mild — header lang dropdown + avatar styles for static pages.
   Copied from src/assets/recipes.css to match landing 1:1. */
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Druk Wide Cy TT', sans-serif;
    font-weight: 500;
    color: black;
    padding: 8px 12px;
    margin-right: 14px;
    border-radius: 6px;
}
.lang-btn:hover { background: #F4F5F0; }
.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: white;
    border-radius: 10px;
    padding: 16px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.lang-item {
    min-width: 50px;
    height: 22px;
    padding: 8px 16px;
    border: none;
    background: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Druk Wide Cy TT', sans-serif;
    font-weight: 500;
    color: black;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    white-space: nowrap;
}
.lang-item.cjk { font-family: 'Inter', sans-serif; font-weight: 900; }
.lang-item:hover { background: #F4F5F0; }
.lang-item.active { background: #F4F5F0; }
.auth-avatar-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: #E8E9E3; border: none; cursor: pointer;
    flex-shrink: 0;
}
.auth-avatar-btn:hover { background: #D5D6D0; }
.footer-link { color: #888 !important; }
.footer-link--active { color: #000 !important; }
