/* Newsletter Subscriber – Frontend Styles */


.ns-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 24px;
}

.ns-form {
    max-width: 800px;
    margin: 0 auto;
}

.ns-form-row {
    display: flex;
    gap: 0;
    border: 2px solid #da3c75;
    border-radius: 12px;
    overflow: hidden;
    background: #db3d77;
}

.ns-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 15px;
    color: #fff;
    background: transparent;
    min-width: 0;
}

.ns-input::placeholder {
    color: #999;
}

.ns-btn {
    background: #da3c75;
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
}

.ns-btn:hover {
    background: #da3c75;
}

.ns-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.ns-message {
    margin-top: 14px;
    font-size: 14px;
    min-height: 20px;
    transition: all 0.3s;
}

.ns-message.ns-success {
    color: #2e7d32;
}

.ns-message.ns-error {
    color: #c62828;
}

/* Responsive */
@media (max-width: 500px) {
    .ns-form-row {
        flex-direction: column;
    }
    .ns-btn {
        width: 100%;
    }
}
