/* Evermat Newsletter Modal Styles */

.evermat-modal {
    border: none;
    border-radius: 12px;
    padding: 0;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.modal-header-graphic {
    width: 100%;
    height: 160px;
    background-image: url('https://evermat.se/wp-content/uploads/2025/09/Evermat_Hero_1.webp');
    background-size: cover;
    background-position: center;
}

/* Backdrop när modalen är öppen */
.evermat-modal::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    padding: 20px 30px;
    text-align: center;
}

.modal-content h3 {
    margin-top: 0;
    color: #333;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#newsletter-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

.button-submit {
    background: #0073aa; /* Astra/WP standardblå */
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.button-submit:hover {
    background: #005177;
}

.link-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}

#form-response {
    margin-top: 15px;
    font-weight: bold;
}