/* Newsletter notification styles */
.newsletter-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.newsletter-notification.show {
    transform: translateX(0);
}

.newsletter-notification--success {
    border-left: 4px solid #10b981;
}

.newsletter-notification--error {
    border-left: 4px solid #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.newsletter-notification--success .notification-icon {
    background: #10b981;
    color: white;
}

.newsletter-notification--error .notification-icon {
    background: #ef4444;
    color: white;
}

.notification-message {
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
}

/* Button loading state */
.tp-footer__input button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
