.pce-redeem-wrap {
	max-width: 600px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pce-redeem-wrap h2 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #1a1a2e;
}

.pce-redeem-wrap h3 {
	font-size: 16px;
	margin: 20px 0 10px;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 6px;
	color: #374151;
}

.pce-presencial-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #fffbeb;
	border: 2px solid #f59e0b;
	border-left: 5px solid #f59e0b;
	border-radius: 6px;
	padding: 14px 16px;
	margin-bottom: 24px;
}

.pce-presencial-icon {
	font-size: 24px;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 1px;
}

.pce-presencial-notice strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #92400e;
	margin-bottom: 4px;
}

.pce-presencial-notice p {
	margin: 0;
	font-size: 14px;
	color: #78350f;
	line-height: 1.5;
}

.pce-error {
	background: #fee2e2;
	border: 1px solid #fca5a5;
	border-radius: 6px;
	padding: 12px 16px;
	color: #991b1b;
	margin-bottom: 20px;
	font-weight: 500;
}

.pce-field {
	margin-bottom: 16px;
}

.pce-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #374151;
	font-size: 14px;
}

.pce-field input[type="text"],
.pce-field input[type="tel"],
.pce-field input[type="email"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color .15s;
}

.pce-field input:focus {
	border-color: #2271b1;
	outline: none;
	box-shadow: 0 0 0 3px rgba(34,113,177,.15);
}

.pce-required { color: #dc2626; }

.pce-help {
	display: block;
	font-size: 12px;
	color: #6b7280;
	margin-top: 4px;
}

/* Locked coupon code (from QR) */
.pce-coupon-input-wrap { position: relative; }

.pce-coupon-locked input[type="text"] {
	background: #f0fdf4;
	border-color: #86efac;
	color: #166534;
	font-weight: 700;
	font-family: monospace;
	font-size: 16px;
	letter-spacing: 2px;
	cursor: default;
}

.pce-coupon-lock-badge {
	display: inline-block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #166534;
	background: #dcfce7;
	border: 1px solid #86efac;
	border-radius: 20px;
	padding: 2px 10px;
}

/* Accordion */
.pce-accordion {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	margin: 8px 0 20px;
	background: #f9fafb;
}

.pce-accordion-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	list-style: none;
	user-select: none;
}

.pce-accordion-toggle::-webkit-details-marker { display: none; }

.pce-accordion-toggle::before {
	content: '›';
	font-size: 18px;
	line-height: 1;
	transition: transform .2s ease;
	color: #6b7280;
}

.pce-accordion[open] > .pce-accordion-toggle::before {
	transform: rotate(90deg);
}

.pce-accordion-hint {
	font-size: 12px;
	font-weight: 400;
	color: #9ca3af;
	margin-left: 2px;
}

.pce-accordion-body {
	padding: 4px 16px 16px;
	border-top: 1px solid #e5e7eb;
}

.pce-accordion-body .pce-field:last-child {
	margin-bottom: 0;
}

/* Consent */
.pce-field-consent label {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.pce-actions {
	margin-top: 24px;
	display: flex;
	gap: 12px;
	align-items: center;
}

.pce-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	border: none;
	transition: background .15s;
}

.pce-btn-primary {
	background: #2271b1;
	color: #fff;
}

.pce-btn-primary:hover { background: #135e96; color: #fff; }

.pce-btn-secondary {
	background: #f3f4f6;
	color: #374151;
	border: 1px solid #d1d5db;
}

.pce-btn-secondary:hover { background: #e5e7eb; }

.pce-btn-large { font-size: 17px; padding: 14px 32px; }

.pce-coupon-details {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 24px;
}

.pce-detail-table {
	width: 100%;
	border-collapse: collapse;
}

.pce-detail-table th,
.pce-detail-table td {
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
	font-size: 14px;
}

.pce-detail-table th {
	width: 40%;
	color: #6b7280;
	font-weight: 600;
}

.pce-detail-table td { color: #111827; }

.pce-result { text-align: center; padding: 40px 0; }

.pce-success-icon {
	font-size: 64px;
	color: #059669;
	margin-bottom: 16px;
}

.pce-error-icon {
	font-size: 64px;
	color: #dc2626;
	margin-bottom: 16px;
}

.pce-result h2 { margin-bottom: 24px; }
.pce-result .pce-coupon-details { text-align: left; }
.pce-result .pce-actions { justify-content: center; }
