/* Language selection popup styles */
.language-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.language-popup {
    background: #fffdfa;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(180, 140, 100, 0.18);
    padding: 32px 40px;
    text-align: center;
    min-width: 300px;
}
.language-popup h2 {
    margin-bottom: 18px;
    font-size: 2em;
    color: #617461;
}
.language-popup .lang-btn {
    margin: 12px 16px;
    padding: 12px 32px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    background: #b7c7b7;
    color: #fff;
    cursor: pointer;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    transition: background 0.2s;
}
.language-popup .lang-btn:hover {
    background: #7c8a7c;
}
