/**
 * Frontend styles for EDD Free Trials.
 */

.edd-free-trial-wrapper {
	margin: 20px 0;
}

.edd-free-trial-button {
	display: inline-block;
	padding: 12px 24px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.edd-free-trial-button:hover {
	background: #005a87;
}

.edd-free-trial-notice {
	margin: 8px 0 0;
	font-size: 14px;
	color: #666;
}

/* Modal */
.edd-free-trial-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.edd-free-trial-modal-content {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	max-width: 500px;
	width: 90%;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.edd-free-trial-modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #999;
	cursor: pointer;
	line-height: 1;
}

.edd-free-trial-modal-close:hover {
	color: #333;
}

.edd-free-trial-modal h3 {
	margin: 0 0 20px;
	font-size: 24px;
}

/* Form */
.edd-free-trial-form .edd-form-group {
	margin-bottom: 15px;
}

.edd-free-trial-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.edd-free-trial-form input[type="text"],
.edd-free-trial-form input[type="email"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.edd-free-trial-form button[type="submit"] {
	width: 100%;
	padding: 12px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 10px;
}

.edd-free-trial-form button[type="submit"]:hover {
	background: #005a87;
}

.edd-free-trial-form button[type="submit"]:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* Messages */
.edd-free-trial-messages {
	margin: 15px 0;
}

.edd-free-trial-messages .edd-alert {
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.edd-free-trial-messages .edd-alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.edd-free-trial-messages .edd-alert-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.edd-free-trial-messages code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: monospace;
}

/* Trial Status */
.edd-trial-status {
	background: #f9f9f9;
	border: 2px solid #0073aa;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
}

.edd-trial-status-header h4 {
	margin: 0 0 15px;
	color: #0073aa;
}

.edd-trial-status-body {
	line-height: 1.6;
}

.edd-trial-active {
	font-size: 18px;
	font-weight: 600;
	color: #155724;
	margin-bottom: 10px;
}

.edd-trial-expired {
	font-size: 18px;
	font-weight: 600;
	color: #721c24;
	margin-bottom: 10px;
}

.edd-trial-license {
	margin: 15px 0;
	padding: 10px;
	background: #fff;
	border-radius: 4px;
}

.edd-trial-license code {
	background: #f5f5f5;
	padding: 4px 8px;
	border-radius: 3px;
	font-family: monospace;
	font-size: 14px;
}

.edd-trial-status .button {
	margin-top: 15px;
}
