.wpfp-search-form,
.wpfp-booking-form,
.wpfp-booking-summary,
.wpfp-flight-details,
.wpfp-booking-confirmed {
	background: #fff;
	border: 1px solid #e1e1e1;
	padding: 20px;
	margin-bottom: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	position: relative;
}

.wpfp-row {
	display: flex;
	gap: 16px;
	margin-bottom: 15px;
}

.wpfp-row label {
	flex: 1;
	display: flex;
	flex-direction: column;
	font-weight: 600;
}

.wpfp-row input,
.wpfp-row select {
	margin-top: 6px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

/* ===========================
   INLINE SEARCH BAR
   =========================== */

.wpfp-inline-panel {
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 24px;
}

.wpfp-inline-form {
	width: 100%;
}

.wpfp-inline-bar {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 16px;
	padding-bottom: 4px;
}

/* Each tile wrapper is the flex item */
.wpfp-field-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 3px;
	flex: 1 1 0;
	min-width: 0;
}

/* Wider slots for origin / destination */
.wpfp-field-wrapper[data-field="origin"],
.wpfp-field-wrapper[data-field="destination"] {
	flex: 1.4 1 0;
}

/* Compact slots for dates / travelers */
.wpfp-field-wrapper[data-field="dates"],
.wpfp-field-wrapper[data-field="travelers"] {
	flex: 1 1 0;
}

/* Submit tile: fixed, right-aligned */
.wpfp-field-wrapper[data-field="submit"] {
	flex: 0 0 auto;
	margin-left: auto;
}

/* Tile appearance */
.wpfp-inline-field {
	display: flex;
	flex-direction: column;
	padding: 10px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
	min-height: 96px;
}

/* Origin / Dest / Dates / Travelers behave like tiles */
.wpfp-field-tile {
	overflow: visible;
}

/* Submit tile: transparent, no box */
.wpfp-inline-field.wpfp-inline-submit {
	border: none;
	box-shadow: none;
	background: transparent;
	padding: 0;
	min-height: 0;
}

/* Trip type tabs */
.wpfp-trip-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.wpfp-inline-trip-tabs {
    display: flex;
    gap: 24px;
}

.wpfp-cabin-select select {
	border: none;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 14px;
	color: #0f172a;
    background: #fff;
}

.wpfp-trip-tab {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	cursor: pointer;
}

.wpfp-trip-tab input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wpfp-trip-tab span {
	display: inline-flex;
	align-items: center;
	padding-bottom: 6px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.wpfp-trip-tab input:checked + span {
	color: #0f172a;
	border-color: #0f172a;
}

/* Inline labels */
.wpfp-inline-field label {
	font-size: 13px;
	font-weight: 600;
	color: #4b5563;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 3px;
}

/* Field body */
.wpfp-field-body {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: #111827;
	min-height: 32px;
	line-height: 1.4;
}

.wpfp-field-value {
	display: flex;
	align-items: center;
	flex: 1;
	color: #111827;
	font-weight: 500;
	font-size: 15px;
}

.wpfp-field-body .wpfp-airport {
	width: 100%;
	font-weight: 500;
	color: #111827;
	background: transparent;
}

/* Date tile */

.wpfp-date-wrapper {
	/* flex handled by data-field rule */
}

.wpfp-date-field {
	position: relative;
	padding: 12px 16px;
	border-radius: 20px;
	border: 1px solid #e5e7eb;
	background: #fff;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpfp-date-field:hover {
	border-color: #a7c7ff;
}

.wpfp-date-field.active {
	border-color: #3b82f6;
	box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.wpfp-date-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.wpfp-date-display {
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	margin-top: 2px;
	line-height: 1.4;
}

.wpfp-date-display.is-placeholder {
	color: #9ca3af;
}

.wpfp-date-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
}

.wpfp-date-input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	width: 100%;
	height: 100%;
}

/* Icons */

.wpfp-field-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f1f5f9;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	border: 1px solid #e7edf5;
}

.wpfp-field-icon svg {
	width: 18px;
	height: 18px;
}

/* Inputs inside tiles */

.wpfp-inline-field input,
.wpfp-inline-field select,
.wpfp-field-body button {
	border: 0;
	background: transparent;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	color: #111827;
	width: 100%;
	line-height: 1.4;
	text-align: left;
}

.wpfp-inline-field input::placeholder {
	color: #94a3b8;
	font-weight: 500;
}

.wpfp-inline-field input:focus,
.wpfp-inline-field select:focus {
	outline: none;
}

.wpfp-inline-field:focus-within {
	border-color: #7bb934;
	box-shadow: 0 0 0 3px rgba(123, 185, 52, 0.15);
}

.wpfp-inline-field select {
	padding-right: 12px;
}

/* Travelers tile */

.wpfp-travelers-field {
	position: relative;
}

.wpfp-travelers-toggle {
	border: 0;
	background: transparent;
	padding: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-size: 15px;
	font-weight: 500;
	color: #111827;
	cursor: pointer;
	text-align: left;
}

.wpfp-travelers-toggle .wpfp-travelers-summary {
	flex: 1;
	font-weight: 500;
	color: #111827;
}

.wpfp-travelers-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e0e5eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 20px;
	z-index: 999;
	display: none;
	margin-top: 10px;
}

.wpfp-travelers-dropdown.wpfp-open {
	display: block;
}

.wpfp-traveler-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #edf2f7;
}

.wpfp-traveler-row:last-child {
	border-bottom: 0;
}

.wpfp-stepper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wpfp-stepper button {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	background: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.wpfp-stepper button:hover {
	background: #f1f5f9;
}

.wpfp-stepper-value {
	font-size: 16px;
	font-weight: 600;
}

.wpfp-traveler-input {
	position: absolute;
	left: -9999px;
	top: -9999px;
	height: 0;
	width: 0;
}

/* Autocomplete anchored to tile wrapper */

.wpfp-autocomplete-list {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 360px;
	width: min(480px, max(360px, 100%));
	z-index: 9999;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e0e5eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: none;
	max-height: 240px;
	overflow-y: auto;
}

.wpfp-autocomplete-list.wpfp-airport-suggestions {
	padding: 0;
}

.wpfp-airport-option {
	width: 100%;
	display: block;
	padding: 8px 12px;
	text-align: left;
	border: 0;
	background: #fff;
	border-bottom: 1px solid #eef2f7;
	font-size: 14px;
	cursor: pointer;
}

.wpfp-airport-option:last-child {
	border-bottom: 0;
}

.wpfp-airport-option:hover,
.wpfp-airport-option:focus {
	background: #eff6ff;
	outline: none;
}

/* Submit button */

.wpfp-inline-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 56px;
	padding: 0 32px;
	border-radius: 999px;
	background: #2563eb;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.wpfp-inline-cta:hover,
.wpfp-inline-cta:focus {
	background: #1d4ed8;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
	outline: none;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 960px) {
	.wpfp-inline-bar {
		flex-wrap: wrap;
	}

	.wpfp-field-wrapper {
		flex: 1 1 100%;
	}

	.wpfp-inline-field {
		min-height: auto;
	}

}

@media (max-width: 720px) {
	.wpfp-inline-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.wpfp-field-wrapper {
		width: 100%;
	}

	.wpfp-field-wrapper[data-field="origin"],
	.wpfp-field-wrapper[data-field="destination"],
	.wpfp-field-wrapper[data-field="dates"],
	.wpfp-field-wrapper[data-field="travelers"],
	.wpfp-field-wrapper[data-field="submit"] {
		flex: 1 1 100%;
		margin-left: 0;
	}

	.wpfp-inline-field {
		padding: 14px;
		border-radius: 18px;
		box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
	}

	.wpfp-field-body {
		flex-wrap: wrap;
		gap: 12px;
	}

	.wpfp-field-icon {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
	}

	.wpfp-field-value {
		flex: 1 1 100%;
	}

	.wpfp-trip-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.wpfp-inline-field.wpfp-inline-submit {
		padding: 0;
		box-shadow: none;
	}

	.wpfp-inline-cta {
		width: 100%;
		justify-content: center;
	}
}

/* ===========================
   Rest of original layout
   =========================== */

.wpfp-trip-type {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.wpfp-multi-city {
	margin: 20px 0;
	display: none;
}

.wpfp-multi-city[data-visible="1"] {
	display: block;
}

.wpfp-return-date[data-visible="0"] {
	display: none;
}

.wpfp-leg {
	border: 1px solid #ddd;
	padding: 15px;
	margin-bottom: 12px;
	border-radius: 4px;
	display: flex;
	gap: 12px;
	align-items: center;
}

.wpfp-leg label {
	display: block;
	margin-bottom: 10px;
}

.wpfp-leg input {
	width: 100%;
}

.wpfp-leg-meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wpfp-leg-meta .wpfp-airline-logo {
	width: 40px;
}

.wpfp-actions {
	text-align: right;
}

.wpfp-search-results-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 40px;
}

.wpfp-search-results-page .wpfp-results-layout {
	display: flex;
	gap: 20px;
}

.wpfp-filters-toggle-wrap {
	display: none;
}

.wpfp-filters-toggle {
	width: 100%;
	border: 1px solid #dbe5ff;
	background: #f8fbff;
	color: #0f172a;
	border-radius: 12px;
	padding: 12px 16px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.wpfp-filters-toggle:hover,
.wpfp-filters-toggle:focus {
	border-color: #94b0ff;
	background: #eef4ff;
	outline: none;
}

.wpfp-filters-toggle svg {
	flex: 0 0 auto;
}

.wpfp-filters-toggle-text {
	flex: 1;
	text-align: left;
}

.wpfp-filters-toggle-icon {
	display: inline-flex;
	transition: transform 0.2s ease;
}

.wpfp-filters-toggle.wpfp-expanded .wpfp-filters-toggle-icon {
	transform: rotate(180deg);
}

.wpfp-filters-panel {
	width: 260px;
	background: #fff;
	border: 1px solid #e1e1e1;
	padding: 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	height: fit-content;
}

.wpfp-filters-panel label {
	display: block;
	margin-bottom: 12px;
	font-weight: 600;
}

@media (max-width: 960px) {
	.wpfp-filters-toggle-wrap {
		display: block;
		width: 100%;
		margin-bottom: 12px;
	}

	.wpfp-filters-panel {
		width: 100%;
		display: none;
	}

	.wpfp-filters-panel[data-expanded="true"] {
		display: block;
	}
}

.wpfp-filters-panel input,
.wpfp-filters-panel select {
	width: 100%;
	margin-top: 6px;
	padding: 8px;
	border-radius: 3px;
	border: 1px solid #ccc;
	background: #fff;
	color: #0f172a;
}

.wpfp-filter-airlines {
	width: 100%;
	min-height: 120px;
	padding: 6px;
	border-radius: 6px;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #0f172a;
}

.wpfp-filters-panel .wpfp-clear-filters {
	width: 100%;
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	border-radius: 999px;
	background: #2563eb;
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.wpfp-filters-panel .wpfp-clear-filters:hover,
.wpfp-filters-panel .wpfp-clear-filters:focus {
	background: #1d4ed8;
	box-shadow: 0 6px 15px rgba(37, 99, 235, 0.35);
	outline: none;
}

.wpfp-results-panel {
	flex: 1;
}

.flight-card {
	border: 1px solid #f0f0f0;
	border-radius: 14px;
	background: #fff;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flight-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.flight-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid #eceff4;
	margin-bottom: 16px;
}

.flight-header-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.flight-header-left h4 {
	margin: 0;
	font-size: 18px;
	color: #0f172a;
}

.flight-airline-logo {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.flight-cabin {
	display: block;
	font-size: 13px;
	color: #64748b;
	margin-top: 3px;
}

.flight-header-price .flight-price-amount {
	font-size: 26px;
	font-weight: 700;
	color: #0f172a;
}

.flight-card-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	background: #f8fafc;
	border: 1px solid #edf2f7;
	border-radius: 10px;
	padding: 10px 14px;
	margin-bottom: 18px;
	font-size: 14px;
	color: #475569;
}

.flight-card-summary .summary-divider {
	color: #cbd5f5;
}

.flight-card-body {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.flight-details-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.flight-price-col {
	width: 220px;
	flex-shrink: 0;
	border-left: 1px solid #edf2f7;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
	justify-content: flex-start;
}

.flight-price-amount {
	font-size: 30px;
	font-weight: 700;
	color: #0f172a;
}

.flight-price-note {
	font-size: 14px;
	color: #475569;
}

.flight-baggage-indicator {
	font-size: 13px;
	color: #0f172a;
	font-weight: 500;
}

.flight-segment {
	border: 1px solid #edf2f7;
	border-radius: 12px;
	padding: 16px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.02);
}

.flight-section-heading {
	padding-bottom: 8px;
	margin-bottom: 12px;
	border-bottom: 1px solid #e2e8f0;
}

.section-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #94a3b8;
}

.flight-leg-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.flight-leg-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 12px;
	border-bottom: 1px dotted #e2e8f0;
}

.flight-leg-row-terminal {
	border-bottom: none;
	padding-bottom: 0;
}

.flight-leg-main {
	flex: 1;
}

.leg-airports strong {
	font-size: 16px;
	color: #0f172a;
}

.leg-times {
	margin-top: 4px;
	font-size: 14px;
	color: #475569;
	display: flex;
	align-items: center;
	gap: 8px;
}

.flight-leg-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	min-width: 120px;
	font-size: 14px;
	color: #0f172a;
}

.flight-leg-meta {
	font-size: 13px;
	color: #475569;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 6px;
}

.flight-layover-row {
	font-size: 13px;
	color: #64748b;
	font-style: italic;
	padding-left: 14px;
	border-left: 2px dotted #cbd5f5;
	margin-top: 6px;
}

.flight-details-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	background: #f97316;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.flight-details-btn:hover {
	background: #ea580c;
	transform: translateY(-1px);
	box-shadow: 0 8px 16px rgba(249, 115, 22, 0.35);
}

@media (max-width: 900px) {
	.flight-card-body {
		flex-direction: column;
		gap: 20px;
	}

	.flight-price-col {
		width: 100%;
		border-left: 0;
		border-top: 1px solid #edf2f7;
		padding-left: 0;
		padding-top: 16px;
		align-items: stretch;
	}

	.flight-details-btn {
		width: 100%;
	}
}

.wpfp-alert {
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 15px;
	background: #eef7ff;
	border: 1px solid #8ec5ff;
}

.wpfp-alert-error {
	background: #ffecec;
	border-color: #ff8a8a;
}

.wpfp-card {
	background: #fff;
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
}

.wpfp-booking-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 20px 60px;
	background: #f3f5f9;
}

.wpfp-booking-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.wpfp-hero-brand {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 16px;
}

.wpfp-hero-logo {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.wpfp-hero-title {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	color: #0f172a;
}

.wpfp-hero-airline {
	margin: 4px 0 0;
	color: #475569;
	font-weight: 500;
}

.wpfp-hero-meta {
	display: flex;
	gap: 28px;
	font-size: 14px;
	color: #475569;
}

.wpfp-meta-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
	margin-bottom: 4px;
}

.wpfp-hero-price {
	text-align: right;
}

.wpfp-hero-price span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
}

.wpfp-hero-price strong {
	font-size: 32px;
	color: #0f172a;
}

.wpfp-booking-layout {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.wpfp-booking-form {
	flex: 2;
}

.wpfp-booking-summary {
	flex: 1;
}

.wpfp-form-section {
	margin-bottom: 32px;
}

.wpfp-section-heading h2,
.wpfp-section-heading h3 {
	margin: 0 0 6px;
	font-size: 22px;
	color: #0f172a;
}

.wpfp-section-heading p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
}

.wpfp-traveler-card {
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 20px;
	margin-bottom: 20px;
	background: #fdfefe;
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
}

.wpfp-traveler-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	gap: 12px;
	flex-wrap: wrap;
}

.wpfp-traveler-badge {
	background: #eef2ff;
	color: #4338ca;
	padding: 6px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
}

.wpfp-traveler-note {
	font-size: 13px;
	color: #94a3b8;
}

.wpfp-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin-bottom: 18px;
}

.wpfp-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	color: #475569;
	text-transform: none;
}

.wpfp-field > span {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.wpfp-field input,
.wpfp-field select {
	border-radius: 14px;
	border: 1px solid #cbd5f5;
	padding: 12px 14px;
	font-size: 15px;
	color: #0f172a;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpfp-field small {
	color: #94a3b8;
	font-size: 12px;
	line-height: 1.4;
}

.wpfp-field input:focus,
.wpfp-field select:focus {
	border-color: #2563eb;
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.wpfp-field-static input {
	display: none;
}

.wpfp-phone-field {
	grid-column: 1 / -1;
}

.wpfp-phone-wrapper {
	display: flex;
	gap: 12px;
	align-items: center;
}

.wpfp-phone-code {
	max-width: 110px;
	text-align: center;
	font-weight: 600;
}

.wpfp-phone-number {
	flex: 1;
}

.wpfp-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: #e2e8f0;
	color: #0f172a;
	font-weight: 600;
	font-size: 13px;
}

.wpfp-form-actions {
	text-align: right;
	margin-top: 12px;
}

.wpfp-rules-inline {
	margin-bottom: 18px;
	text-align: left;
}

.wpfp-primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	background: #16a34a;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wpfp-primary-btn:hover {
	background: #15803d;
	transform: translateY(-1px);
	box-shadow: 0 12px 20px rgba(21, 128, 61, 0.25);
}

.wpfp-terms-inline {
	margin-top: 12px;
	text-align: left;
	font-size: 14px;
	color: #475569;
}

.wpfp-terms-inline label a {
	color: #2563eb;
	text-decoration: underline;
}

.wpfp-summary-price span {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: #94a3b8;
}

.wpfp-summary-price strong {
	display: block;
	font-size: 30px;
	color: #0f172a;
	margin: 4px 0 2px;
}

.wpfp-summary-price small {
	color: #475569;
	font-size: 13px;
}

.wpfp-summary-section {
	border-top: 1px solid #edf2f7;
	margin-top: 20px;
	padding-top: 20px;
}

.wpfp-summary-section h4 {
	margin: 0 0 12px;
	font-size: 16px;
	color: #0f172a;
}

.wpfp-summary-segment {
	border: 1px solid #edf2f7;
	border-radius: 16px;
	padding: 14px;
	margin-bottom: 14px;
	background: #f8fafc;
}

.wpfp-summary-segment-header {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #64748b;
	margin-bottom: 10px;
}

.wpfp-summary-legs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wpfp-summary-leg {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 14px;
	border-bottom: 1px dashed #e2e8f0;
}

.wpfp-summary-leg:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.wpfp-summary-leg strong {
	display: block;
	font-size: 15px;
	color: #0f172a;
}

.wpfp-summary-leg span {
	display: block;
	font-size: 13px;
	color: #475569;
}

.wpfp-summary-leg-right {
	text-align: right;
}

.wpfp-summary-fares {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wpfp-summary-fares li {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #475569;
}

.wpfp-summary-fares strong {
	color: #0f172a;
}

.wpfp-rules-list {
	list-style: disc;
	margin: 0;
	padding-left: 20px;
	color: #475569;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

@media (max-width: 900px) {
	.wpfp-booking-hero {
		flex-direction: column;
		align-items: flex-start;
	}

	.wpfp-hero-meta {
		flex-wrap: wrap;
	}

	.wpfp-hero-price {
		text-align: left;
	}

	.wpfp-booking-layout {
		flex-direction: column;
	}

	.wpfp-form-grid {
		grid-template-columns: 1fr;
	}

	.wpfp-form-actions {
		text-align: left;
	}
}

.wpfp-confirmed-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 20px 60px;
	background: #f3f5f9;
}

.wpfp-confirmed-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.wpfp-confirmed-brand {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1;
}

.wpfp-confirmed-logo {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.wpfp-confirmed-title {
	font-size: 26px;
	font-weight: 700;
	margin: 0;
	color: #0f172a;
}

.wpfp-confirmed-route {
	margin: 6px 0 0;
	color: #0f172a;
	font-weight: 600;
}

.wpfp-confirmed-airline {
	margin: 4px 0 0;
	color: #64748b;
}

.wpfp-confirmed-meta {
	display: flex;
	gap: 18px;
	font-size: 14px;
	color: #475569;
	flex-wrap: wrap;
}

.wpfp-confirmed-meta span {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin-bottom: 4px;
}

.wpfp-confirmed-price {
	text-align: right;
}

.wpfp-confirmed-price span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
}

.wpfp-confirmed-price strong {
	font-size: 30px;
	color: #0f172a;
}

.wpfp-confirmed-layout {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.wpfp-confirmed-main {
	flex: 2;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.wpfp-confirmed-summary {
	flex: 1;
}

.wpfp-confirmed-section-heading h3 {
	margin: 0 0 6px;
	font-size: 20px;
	color: #0f172a;
}

.wpfp-confirmed-section-heading p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
}

.wpfp-confirmed-travelers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.wpfp-confirmed-traveler {
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 16px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.03);
}

.wpfp-traveler-name {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	gap: 12px;
}

.wpfp-traveler-name strong {
	font-size: 16px;
	color: #0f172a;
}

.wpfp-confirmed-traveler ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 14px;
	color: #475569;
}

.wpfp-empty-state {
	color: #94a3b8;
	font-style: italic;
}

.wpfp-confirmed-summary {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 900px) {
	.wpfp-confirmed-hero {
		flex-direction: column;
		align-items: flex-start;
	}

	.wpfp-confirmed-layout {
		flex-direction: column;
	}
}

.wpfp-flight-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 32px 20px 60px;
	background: #f3f5f9;
}

.wpfp-flight-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
	padding: 24px;
	margin-bottom: 20px;
}

.wpfp-flight-header-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1px solid #e5e7eb;
}

.wpfp-header-main {
	display: flex;
	align-items: center;
	gap: 18px;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 16px;
}

.wpfp-header-main h2 {
	margin: 0;
	font-size: 26px;
}

.wpfp-header-main p {
	margin: 6px 0 0;
	color: #475569;
}

.wpfp-header-sub {
	color: #475569;
	font-weight: 500;
}

.wpfp-section-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #0f172a;
}

.wpfp-icon {
	font-size: 16px;
}

.wpfp-segment-card {
	display: flex;
	gap: 18px;
	padding: 18px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	margin-bottom: 16px;
	align-items: flex-start;
	width: 100%;
}

.wpfp-segment-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 auto;
	width: 100%;
}

.wpfp-segment-route {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wpfp-segment-route strong {
	font-size: 17px;
	display: block;
}

.wpfp-leg-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 10px;
}

.wpfp-leg-route {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: baseline;
	font-weight: 600;
	color: #0f172a;
}

.wpfp-leg-route span {
	font-weight: 500;
	color: #475569;
}

.wpfp-leg-details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 8px 16px;
}

.wpfp-leg-details li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #475569;
}

.wpfp-layover {
	padding: 10px 0;
	margin-bottom: 12px;
	color: #475569;
	border-left: 3px solid #cbd5f5;
	padding-left: 12px;
	font-size: 14px;
}

.wpfp-fare-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.wpfp-fare-list li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed #e2e8f0;
	padding-bottom: 8px;
	font-weight: 500;
	color: #0f172a;
}

.wpfp-fare-total {
	font-size: 18px;
	font-weight: 700;
}

.wpfp-book-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f97316;
	color: #fff;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.wpfp-book-cta:hover {
	background: #ea580c;
	transform: translateY(-1px);
}

.wpfp-book-cta:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}

.wpfp-flight-page .wpfp-actions {
	text-align: right;
}

@media (max-width: 768px) {
	.wpfp-flight-page {
		padding: 20px 16px 50px;
	}

	.wpfp-segment-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.wpfp-segment-details {
		grid-template-columns: 1fr;
	}

	.wpfp-book-cta {
		width: 100%;
	}

	.wpfp-flight-header-card {
		align-items: flex-start;
	}
}

.wpfp-traveler {
	border: 1px solid #ddd;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 12px;
	background: #f9f9f9;
}

.wpfp-total {
	font-size: 20px;
}

@media (max-width: 960px) {
	.wpfp-row {
		flex-direction: column;
	}

	.wpfp-search-results-page .wpfp-results-layout {
		flex-direction: column;
	}

	.wpfp-filters-panel {
		width: 100%;
	}

	.wpfp-booking-layout {
		flex-direction: column;
	}
}
