.lang-suggest {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    background: #1a1209;
    color: #f5f0e8;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(26, 18, 9, 0.25);
    padding: 18px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.5;
    z-index: 1000;
    animation: lang-suggest-in 0.3s ease-out;
}
@keyframes lang-suggest-in {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.lang-suggest-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
}
.lang-suggest-body {
    font-size: 14px;
    color: #e3dccf;
    margin: 0 0 14px;
}
.lang-suggest-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.lang-suggest-cta {
    display: inline-block;
    background: #c8360a;
    color: #f5f0e8;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}
.lang-suggest-cta:hover { opacity: 0.9; }
.lang-suggest-dismiss {
    background: none;
    border: none;
    color: #e3dccf;
    font-size: 13px;
    cursor: pointer;
    padding: 9px 8px;
    font-family: inherit;
}
.lang-suggest-dismiss:hover { color: #f5f0e8; }
@media (max-width: 480px) {
    .lang-suggest { left: 12px; right: 12px; bottom: 12px; }
}

/* Footer language row (visible language switcher) */
.lang-footer {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
}
.lang-footer a {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lang-footer a:hover { opacity: 1; }
.lang-footer a[aria-current="true"] {
    font-weight: 700;
    opacity: 1;
}
