/* ===============================
ALMOE NEWSLETTER FORM & POPUP STYLE
=============================== */

#almoe-newsletter {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s;
}
#almoe-newsletter:hover {
    transform: translateY(-3px);
}

#almoe-newsletter input[type="email"] {
    width: 80%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border 0.3s;
}
#almoe-newsletter input[type="email"]:focus {
    border-color: #111;
    outline: none;
}

#almoe-newsletter button {
    padding: 12px 30px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
}
#almoe-newsletter button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* SweetAlert2 popups */
.swal2-popup {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px !important;
}
.swal2-popup small {
    font-size: 12px;
    color: #666;
}
.swal2-popup button.swal2-styled {
    background-color: #111 !important;
    color: #fff !important;
    padding: 6px 20px !important;
    font-size: 13px !important;
    border-radius: 5px !important;
    margin-top: 8px !important;
}
.swal2-popup button.swal2-styled:hover {
    background-color: #333 !important;
}
button.swal2-close {
    background: transparent !important;
    color: #00000054;
}
/* Responsive */
@media (max-width: 500px) {
    #almoe-newsletter {
        width: 95%;
        padding: 15px;
    }

    #almoe-newsletter input[type="email"] {
        width: 100%;
    }

    #almoe-newsletter button {
        width: 100%;
    }
}