.email-subscribe-component {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.email-subscribe-component .es-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);
    margin: 0 0 8px;
}

.email-subscribe-component .es-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px;
    line-height: 1.6;
}

.email-subscribe-component .es-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-subscribe-component .es-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border-input);
    border-radius: var(--border-radius);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}

.email-subscribe-component .es-input:focus {
    border-color: var(--theme-color);
}

.email-subscribe-component .es-input::placeholder {
    color: var(--text-muted);
}

.email-subscribe-component .es-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 22px;
    background: var(--theme-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .2s;
}

.email-subscribe-component .es-btn:hover {
    opacity: .9;
}

.email-subscribe-component .es-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.email-subscribe-component .es-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    line-height: 1.5;
}

.email-subscribe-component .es-message.es-success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid var(--color-success-border);
}

.email-subscribe-component .es-message.es-error {
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border: 1px solid var(--color-danger-border);
}
