/* nasevice.anfrage – Modal Popup */

#nasevice-anfrage-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nasevice-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.nasevice-modal-box {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 36px 32px 28px;
    width: min(92vw, 460px);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.nasevice-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
}
.nasevice-modal-close:hover { color: #000; }

.nasevice-modal-box h3 {
    margin: 0 0 6px;
    font-size: 1.3em;
}

.nasevice-modal-product {
    color: #555;
    font-size: 0.9em;
    margin: 0 0 22px;
}

#nasevice-anfrage-form label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

#nasevice-anfrage-form input[type="text"],
#nasevice-anfrage-form input[type="email"],
#nasevice-anfrage-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
    margin-bottom: 16px;
    font-family: inherit;
}

#nasevice-anfrage-form textarea {
    height: 110px;
    resize: vertical;
}

#nasevice-anfrage-form input:focus,
#nasevice-anfrage-form textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
}

.nasevice-anfrage-submit {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}
.nasevice-anfrage-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.nasevice-anfrage-error {
    color: #c0392b;
    font-size: 0.88em;
    margin-top: 10px;
    display: none;
}

#nasevice-anfrage-success {
    text-align: center;
    padding: 20px 0 10px;
}
#nasevice-anfrage-success p {
    font-size: 1.05em;
    color: #2d6a4f;
}

/* ── Anfrage-Button (Loop + Einzelprodukt) ───────────────────────────────── */
.nasevice-anfrage-btn,
.nasevice-anfrage-add-btn {
    margin-top: 8px;
    display: block;
    width: 100%;
}
