/*
 * Velgrina — bülten indirim popup'ı.
 * DESIGN.md: teal #2E7D8C, hover #1a5c69, near-black #1E2022, buton radius 8px.
 * font-family BILEREK yok — gövdeden Poppins miras alınır (DESIGN.md: hardcode etme).
 */

.velgrina-nlpop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.velgrina-nlpop__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 32, 34, .55);
}

.velgrina-nlpop__card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    box-shadow: 0 18px 50px rgba(30, 32, 34, .28);
    text-align: center;
    animation: velgrina-nlpop-in .22s ease-out;
}

@keyframes velgrina-nlpop-in {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .velgrina-nlpop__card { animation: none; }
}

.velgrina-nlpop__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.velgrina-nlpop__close:hover { background: #f3f4f6; color: #1E2022; }

.velgrina-nlpop__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2E7D8C;
    background: #f0fafa;
    border-radius: 999px;
    padding: 5px 12px;
    margin-bottom: 14px;
}

.velgrina-nlpop__title {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    color: #1E2022;
    margin: 0 0 8px;
}

.velgrina-nlpop__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 20px;
}

.velgrina-nlpop__form { margin: 0; }

/* Görsel olarak gizli ama ekran okuyucuya açık. */
.velgrina-nlpop__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.velgrina-nlpop__row {
    display: flex;
    gap: 8px;
}

.velgrina-nlpop__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1E2022;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}

.velgrina-nlpop__input:focus {
    outline: none;
    border-color: #2E7D8C;
    box-shadow: 0 0 0 3px rgba(46, 125, 140, .12);
}

.velgrina-nlpop__btn {
    flex: 0 0 auto;
    border: 0;
    border-radius: 8px;
    background: #2E7D8C;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 18px;
    cursor: pointer;
    transition: background .15s;
}

.velgrina-nlpop__btn:hover { background: #1a5c69; }

.velgrina-nlpop__btn:focus-visible,
.velgrina-nlpop__close:focus-visible,
.velgrina-nlpop__skip:focus-visible {
    outline: 3px solid rgba(46, 125, 140, .45);
    outline-offset: 2px;
}

.velgrina-nlpop__fine {
    font-size: 11px;
    line-height: 1.55;
    color: #9ca3af;
    margin: 14px 0 0;
}

.velgrina-nlpop__skip {
    margin-top: 10px;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
}

.velgrina-nlpop__skip:hover { color: #1E2022; }

@media (max-width: 480px) {
    .velgrina-nlpop__card { padding: 28px 20px 20px; border-radius: 14px; }
    .velgrina-nlpop__title { font-size: 21px; }
    .velgrina-nlpop__row { flex-direction: column; }
    .velgrina-nlpop__btn { width: 100%; padding: 13px 18px; }
}
