/**
 * Frontend Styles for WooCommerce New Product Notifications
 *
 * @package WC_New_Product_Notifications
 */

.wcnpn-subscription-form {
	max-width: 500px;
	margin: 20px 0;
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
}

.wcnpn-form-title {
	margin: 0 0 10px 0;
	font-size: 20px;
	font-weight: 600;
	color: #333;
}

.wcnpn-form-description {
	margin: 0 0 15px 0;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.wcnpn-form-field {
	margin-bottom: 15px;
}

.wcnpn-email-input {
	width: 100%;
	padding: 12px;
	font-size: 14px;
	line-height: 1.5;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.wcnpn-email-input:focus {
	outline: none;
	border-color: #96588a;
	box-shadow: 0 0 0 1px #96588a;
}

.wcnpn-submit-button {
	width: 100%;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-color: #96588a;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.wcnpn-submit-button:hover {
	background-color: #7f4876;
}

.wcnpn-submit-button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.wcnpn-message {
	margin-top: 15px;
	padding: 12px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.wcnpn-message.success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.wcnpn-message.error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

/* Loading spinner */
.wcnpn-submit-button.loading {
	position: relative;
	color: transparent;
}

.wcnpn-submit-button.loading::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -8px;
	border: 2px solid #fff;
	border-radius: 50%;
	border-top-color: transparent;
	animation: wcnpn-spinner 0.6s linear infinite;
}

@keyframes wcnpn-spinner {
	to {
		transform: rotate(360deg);
	}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.wcnpn-subscription-form {
		background: #1a1a1a;
		border-color: #333;
	}

	.wcnpn-form-title {
		color: #e0e0e0;
	}

	.wcnpn-form-description {
		color: #b0b0b0;
	}

	.wcnpn-email-input {
		background: #2a2a2a;
		color: #e0e0e0;
		border-color: #444;
	}

	.wcnpn-email-input::placeholder {
		color: #888;
	}

	.wcnpn-email-input:focus {
		border-color: #96588a;
		background: #333;
	}

	.wcnpn-message.success {
		background-color: #1a3a1a;
		border-color: #2d5a2d;
		color: #90ee90;
	}

	.wcnpn-message.error {
		background-color: #3a1a1a;
		border-color: #5a2d2d;
		color: #ff6b6b;
	}
}

/* Responsive */
@media (max-width: 600px) {
	.wcnpn-subscription-form {
		padding: 15px;
	}

	.wcnpn-form-title {
		font-size: 18px;
	}

	.wcnpn-submit-button {
		font-size: 14px;
	}
}
