/**
 * PEIBWA custom ticketing styles.
 */

.peibwa-tickets {
	margin: 24px 0;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
}

.peibwa-tickets__heading {
	margin: 0 0 16px;
}

/* Ticket rows */
.peibwa-tickets__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.peibwa-tickets__item.is-unavailable {
	opacity: 0.6;
}

.peibwa-tickets__item-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.peibwa-tickets__item-name {
	font-weight: 600;
}

.peibwa-tickets__item-desc {
	font-size: 13px;
	color: #666;
}

.peibwa-tickets__price-regular {
	color: #999;
	margin-right: 6px;
}

.peibwa-tickets__badge {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 600;
	color: #2e7d32;
	background: #e8f5e9;
	border-radius: 10px;
	vertical-align: middle;
}

.peibwa-tickets__badge--sale {
	color: #ad6800;
	background: #fff3e0;
}

.peibwa-tickets__teaser {
	font-size: 13px;
	color: #2e7d32;
	font-style: italic;
}

.peibwa-tickets__unavailable {
	font-size: 13px;
	font-weight: 600;
	color: #b71c1c;
	white-space: nowrap;
}

.peibwa-tickets__qty {
	width: 70px;
	padding: 6px 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: center;
}

/* Purchaser + coupon fields */
.peibwa-tickets__purchaser {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.peibwa-tickets__field {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.peibwa-tickets__field label {
	font-size: 13px;
	font-weight: 600;
}

.peibwa-tickets__field input {
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* Registration form fields */
.peibwa-tickets__reg {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.peibwa-tickets__reg-heading {
	margin: 8px 0 0;
	padding-bottom: 6px;
	border-bottom: 1px solid #e5e5e5;
	font-size: 15px;
}

.peibwa-tickets__reg-field textarea,
.peibwa-tickets__reg-field select {
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font: inherit;
	width: 100%;
	box-sizing: border-box;
}

.peibwa-tickets__reg-field textarea {
	min-height: 72px;
	resize: vertical;
}

.peibwa-tickets__reg-options {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.peibwa-tickets__reg-option {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	cursor: pointer;
}

.peibwa-tickets__reg-option input {
	margin: 0;
}

.peibwa-tickets__req {
	color: #b71c1c;
}

.peibwa-tickets__reg-help {
	font-size: 12px;
	color: #666;
}

.peibwa-tickets__coupon {
	margin-top: 12px;
}

.peibwa-tickets__coupon-row {
	display: flex;
	gap: 8px;
}

.peibwa-tickets__coupon-row input {
	flex: 1;
}

.peibwa-tickets__coupon-apply {
	padding: 8px 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #f5f5f5;
	cursor: pointer;
}

.peibwa-tickets__coupon-msg {
	font-size: 13px;
	min-height: 18px;
}

.peibwa-tickets__coupon-msg.is-success {
	color: #2e7d32;
}

.peibwa-tickets__coupon-msg.is-error {
	color: #b71c1c;
}

/* Summary + buttons */
.peibwa-tickets__summary {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 16px;
	font-size: 18px;
	font-weight: 700;
}

.peibwa-tickets__submit,
.peibwa-tickets__pay {
	display: block;
	width: 100%;
	margin-top: 16px;
	padding: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #1e5b8d;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.peibwa-tickets__submit:hover,
.peibwa-tickets__pay:hover {
	background: #174a74;
}

.peibwa-tickets__submit:disabled,
.peibwa-tickets__pay:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.peibwa-tickets__back {
	display: block;
	margin: 12px auto 0;
	padding: 6px 12px;
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	text-decoration: underline;
}

.peibwa-tickets__error {
	margin-top: 12px;
	color: #b71c1c;
	font-size: 14px;
	min-height: 18px;
}

/* Payment step */
#peibwa-tickets-payment-element {
	margin: 16px 0;
}

/* Success step */
.peibwa-tickets__success {
	text-align: center;
	padding: 24px 12px;
}

.peibwa-tickets__success h4 {
	color: #2e7d32;
	margin: 0 0 8px;
}

.peibwa-tickets__order-number {
	font-weight: 600;
	color: #666;
}
