/* ============================================================
   Language Splash Overlay
   Shown on first visit when no _language cookie is set.
   ============================================================ */

.lang-splash {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.lang-splash__card {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
}

.lang-splash__header {
    text-align: center;
    margin-bottom: 30px;
}

.lang-splash__logo {
    height: 40px;
    margin-bottom: 20px;
}

.lang-splash__title {
    font-size: 22px;
    margin: 0 0 10px;
}

.lang-splash__subtitle {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.lang-splash__suggestion {
    text-align: center;
    margin-bottom: 30px;
}

.lang-splash__continue-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--w-primary, #AA0B57);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-splash__continue-btn:hover {
    background: #8a0947;
}

.lang-splash__divider {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-bottom: 20px;
}

.lang-splash__region-title {
    font-size: 15px;
    color: #888;
    margin: 20px 0 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.lang-splash__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.lang-splash__lang-link {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
    font-size: 15px;
}

.lang-splash__lang-link:hover {
    border-color: #AB0355;
    background: #fdf2f8;
}

.lang-splash__flag {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 6px;
}
