/**
 * WooCommerce Checkout — Intersections Tickets
 */

/* ── Sezione principale ────────────────────────────────────────────── */

#intersections_attendees_data {
	margin-top: 2rem;
	margin-bottom: 2rem;
	clear: both;
}

#intersections_attendees_data > h3 {
	margin: 0 0 0.4rem;
	font-size: 1.5rem;
	color: #1d1e4c;
	font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

#intersections_attendees_data > p {
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
	color: #5a5568;
}

/* ── Accordion ─────────────────────────────────────────────────────── */

.attendee-accordion {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-bottom: 1rem;
	background: #fff;
	overflow: hidden;
}

.attendee-accordion__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	cursor: pointer;
	user-select: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s, background-color 0.15s;
}

.attendee-accordion__header:hover {
	background-color: #fafafa;
}

.attendee-accordion.is-open .attendee-accordion__header {
	border-bottom-color: #e0e0e0;
}

.attendee-accordion__title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.attendee-accordion__name {
	font-weight: 600;
	font-size: 1rem;
	color: #1d1e4c;
}

.attendee-accordion__badge {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #047481;
	background: rgba(4, 116, 129, 0.1);
	border: 1px solid rgba(4, 116, 129, 0.22);
	padding: 3px 8px;
	border-radius: 4px;
}

/* Chevron icon */
.attendee-accordion__toggle {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	position: relative;
}

.attendee-accordion__toggle::before,
.attendee-accordion__toggle::after {
	content: '';
	position: absolute;
	width: 9px;
	height: 2px;
	background: #888;
	border-radius: 2px;
	top: 50%;
	transition: transform 0.2s;
}

.attendee-accordion__toggle::before {
	left: 3px;
	transform: translateY(-50%) rotate(45deg);
}

.attendee-accordion__toggle::after {
	right: 3px;
	transform: translateY(-50%) rotate(-45deg);
}

.attendee-accordion.is-open .attendee-accordion__toggle::before {
	transform: translateY(-50%) rotate(-45deg);
}

.attendee-accordion.is-open .attendee-accordion__toggle::after {
	transform: translateY(-50%) rotate(45deg);
}

/* ── Body accordion ────────────────────────────────────────────────── */

.attendee-accordion__body {
	display: none;
	padding: 1.25rem;
}

.attendee-accordion.is-open .attendee-accordion__body {
	display: block;
}

/* ── Etichette sezione (Dati Personali / Dati Aziendali) ───────────── */

.attendee-section-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #aaa;
	margin: 0 0 0.75rem;
}

.attendee-section-label--company {
	margin-top: 1.5rem;
}

/* ── Griglia campi ──────────────────────────────────────────────────── */

.attendee-fields-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	align-items: start;
}

@media (max-width: 900px) {
	.attendee-fields-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.attendee-fields-row {
		grid-template-columns: 1fr;
	}
}

/* Modificatori larghezza colonna */
.attendee-fields-row p.attendee-field--wide {
	grid-column: span 2;
}

.attendee-fields-row p.attendee-field--narrow {
	grid-column: span 1;
}

/* Campi larghezza doppia (funzione, testo "altro", settore) */
.attendee-fields-row p.attendee-field--funzione,
.attendee-fields-row p.attendee-field--type-other,
.attendee-fields-row p.attendee-field--settore {
	grid-column: span 2;
}

/* Nascondi righe condizionali (Studente / prima init JS) */
.attendee-fields-row p.form-row.is-hidden,
.attendee-company-block.is-hidden {
	display: none !important;
}

/* Reset stili WooCommerce sui campi form annidati */
.attendee-fields-row p.form-row {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: auto !important;
	clear: none !important;
}

.attendee-fields-row label {
	display: block;
	font-size: 0.82rem;
	font-weight: 500;
	color: #555;
	margin-bottom: 0.3rem;
}

.attendee-fields-row .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

.attendee-fields-row input[type="text"],
.attendee-fields-row input[type="email"],
.attendee-fields-row input[type="tel"],
.attendee-fields-row select {
	width: 100%;
	padding: 0.55rem 0.75rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 0.95rem;
	background: #fff;
	color: #333;
	transition: border-color 0.15s, box-shadow 0.15s;
	-webkit-appearance: none;
	appearance: none;
}

.attendee-fields-row select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2rem;
}

.attendee-fields-row input:focus,
.attendee-fields-row select:focus {
	border-color: #047481;
	box-shadow: 0 0 0 3px rgba(4, 116, 129, 0.15);
	outline: none;
}

/* ── Checkbox copia dati (personali / aziendali) ───────────────────── */

.attendee-same-personal {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: #555;
	margin: 0 0 1rem;
	cursor: pointer;
}

.attendee-same-personal input[type="checkbox"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #047481;
}

.attendee-personal-fields.is-copied {
	opacity: 0.55;
	pointer-events: none;
}

.attendee-same-company {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: #555;
	margin-bottom: 0.75rem;
	cursor: pointer;
}

.attendee-same-company input[type="checkbox"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #047481;
}

/* Blocca visivamente i campi copiati */
.attendee-company-fields.is-copied {
	opacity: 0.55;
	pointer-events: none;
}

/* ── Young Leader DOB ───────────────────────────────────────────────── */

#intersections_young_dob_section {
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding: 1.25rem;
	background: #fff8f0;
	border: 1px solid rgba(255, 102, 0, 0.25);
	border-radius: 8px;
	clear: both;
}

#intersections_young_dob_section h3 {
	margin: 0 0 0.4rem;
	font-size: 1.1rem;
	color: var(--intersections-accent, #FF6600);
}

#intersections_young_dob_section > p {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: #7a5a3a;
}

/* ── Bottone ordine (checkout non biglietti: stile arancione pieno) ─── */

body:not(.intersections-checkout-tickets).woocommerce-checkout .button.alt,
body:not(.intersections-checkout-tickets).woocommerce-checkout #place_order {
	background-color: var(--intersections-accent, #FF6600) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 1rem 2rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

body:not(.intersections-checkout-tickets).woocommerce-checkout .button.alt:hover,
body:not(.intersections-checkout-tickets).woocommerce-checkout #place_order:hover {
	background-color: var(--intersections-accent-hover, #F97316) !important;
	transform: translateY(-1px);
}

/* ── Riepilogo ordine ───────────────────────────────────────────────── */

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
	padding: 0.75rem;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	font-weight: 700;
	font-size: 1.1rem;
}

/* ── Form generico checkout ─────────────────────────────────────────── */

.woocommerce-checkout .form-row {
	margin-bottom: 1rem;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
	font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* ── Campi billing SDI / PEC ────────────────────────────────────────── */

#billing_sdi_field,
#billing_pec_field {
	width: 48%;
}

#billing_sdi_field {
	float: left;
	margin-right: 4%;
}

#billing_pec_field {
	float: right;
}

@media (max-width: 640px) {
	#billing_sdi_field,
	#billing_pec_field {
		width: 100%;
		float: none;
		margin-right: 0;
	}
}

/* ── Notice limite quantità (carrello Block + Classic) ────────────── */

.intersections-ticket-limit-notice {
	display: flex;
	align-items: center;
	padding: 1rem 1.25rem;
	margin-bottom: 1.25rem !important;
	background: #fef2f2;
	border: 1px solid #fca5a5;
	border-radius: 4px;
	color: #991b1b;
	font-size: 0.9rem;
	line-height: 1.4;
}

.intersections-ticket-limit-notice svg {
	flex-shrink: 0;
	margin-right: 8px;
	fill: currentColor;
}

.intersections-ticket-limit-notice a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
}

.intersections-ticket-limit-notice a:hover {
	text-decoration: none;
}

/* ── Checkout gratuito (totale 0) ───────────────────────────────────── */

.intersections-free-checkout-notice {
	margin-bottom: 1.5rem !important;
	padding: 1rem 1.25rem;
	background: #f0fdf4;
	border-color: #86efac;
	color: #166534;
	border-radius: 6px;
	font-size: 0.95rem;
}

/* ── Admin: dati partecipanti sull'ordine ───────────────────────────── */

.intersections-attendees-admin-data {
	margin-top: 10px;
	padding: 10px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-left: 3px solid #007cba;
	font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════════════════
 * Checkout con biglietti — mock UI (colonna unica, underline, badge viola, CTA gradient).
 * body.intersections-checkout-tickets
 * ═══════════════════════════════════════════════════════════════════════════ */

body.intersections-checkout-tickets.woocommerce-checkout {
	--int-ck-navy: #1d1e4c;
	--int-ck-teal: #047481;
	--int-ck-purple: #5c4f8f;
	--int-ck-bg: #ffffff;
	--int-ck-card: #ffffff;
	--int-ck-border: #dce4ea;
	--int-ck-muted: #5c6670;
	--int-ck-label: #8b91a0;
	--int-ck-underline: #c5c9d4;
	--int-ck-shadow: 0 1px 2px rgba(29, 30, 76, 0.05), 0 8px 24px rgba(29, 30, 76, 0.06);
	--int-ck-col-max: 720px;
	background-color: var(--int-ck-bg) !important;
	font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

body.intersections-checkout-tickets .woocommerce {
	max-width: var(--int-ck-col-max);
	margin-left: auto;
	margin-right: auto;
}

body.intersections-checkout-tickets .intersections-checkout-step-title {
	margin: 0 auto 2rem;
	max-width: var(--int-ck-col-max);
	padding: 2.25rem 1.25rem 0;
	box-sizing: border-box;
}

body.intersections-checkout-tickets .intersections-checkout-step-title__kicker {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--int-ck-muted);
	margin-bottom: 10px;
}

body.intersections-checkout-tickets .intersections-checkout-step-title__heading {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--int-ck-navy);
	font-family: 'Poppins', system-ui, sans-serif;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

body.intersections-checkout-tickets form.checkout.woocommerce-checkout {
	max-width: var(--int-ck-col-max);
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.25rem 3.5rem;
	box-sizing: border-box;
}

body.intersections-checkout-tickets form.checkout.woocommerce-checkout #customer_details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

body.intersections-checkout-tickets form.checkout.woocommerce-checkout #customer_details .col-2 {
	order: 1;
	width: 100%;
	padding: 1.75rem 1.75rem 2rem;
	box-sizing: border-box;
	background: var(--int-ck-card);
	border: 1px solid var(--int-ck-border);
	border-radius: 14px;
	box-shadow: var(--int-ck-shadow);
}

body.intersections-checkout-tickets form.checkout.woocommerce-checkout #customer_details .col-1 {
	order: 2;
	width: 100%;
	padding: 1.75rem 1.75rem 2rem;
	box-sizing: border-box;
	background: var(--int-ck-card);
	border: 1px solid var(--int-ck-border);
	border-radius: 14px;
	box-shadow: var(--int-ck-shadow);
}

body.intersections-checkout-tickets form.checkout.woocommerce-checkout #order_review_heading {
	margin: 1.5rem 0 0.75rem;
	padding: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--int-ck-navy);
	font-family: 'Poppins', system-ui, sans-serif;
	border: none;
	letter-spacing: -0.01em;
}

body.intersections-checkout-tickets form.checkout.woocommerce-checkout #order_review {
	width: 100%;
	padding: 0 0 0.5rem;
	box-sizing: border-box;
}

@media (max-width: 560px) {
	body.intersections-checkout-tickets .intersections-checkout-step-title {
		padding: 1.75rem 1rem 0;
	}

	body.intersections-checkout-tickets form.checkout.woocommerce-checkout {
		padding: 0 1rem 2.5rem;
	}

	body.intersections-checkout-tickets form.checkout.woocommerce-checkout #customer_details .col-2,
	body.intersections-checkout-tickets form.checkout.woocommerce-checkout #customer_details .col-1 {
		padding: 1.25rem 1.25rem 1.5rem;
		border-radius: 12px;
	}
}

body.intersections-checkout-tickets #customer_details .col-2 {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

body.intersections-checkout-tickets #customer_details .col-2 .woocommerce-additional-fields {
	order: 1;
	display: flex;
	flex-direction: column;
}

body.intersections-checkout-tickets #customer_details .col-2 .woocommerce-shipping-fields {
	order: 2;
}

body.intersections-checkout-tickets #customer_details .col-2 .woocommerce-additional-fields > h3 {
	order: 4;
}

body.intersections-checkout-tickets #customer_details .col-2 .woocommerce-additional-fields__field-wrapper {
	order: 5;
}

body.intersections-checkout-tickets #customer_details .col-2 #intersections_young_dob_section {
	order: 2;
	margin-top: 0;
}

body.intersections-checkout-tickets #customer_details .col-2 #intersections_attendees_data {
	order: 1;
	margin-top: 0;
}

body.intersections-checkout-tickets #intersections_attendees_data > h3 {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--int-ck-navy);
	font-family: 'Poppins', system-ui, sans-serif;
}

body.intersections-checkout-tickets #intersections_attendees_data > p {
	color: var(--int-ck-muted);
	font-size: 0.95rem;
}

body.intersections-checkout-tickets .attendee-accordion {
	border: 1px solid var(--int-ck-border);
	border-radius: 0;
	background: var(--int-ck-card);
	box-shadow: none;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

body.intersections-checkout-tickets .attendee-accordion__header:hover {
	background-color: #fafbfc;
}

body.intersections-checkout-tickets .attendee-accordion.is-open .attendee-accordion__header {
	border-bottom-color: var(--int-ck-underline);
	background: #fff;
}

body.intersections-checkout-tickets .attendee-accordion__name {
	color: var(--int-ck-navy);
	font-weight: 700;
}

body.intersections-checkout-tickets .attendee-accordion__badge {
	color: var(--int-ck-purple);
	background: transparent;
	border: none;
	padding: 0;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

body.intersections-checkout-tickets .attendee-accordion__body {
	background: #fff;
	padding: 1.5rem 1.25rem 1.75rem;
}

body.intersections-checkout-tickets .attendee-fields-row {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 2rem;
}

@media (max-width: 640px) {
	body.intersections-checkout-tickets .attendee-fields-row {
		grid-template-columns: 1fr;
	}
}

body.intersections-checkout-tickets .attendee-fields-row p.attendee-field--funzione,
body.intersections-checkout-tickets .attendee-fields-row p.attendee-field--type-other,
body.intersections-checkout-tickets .attendee-fields-row p.attendee-field--settore {
	grid-column: span 2;
}

@media (max-width: 640px) {
	body.intersections-checkout-tickets .attendee-fields-row p.attendee-field--funzione,
	body.intersections-checkout-tickets .attendee-fields-row p.attendee-field--type-other,
	body.intersections-checkout-tickets .attendee-fields-row p.attendee-field--settore {
		grid-column: span 1;
	}
}

body.intersections-checkout-tickets .attendee-fields-row p.form-row.is-hidden,
body.intersections-checkout-tickets .attendee-company-block.is-hidden {
	display: none !important;
}

body.intersections-checkout-tickets .attendee-fields-row label {
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--int-ck-label);
	margin-bottom: 0.2rem;
	text-transform: none;
	letter-spacing: 0.02em;
}

body.intersections-checkout-tickets .attendee-fields-row input[type="text"],
body.intersections-checkout-tickets .attendee-fields-row input[type="email"],
body.intersections-checkout-tickets .attendee-fields-row input[type="tel"],
body.intersections-checkout-tickets .attendee-fields-row select {
	width: 100%;
	background: transparent !important;
	border: none !important;
	border-bottom: 1px solid var(--int-ck-underline) !important;
	border-radius: 0 !important;
	padding: 0.45rem 0 0.7rem !important;
	font-size: 1rem;
	color: var(--int-ck-navy);
	box-shadow: none !important;
	text-align: left;
	transition: border-color 0.15s ease;
}

body.intersections-checkout-tickets .attendee-fields-row select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c4f8f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 0 top 55% !important;
	padding-right: 1.25rem !important;
	-webkit-appearance: none;
	appearance: none;
}

body.intersections-checkout-tickets .attendee-fields-row input:focus,
body.intersections-checkout-tickets .attendee-fields-row select:focus {
	border-bottom-color: var(--int-ck-teal) !important;
	border-bottom-width: 2px !important;
	padding-bottom: calc(0.7rem - 1px) !important;
	box-shadow: none !important;
	outline: none !important;
}

body.intersections-checkout-tickets .attendee-section-label {
	color: var(--int-ck-label);
	letter-spacing: 0.1em;
	font-size: 0.7rem;
}

body.intersections-checkout-tickets .attendee-same-personal,
body.intersections-checkout-tickets .attendee-same-company {
	color: var(--int-ck-navy);
	font-size: 0.875rem;
}

body.intersections-checkout-tickets .attendee-same-personal {
	margin-bottom: 1rem;
}

body.intersections-checkout-tickets .woocommerce-billing-fields .form-row label,
body.intersections-checkout-tickets .woocommerce-additional-fields .form-row label,
body.intersections-checkout-tickets .woocommerce-shipping-fields .form-row label {
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--int-ck-label);
	margin-bottom: 0.2rem;
}

body.intersections-checkout-tickets .woocommerce-billing-fields .input-text,
body.intersections-checkout-tickets .woocommerce-billing-fields input.input-text,
body.intersections-checkout-tickets .woocommerce-billing-fields input[type="tel"],
body.intersections-checkout-tickets .woocommerce-billing-fields input[type="email"],
body.intersections-checkout-tickets .woocommerce-billing-fields input[type="password"],
body.intersections-checkout-tickets .woocommerce-billing-fields select,
body.intersections-checkout-tickets .woocommerce-billing-fields textarea,
body.intersections-checkout-tickets .woocommerce-additional-fields .input-text,
body.intersections-checkout-tickets .woocommerce-additional-fields input.input-text,
body.intersections-checkout-tickets .woocommerce-additional-fields input[type="tel"],
body.intersections-checkout-tickets .woocommerce-additional-fields input[type="email"],
body.intersections-checkout-tickets .woocommerce-additional-fields select,
body.intersections-checkout-tickets .woocommerce-additional-fields textarea,
body.intersections-checkout-tickets .woocommerce-shipping-fields .input-text,
body.intersections-checkout-tickets .woocommerce-shipping-fields input.input-text,
body.intersections-checkout-tickets .woocommerce-shipping-fields input[type="tel"],
body.intersections-checkout-tickets .woocommerce-shipping-fields select {
	background: transparent !important;
	border: none !important;
	border-bottom: 1px solid var(--int-ck-underline) !important;
	border-radius: 0 !important;
	padding: 0.45rem 0 0.7rem !important;
	color: var(--int-ck-navy);
	box-shadow: none !important;
}

body.intersections-checkout-tickets .woocommerce-billing-fields select,
body.intersections-checkout-tickets .woocommerce-additional-fields select,
body.intersections-checkout-tickets .woocommerce-shipping-fields select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c4f8f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 0 top 55% !important;
	padding-right: 1.25rem !important;
	-webkit-appearance: none;
	appearance: none;
}

body.intersections-checkout-tickets .woocommerce-billing-fields .input-text:focus,
body.intersections-checkout-tickets .woocommerce-billing-fields select:focus,
body.intersections-checkout-tickets .woocommerce-billing-fields textarea:focus,
body.intersections-checkout-tickets .woocommerce-additional-fields .input-text:focus,
body.intersections-checkout-tickets .woocommerce-additional-fields select:focus,
body.intersections-checkout-tickets .woocommerce-additional-fields textarea:focus,
body.intersections-checkout-tickets .woocommerce-billing-fields input[type="tel"]:focus,
body.intersections-checkout-tickets .woocommerce-billing-fields input[type="email"]:focus,
body.intersections-checkout-tickets .woocommerce-additional-fields input[type="tel"]:focus,
body.intersections-checkout-tickets .woocommerce-additional-fields input[type="email"]:focus,
body.intersections-checkout-tickets .woocommerce-shipping-fields .input-text:focus,
body.intersections-checkout-tickets .woocommerce-shipping-fields select:focus {
	outline: none !important;
	border-bottom-color: var(--int-ck-teal) !important;
	border-bottom-width: 2px !important;
	box-shadow: none !important;
}

body.intersections-checkout-tickets #intersections_young_dob_section input[type="date"] {
	background: transparent !important;
	border: none !important;
	border-bottom: 1px solid var(--int-ck-underline) !important;
	border-radius: 0 !important;
	padding: 0.45rem 0 0.7rem !important;
	color: var(--int-ck-navy);
	max-width: 100%;
}

body.intersections-checkout-tickets #intersections_young_dob_section .form-row label {
	color: var(--int-ck-label);
	font-size: 0.72rem;
}

body.intersections-checkout-tickets .woocommerce-billing-fields h3,
body.intersections-checkout-tickets .woocommerce-shipping-fields h3,
body.intersections-checkout-tickets .woocommerce-additional-fields h3 {
	color: var(--int-ck-navy);
	font-size: 1.05rem;
	font-weight: 700;
	font-family: 'Poppins', system-ui, sans-serif;
	text-transform: none;
	letter-spacing: -0.01em;
}

body.intersections-checkout-tickets #intersections_young_dob_section {
	background: linear-gradient(180deg, #f0f9fa 0%, #fff 100%);
	border: 1px solid rgba(4, 116, 129, 0.2);
	border-radius: 10px;
}

body.intersections-checkout-tickets #intersections_young_dob_section h3 {
	color: var(--int-ck-teal);
}

body.intersections-checkout-tickets #intersections_young_dob_section > p {
	color: var(--int-ck-muted);
}

body.intersections-checkout-tickets .woocommerce-checkout-review-order-table {
	background: var(--int-ck-card);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--int-ck-border);
	box-shadow: var(--int-ck-shadow);
}

body.intersections-checkout-tickets .woocommerce-checkout-review-order-table th,
body.intersections-checkout-tickets .woocommerce-checkout-review-order-table td {
	border-color: #edf2f6;
	padding: 0.85rem 1rem;
}

body.intersections-checkout-tickets .woocommerce-checkout-review-order-table .order-total th,
body.intersections-checkout-tickets .woocommerce-checkout-review-order-table .order-total td {
	color: var(--int-ck-navy);
}

body.intersections-checkout-tickets #payment {
	background: transparent;
	border: none;
	padding-top: 0.75rem;
}

body.intersections-checkout-tickets #payment ul.payment_methods {
	border-bottom-color: var(--int-ck-border);
}

body.intersections-checkout-tickets #payment div.payment_box {
	background: #f8fafc;
	border-radius: 6px;
}

body.intersections-checkout-tickets #payment #place_order {
	float: none;
}

body.intersections-checkout-tickets #payment .form-row.place-order {
	float: none;
	display: block;
	width: 100%;
	padding-top: 0.75rem;
	margin-bottom: 0;
}

body.intersections-checkout-tickets.woocommerce-checkout #place_order,
body.intersections-checkout-tickets.woocommerce-checkout form.checkout .button.alt#place_order {
	background: linear-gradient(90deg, #221e4d 0%, #4a3d82 50%, #5c4f8f 100%) !important;
	color: #ffffff !important;
	border: 1px solid #221e4d !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 1rem 1.5rem !important;
	font-weight: 600 !important;
	text-transform: none !important;
	letter-spacing: 0.02em !important;
	width: 100% !important;
	min-width: 0;
	max-width: 100%;
	min-height: 52px;
}

body.intersections-checkout-tickets.woocommerce-checkout #place_order:hover:not(:disabled),
body.intersections-checkout-tickets.woocommerce-checkout form.checkout .button.alt#place_order:hover:not(:disabled) {
	background: linear-gradient(90deg, #2d2762 0%, #554691 50%, #6b5c9a 100%) !important;
	color: #ffffff !important;
	border-color: #1a1538 !important;
	transform: none;
}

body.intersections-checkout-tickets .intersections-free-checkout-notice {
	border-radius: 10px;
	border: 1px solid #86efac;
}

body.intersections-checkout-tickets .woocommerce-info:not(.intersections-free-checkout-notice) {
	border-radius: 10px;
	border-color: var(--int-ck-border);
}
