/**
 * Product Warranty Manager — Frontend Styles
 */

/* ── Wrapper ─────────────────────────────────────────────────────────────── */

.pwm-lookup-wrap {
	max-width: 480px;
	margin: 0 auto;
	font-family: inherit;
}

/* ── Form ────────────────────────────────────────────────────────────────── */

.pwm-lookup-form {
	margin-bottom: 24px;
}

.pwm-lookup-field {
	margin-bottom: 16px;
}

.pwm-lookup-label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
	color: #333;
}

/* Shared input style */
.pwm-code-input,
.pwm-email-input {
	display: block;
	width: 100%;
	padding: 11px 14px;
	font-size: 15px;
	border: 2px solid #d0d0d0;
	border-radius: 4px;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
	background: #fff;
	color: #333;
}

.pwm-code-input {
	font-family: monospace;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.pwm-code-input:focus,
.pwm-email-input:focus {
	outline: none;
	border-color: #000;
	box-shadow: 0 0 0 3px rgba( 0, 0, 0, 0.08 );
}

/* Submit button */
.pwm-lookup-btn {
	display: block;
	width: 100%;
	padding: 12px 22px;
	background: #000000;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	letter-spacing: 0.3px;
}

.pwm-lookup-btn:hover {
	background: #DFC75E;
}

.pwm-lookup-btn:disabled {
	background: #a7aaad;
	cursor: not-allowed;
}

/* ── Messages ────────────────────────────────────────────────────────────── */

.pwm-lookup-message {
	padding: 12px 16px;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 16px;
}

.pwm-msg-error {
	background: #fcf0f1;
	border-left: 4px solid #d63638;
	color: #d63638;
}

.pwm-msg-success {
	background: #edfaef;
	border-left: 4px solid #00a32a;
	color: #1a7c2a;
}

/* ── Result card ─────────────────────────────────────────────────────────── */

.pwm-result-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.06 );
}

.pwm-result-title {
	margin: 0 0 16px;
	font-size: 18px;
	color: #1d2327;
	border-bottom: 3px solid #000000;
	padding-bottom: 10px;
}

.pwm-result-table {
	width: 100%;
	border-collapse: collapse;
}

.pwm-result-table th,
.pwm-result-table td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.pwm-result-table th {
	width: 45%;
	color: #646970;
	font-weight: 600;
}

.pwm-result-table td {
	color: #1d2327;
	font-weight: 500;
}

.pwm-result-table tr:last-child th,
.pwm-result-table tr:last-child td {
	border-bottom: none;
}

/* Highlight warranty code row */
.pwm-result-table tr:nth-child(6) th,
.pwm-result-table tr:nth-child(6) td {
	background: #f9f6e8;
}

.pwm-result-table tr:nth-child(6) td {
	font-family: monospace;
	letter-spacing: 2px;
	font-size: 16px;
	color: #000000;
	font-weight: 700;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media ( max-width: 480px ) {
	.pwm-result-table th {
		width: 50%;
	}
}
