/* Skyro Mini App — Premium UI v2 */

:root {
	/* برند اسکایرو — هماهنگ با لوگو */
	--brand-navy: #3e5b8e;
	--brand-navy-dark: #2d4570;
	--brand-teal: #26a69a;
	--brand-teal-light: #4db6ac;
	--sky-deep: #2d4570;
	--sky-mid: #3e5b8e;
	--sky-accent: #26a69a;
	--sky-accent-2: #3e8ebe;
	--sky-glow: rgba(38, 166, 154, 0.38);
	--sky-gold: #fbbf24;
	--surface: #ffffff;
	--surface-2: #f8fafc;
	--text: #0f172a;
	--text-muted: #64748b;
	--text-on-dark: #e2e8f0;
	--border: rgba(148, 163, 184, 0.25);
	--radius: 16px;
	--radius-lg: 22px;
	--radius-pill: 999px;
	--shadow-soft: 0 4px 24px rgba(6, 11, 20, 0.08);
	--shadow-card: 0 12px 40px rgba(6, 11, 20, 0.12);
	--shadow-glow: 0 8px 32px var(--sky-glow);
	--nav-h: 64px;
	--header-h: 52px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
	font-size: 15px;
}

html, body {
	background: var(--sky-deep);
	color: var(--text);
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(38, 166, 154, 0.12), transparent 55%),
		radial-gradient(ellipse 60% 40% at 100% 20%, rgba(62, 91, 142, 0.14), transparent 50%),
		linear-gradient(180deg, var(--brand-navy-dark) 0%, #4a6fa5 22%, #e8eef7 48%, #f0f4fa 100%);
	pointer-events: none;
	z-index: 0;
}

#app {
	position: relative;
	z-index: 1;
}

.app-shell {
	background: #f0f4fa;
	position: relative;
	z-index: 1;
}

body.body-home .app-shell {
	background: transparent;
}

/* Loader */
.loader-screen {
	min-height: 100vh;
	background: var(--sky-deep);
	color: var(--text-on-dark);
}

.loader-screen .loader-logo {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--sky-accent), var(--sky-accent-2));
	box-shadow: var(--shadow-glow);
	font-size: 0;
	position: relative;
}

.loader-screen .loader-logo::after {
	content: '✈';
	font-size: 26px;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-screen p {
	font-size: 14px;
	opacity: 0.85;
}

/* Header */
.app-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	height: var(--header-h);
}

.app-header.dark {
	background: linear-gradient(135deg, var(--sky-mid), var(--sky-deep));
	border-bottom: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.app-header h1 {
	font-weight: 700;
	letter-spacing: -0.02em;
}

.btn-icon {
	border-radius: 12px;
	background: var(--surface-2);
	transition: transform 0.15s var(--ease), background 0.15s;
}

.btn-icon:active {
	transform: scale(0.94);
}

.app-header.dark .btn-icon {
	background: rgba(255, 255, 255, 0.12);
}

/* Bottom nav — floating pill */
.bottom-nav {
	left: 12px;
	right: 12px;
	bottom: calc(8px + env(safe-area-inset-bottom, 0));
	width: auto;
	height: var(--nav-h);
	padding: 6px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.nav-item {
	border-radius: 14px;
	transition: all 0.2s var(--ease);
	font-size: 10px;
	font-weight: 600;
}

.nav-item.active {
	color: var(--sky-accent);
	background: rgba(14, 165, 233, 0.1);
}

.nav-item .nav-icon {
	font-size: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-item .nav-icon svg {
	width: 22px;
	height: 22px;
}

/* Buttons */
.btn {
	border-radius: 14px;
	font-weight: 700;
	min-height: 48px;
	transition: transform 0.15s var(--ease), box-shadow 0.2s;
}

.btn:active {
	transform: scale(0.98);
}

.btn-primary {
	background: linear-gradient(135deg, var(--sky-accent) 0%, var(--sky-accent-2) 100%);
	box-shadow: var(--shadow-glow);
	border: none;
}

.btn-cta {
	background: linear-gradient(135deg, #10b981, #059669);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
	background: var(--surface);
	border: 1px solid var(--border);
}

/* Cards */
.card {
	border: none;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	background: var(--surface);
}

.app-main.pad {
	padding: 16px;
}

/* Sheets */
.sheet-overlay {
	background: rgba(6, 11, 20, 0.55);
	backdrop-filter: blur(4px);
}

.sheet-panel {
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
}

.sheet-panel::before {
	content: '';
	display: block;
	width: 40px;
	height: 4px;
	background: #cbd5e1;
	border-radius: 4px;
	margin: 10px auto 4px;
}

.sheet-close {
	border-radius: 12px;
	width: 36px;
	height: 36px;
}

.sheet-search {
	border-radius: 14px;
	background: var(--surface-2);
	border: 1px solid var(--border);
	min-height: 44px;
}

.city-item {
	border-radius: 14px;
	transition: border-color 0.15s, background 0.15s;
}

.city-item.selected {
	border-color: var(--sky-accent);
	background: rgba(14, 165, 233, 0.08);
}

/* Flight cards */
.flight-card {
	border: none;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.flight-card::before {
	content: '';
	display: block;
	height: 3px;
	background: linear-gradient(90deg, var(--sky-accent), var(--sky-accent-2));
}

.fc-badge {
	background: rgba(14, 165, 233, 0.12);
	color: var(--sky-accent);
	font-weight: 600;
	border-radius: var(--radius-pill);
}

.search-banner {
	background: linear-gradient(135deg, var(--sky-mid), #1e293b);
	color: var(--text-on-dark);
	border-radius: var(--radius);
	padding: 14px 16px;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 12px;
	border: none;
}

/* Alerts & empty */
.alert {
	border-radius: 14px;
	border: none;
}

.empty-state {
	padding: 32px 16px;
}

.empty-state .icon {
	font-size: 48px;
	opacity: 0.9;
}

.status-pill {
	border-radius: var(--radius-pill);
	font-weight: 600;
}

.request-item {
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	border: none;
	margin-bottom: 10px;
	background: var(--surface);
}

.fc-airline {
	display: flex;
	align-items: center;
	gap: 6px;
}

.fc-airline .ico {
	width: 16px;
	height: 16px;
	color: var(--sky-accent);
}

/* Calendar v2 */
.cal-cell.selected {
	background: linear-gradient(135deg, var(--sky-accent), var(--sky-accent-2));
	box-shadow: 0 4px 12px var(--sky-glow);
}

.cal-cell.today:not(.selected) {
	border: 2px solid var(--sky-accent);
	color: var(--sky-accent);
	font-weight: 700;
}

.cal-nav-btn {
	border-radius: 12px;
}

/* Pax stepper */
.pax-btn {
	border-radius: 12px;
	background: var(--surface-2);
}

.pax-btn:not(:disabled):active {
	background: rgba(14, 165, 233, 0.15);
}

.pax-num {
	font-size: 18px;
	color: var(--sky-accent);
}

/* SVG icons */
.ico {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: block;
}

/* ——— HOME ——— */
.home-page {
	min-height: 100vh;
	padding-bottom: 8px;
}

.home-hero {
	position: relative;
	padding: calc(8px + env(safe-area-inset-top, 0)) 14px 48px;
	overflow: hidden;
}

.home-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, var(--brand-navy-dark) 0%, var(--brand-navy) 50%, #4a6fa5 100%);
}

.home-hero-bg::after {
	content: '';
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(38, 166, 154, 0.28), transparent 70%);
	top: -80px;
	left: -60px;
	animation: heroFloat 8s ease-in-out infinite;
}

.home-hero-bg::before {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(62, 91, 142, 0.25), transparent 70%);
	bottom: 20px;
	right: -40px;
	animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(12px, 8px); }
}

.home-hero-inner {
	position: relative;
	z-index: 1;
}

.home-brand-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 10px;
}

.home-brand-row .logo-frame-sm {
	padding: 6px 10px;
	border-radius: 10px;
	max-width: 118px;
}

.home-brand-row .logo-frame-sm .logo-frame-img {
	max-height: 30px;
}

.home-brand-row .logo-frame {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.home-support,
.account-support {
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

button.home-support,
button.account-support,
button.confirm-tel {
	font-family: inherit;
	cursor: pointer;
}

button.confirm-tel {
	border: none;
	background: none;
	padding: 0;
}

.confirm-tel {
	color: var(--brand-navy);
	text-decoration: none;
	font-weight: 800;
}

.confirm-tel:active {
	opacity: 0.8;
}

.home-support {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 5px 9px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}

.home-hero-title {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	letter-spacing: -0.03em;
}

.home-hero-sub {
	margin: 0;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.45;
	max-width: 260px;
}

.home-body {
	margin-top: -36px;
	padding: 0 12px 10px;
	position: relative;
	z-index: 2;
}

.search-panel {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 12px;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.ft-segment {
	display: flex;
	background: var(--surface-2);
	border-radius: var(--radius-pill);
	padding: 3px;
	margin-bottom: 10px;
	gap: 3px;
}

.ft-btn {
	flex: 1;
	border: none;
	background: transparent;
	padding: 10px 8px;
	border-radius: var(--radius-pill);
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: all 0.25s var(--ease);
}

.ft-btn.active {
	background: var(--surface);
	color: var(--sky-accent);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ft-btn .ico {
	opacity: 0.7;
}

.ft-btn.active .ico {
	opacity: 1;
	color: var(--sky-accent);
}

.route-card {
	position: relative;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2px 40px 2px 10px;
	margin-bottom: 10px;
}

.route-row {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	border: none;
	background: transparent;
	padding: 10px 4px;
	text-align: right;
	cursor: pointer;
	font-family: inherit;
}

.route-row + .route-row {
	border-top: 1px dashed var(--border);
}

.route-icon-wrap {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.route-icon-wrap.from {
	background: rgba(38, 166, 154, 0.14);
	color: var(--brand-teal);
}

.route-icon-wrap.to {
	background: rgba(62, 91, 142, 0.12);
	color: var(--brand-navy);
}

.route-info {
	flex: 1;
	min-width: 0;
}

.route-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 2px;
}

.route-value {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.route-value.placeholder {
	color: #94a3b8;
	font-weight: 500;
}

.btn-swap-fab {
	position: absolute;
	inset-inline-end: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: 2px solid var(--surface);
	border-radius: 50%;
	background: linear-gradient(135deg, var(--sky-accent), var(--sky-accent-2));
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	box-shadow: var(--shadow-glow);
	z-index: 2;
	transition: transform 0.2s var(--ease);
}

.btn-swap-fab:active {
	transform: translateY(-50%) scale(0.92) rotate(180deg);
}

.meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 10px;
}

.meta-tile {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface-2);
	cursor: pointer;
	text-align: right;
	font-family: inherit;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.meta-tile:active {
	border-color: var(--sky-accent);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.meta-tile-head {
	display: flex;
	align-items: center;
	gap: 8px;
}

.meta-tile-head .ico {
	color: var(--sky-accent);
}

.meta-tile-k {
	font-size: 11px;
	font-weight: 600;
	color: var(--text-muted);
}

.meta-tile-v {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.4;
}

.meta-tile-v.placeholder {
	color: #94a3b8;
	font-weight: 500;
}

.btn-search-hero {
	width: 100%;
	min-height: 46px;
	font-size: 15px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-search-hero .ico {
	width: 22px;
	height: 22px;
}

.home-trust {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.home-trust span {
	font-size: 11px;
	font-weight: 600;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 5px;
}

.home-trust .dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--brand-teal);
}

/* Promo banners — صفحه خانه (اطلاع‌رسانی، بدون کلیک پیش‌فرض) */
.home-promo-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 12px;
	padding-bottom: 6px;
}

.home-promo-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 14px 14px 12px;
	border-radius: var(--radius-lg);
	background: var(--surface);
	border: 1px solid rgba(62, 91, 142, 0.1);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	overflow: hidden;
}

.home-promo-card::before {
	content: '';
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 0;
	width: 3px;
	border-radius: 999px;
	background: var(--brand-teal);
}

.home-promo-card.promo-purple::before { background: #7c3aed; }
.home-promo-card.promo-blue::before { background: #2563eb; }
.home-promo-card.promo-orange::before { background: #ea580c; }

.home-promo-card.is-clickable {
	cursor: pointer;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.home-promo-card.is-clickable:active {
	transform: scale(0.992);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
}

.home-promo-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(38, 166, 154, 0.1);
	color: var(--brand-teal);
}

.home-promo-icon svg {
	width: 22px;
	height: 22px;
}

.promo-icon-purple {
	background: rgba(124, 58, 237, 0.1);
	color: #7c3aed;
}

.promo-icon-blue {
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.promo-icon-orange {
	background: rgba(234, 88, 12, 0.1);
	color: #ea580c;
}

.home-promo-body {
	flex: 1;
	min-width: 0;
	padding-left: 2px;
}

.home-promo-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: var(--radius-pill);
	background: rgba(38, 166, 154, 0.12);
	color: #0f766e;
	margin-bottom: 6px;
}

.home-promo-card.promo-purple .home-promo-badge {
	background: rgba(124, 58, 237, 0.1);
	color: #6d28d9;
}

.home-promo-card.promo-blue .home-promo-badge {
	background: rgba(37, 99, 235, 0.1);
	color: #1d4ed8;
}

.home-promo-card.promo-orange .home-promo-badge {
	background: rgba(234, 88, 12, 0.1);
	color: #c2410c;
}

.home-promo-title {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.5;
	color: var(--brand-navy);
}

.home-promo-sub {
	margin: 0;
	font-size: 12px;
	line-height: 1.7;
	color: var(--text-muted);
}

.home-promo-cta {
	display: inline-flex;
	align-items: center;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-teal);
}

.home-promo-card.promo-purple .home-promo-cta { color: #7c3aed; }
.home-promo-card.promo-blue .home-promo-cta { color: #2563eb; }
.home-promo-card.promo-orange .home-promo-cta { color: #ea580c; }

.home-promo-card.is-clickable .home-promo-cta::after {
	content: ' ←';
}

/* Account profile */
body.body-account::before {
	background: linear-gradient(165deg, var(--brand-navy-dark) 0%, #3d5a85 28%, #eef2f8 48%, #f4f7fb 100%);
}

.account-page {
	max-width: 440px;
	margin: 0 auto;
}

.profile-card {
	padding: 20px 18px !important;
}

.account-profile {
	text-align: right;
}

.profile-hero {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
}

.profile-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	flex-shrink: 0;
	margin: 0;
	background: linear-gradient(135deg, var(--sky-accent), var(--sky-accent-2));
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 64px;
	text-align: center;
	box-shadow: var(--shadow-glow);
}

.profile-hero-text {
	flex: 1;
	min-width: 0;
}

.profile-name {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 800;
}

.profile-username {
	margin: 0;
	font-size: 13px;
	color: var(--brand-teal);
	font-weight: 600;
}

.profile-details {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.profile-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--border);
	font-size: 13px;
}

.profile-row:last-child {
	border-bottom: none;
}

.profile-row-lbl {
	color: var(--text-muted);
	flex-shrink: 0;
}

.profile-row-val {
	color: var(--text);
	font-weight: 700;
	text-align: left;
	word-break: break-word;
}

.profile-row-val.is-ltr {
	direction: ltr;
	unicode-bidi: plaintext;
}

.account-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 14px 0;
}

.account-stat {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 14px 10px;
	text-align: center;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--border);
}

.account-stat-n {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: var(--brand-navy);
	line-height: 1.2;
}

.account-stat-l {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 4px;
}

.account-btn {
	width: 100%;
	margin-bottom: 10px;
}

.account-support {
	width: 100%;
	margin-top: 0;
}

.success-hero {
	text-align: center;
	padding: 28px 20px !important;
}

.success-hero .icon-big {
	font-size: 56px;
	margin-bottom: 8px;
}

.header-spacer {
	width: 40px;
	flex-shrink: 0;
}

.req-chevron {
	color: var(--text-muted);
	opacity: 0.5;
	display: flex;
	align-items: center;
}

.req-chevron .ico {
	width: 18px;
	height: 18px;
}

.empty-state .icon .ico {
	width: 48px;
	height: 48px;
	color: var(--sky-accent);
	opacity: 0.85;
}

.app-shell {
	padding-bottom: calc(var(--nav-h) + 24px + env(safe-area-inset-bottom, 0));
}

.overlay-loading {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
}

.overlay-loading .loader-logo {
	background: linear-gradient(135deg, var(--sky-accent), var(--sky-accent-2));
}

/* ——— مراحل رزرو (موبایل، مسافر، تأیید) ——— */
body.body-flow::before,
body.body-success::before,
body.body-detail::before,
body.body-no-results::before,
body.body-confirm::before,
body.body-auto-success::before,
body.body-requests::before,
body.body-results::before,
body.body-account::before {
	background: #f0f4fa;
}

/* ——— صفحه پرواز یافت نشد ——— */
.no-results-page {
	background: #f0f4fa;
}

.no-results-main {
	padding-top: 10px;
}

.btn-page-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(62, 91, 142, 0.14);
	background: #fff;
	color: var(--brand-navy);
	border-radius: 12px;
	padding: 8px 14px;
	min-height: 40px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
	margin-bottom: 14px;
}

.btn-page-back .ico {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.btn-page-back:active {
	transform: scale(0.98);
	background: var(--surface-2);
}

.nr-card {
	background: #fff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	border-radius: 18px;
	padding: 18px 16px;
	margin-bottom: 12px;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.nr-empty {
	text-align: center;
	padding: 22px 18px;
}

.nr-empty-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: rgba(62, 91, 142, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nr-empty-icon .ico {
	width: 28px;
	height: 28px;
	color: var(--brand-navy);
	opacity: 0.85;
}

.nr-empty-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 800;
	color: var(--brand-navy);
}

.nr-empty-desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #475569;
}

.nr-trip-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.nr-trip-col strong {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: var(--brand-navy);
	line-height: 1.45;
}

.nr-trip-lbl {
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 600;
}

.nr-trip-mid {
	color: var(--brand-teal);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nr-trip-mid .ico {
	width: 22px;
	height: 22px;
}

.nr-trip-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed rgba(62, 91, 142, 0.14);
}

.nr-chip {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 11px;
	border-radius: 999px;
	background: #f1f5f9;
	color: var(--brand-navy);
	unicode-bidi: isolate;
	white-space: nowrap;
}

.nr-auto-head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.nr-auto-badge {
	font-size: 10px;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.12);
	color: #059669;
}

.nr-auto-title {
	flex: 1 1 160px;
	min-width: 0;
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	color: var(--brand-navy);
	line-height: 1.45;
}

.nr-auto-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #475569;
}

.no-results-page .step-actions {
	margin-top: 4px;
}

body.body-flow .app-header {
	background: #fff;
	border-bottom: 1px solid rgba(62, 91, 142, 0.12);
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

body.body-flow .app-header.dark,
body.body-flow .app-header {
	background: #fff;
	color: var(--brand-navy);
}

body.body-flow .app-header h1 {
	color: var(--brand-navy);
	font-size: 16px;
}

.btn-header-back {
	display: none;
}

body.body-flow .app-header .btn-icon,
body.body-detail .app-header .btn-icon {
	background: var(--surface-2);
	border: 1px solid rgba(62, 91, 142, 0.12);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

body.body-flow .app-header .btn-icon .ico,
body.body-detail .app-header .btn-icon .ico {
	width: 20px;
	height: 20px;
}

.state-card,
.info-card,
.summary-route-card,
.confirm-summary-card {
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
	position: relative;
	z-index: 1;
}

.state-card {
	text-align: center;
	padding: 22px 18px;
	margin-bottom: 12px;
}

.state-card-icon .ico {
	width: 44px;
	height: 44px;
	color: var(--brand-navy);
	opacity: 0.85;
}

.state-card-title {
	margin: 10px 0 8px;
	font-size: 18px;
	font-weight: 800;
	color: var(--brand-navy);
}

.state-card-route {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	color: var(--brand-navy);
}

.state-card-meta {
	margin: 0 0 10px;
	font-size: 13px;
	color: var(--text-muted);
}

.state-card-desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #475569;
}

.info-card {
	padding: 16px 16px;
	margin-bottom: 12px;
}

.info-card-title {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 800;
	color: var(--brand-navy);
}

.info-card-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #475569;
}

.summary-route-card {
	padding: 18px 16px;
	margin-bottom: 12px;
}

.summary-route-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.summary-route-col strong {
	display: block;
	margin-top: 4px;
	font-size: 15px;
	color: var(--brand-navy);
}

.summary-lbl {
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 600;
}

.summary-route-mid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: var(--brand-teal);
	font-size: 13px;
	font-weight: 700;
}

.summary-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.summary-chips span {
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--brand-navy);
}

.summary-airline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 12px;
	font-size: 13px;
	color: var(--brand-navy);
}

.summary-price {
	text-align: center;
	margin-top: 12px;
	font-size: 20px;
	font-weight: 800;
	color: var(--brand-teal);
}

.flow-desc-tight {
	margin-top: 0;
	margin-bottom: 14px;
}

.pax-infant-note {
	margin-top: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(234, 179, 8, 0.12);
	border: 1px solid rgba(234, 179, 8, 0.35);
	color: #92400e;
	font-size: 12.5px;
	line-height: 1.7;
}

.passenger-block {
	border: 1px solid rgba(62, 91, 142, 0.1);
	background: #fff;
}

.auto-success-page {
	background: #f0f4fa;
	min-height: calc(100dvh - var(--header-h));
}

.auto-success-page .flow-main,
.auto-success-main {
	padding-top: 12px;
	background: #f0f4fa;
}

.auto-success-page .nr-card {
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.auto-success-hero-card {
	text-align: center;
	padding: 26px 18px 22px;
}

.auto-success-sub {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: #64748b;
}

.auto-success-track-card {
	text-align: center;
	padding: 18px 16px;
}

.auto-success-info-card {
	padding: 16px 18px;
}

.auto-success-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.auto-success-steps li {
	position: relative;
	padding-right: 14px;
	font-size: 13px;
	line-height: 1.75;
	color: #475569;
}

.auto-success-steps li::before {
	content: '•';
	position: absolute;
	right: 0;
	top: 0;
	color: #059669;
	font-weight: 800;
}

.auto-success-page .success-state-title {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
}

.auto-success-page .track-lbl {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #64748b;
	margin-bottom: 6px;
}

.auto-success-page .track-code {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: #1e293b;
	letter-spacing: 0.12em;
	font-variant-numeric: tabular-nums;
	unicode-bidi: isolate;
}

.auto-success-page .step-actions {
	margin-top: 4px;
}

.success-state-card {
	text-align: center;
	background: #fff;
	border: 1px solid rgba(62, 91, 142, 0.1);
	border-radius: var(--radius-lg);
	padding: 24px 18px 20px;
	margin-bottom: 12px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.success-check-ring {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(16, 185, 129, 0.12);
	border: 2px solid rgba(16, 185, 129, 0.35);
	color: #059669;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
}

.success-state-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 800;
	color: var(--brand-navy);
}

.success-state-desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #475569;
}

.track-card {
	text-align: center;
	padding: 18px 16px;
}

.track-lbl {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-muted);
	margin-bottom: 6px;
}

.track-code {
	display: block;
	font-size: 15px;
	font-weight: 800;
	color: var(--brand-navy);
	word-break: break-all;
	margin-bottom: 8px;
}

.track-hint {
	margin: 0;
	font-size: 12px;
	line-height: 1.65;
	color: #64748b;
}

.request-detail-page {
	max-width: 480px;
	margin: 0 auto;
	padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
}

.request-detail-page .btn-danger {
	width: 100%;
	margin-top: 12px;
}

.detail-action-msg {
	margin-top: 12px;
}

.detail-hero-card {
	text-align: center;
	background: #fff;
	border: 1px solid rgba(62, 91, 142, 0.1);
	border-radius: var(--radius-lg);
	padding: 20px 16px;
	margin-bottom: 12px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.detail-success-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(16, 185, 129, 0.12);
	color: #059669;
	font-size: 24px;
	font-weight: 800;
}

.detail-hero-title {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	color: var(--brand-navy);
}

.detail-status-pill {
	margin-bottom: 12px;
}

.detail-track-box {
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--surface-2);
}

.detail-track-lbl {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.detail-track-code {
	font-size: 24px;
	font-weight: 800;
	color: var(--brand-navy);
	letter-spacing: 0.1em;
	font-variant-numeric: tabular-nums;
	unicode-bidi: isolate;
}

.detail-info-card {
	padding: 4px 0;
}

.detail-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px dashed rgba(62, 91, 142, 0.12);
}

.detail-row:last-child {
	border-bottom: none;
}

.detail-row-lbl {
	font-size: 12px;
	color: var(--text-muted);
	flex-shrink: 0;
}

.detail-row-val {
	font-size: 13px;
	color: var(--brand-navy);
	text-align: left;
	word-break: break-word;
}

.detail-wait-card {
	margin-top: 0;
}

.sheet-section-more {
	margin-top: 14px;
	padding-top: 4px;
}

.flow-page {
	min-height: calc(100dvh - var(--header-h));
	display: flex;
	flex-direction: column;
	background: #f0f4fa;
}

.flow-main {
	flex: 1;
	padding: 12px 16px 8px;
	max-width: 480px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
	background: #f0f4fa;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.flow-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 20px 18px;
	box-shadow: var(--shadow-card);
	margin-bottom: 12px;
}

.flow-step-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--brand-teal);
	background: rgba(38, 166, 154, 0.12);
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	margin-bottom: 10px;
}

.flow-title {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 800;
	color: var(--brand-navy);
}

.flow-desc {
	margin: 0 0 16px;
	font-size: 13px;
	color: #475569;
	line-height: 1.7;
}

.field-row-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1.4fr;
	gap: 8px;
}

.field-group-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 14px 0 8px;
}

.step-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 4px 0 24px;
	max-width: 480px;
	margin: 0 auto;
	width: 100%;
}

.step-actions .btn-secondary {
	background: #fff;
	border: 1.5px solid rgba(62, 91, 142, 0.18);
	color: var(--brand-navy);
	font-weight: 700;
}

.step-actions .btn {
	width: 100%;
}

.btn-back-step {
	background: transparent;
	border: 1.5px solid var(--border);
	color: var(--text-muted);
	font-weight: 600;
	box-shadow: none;
}

.btn-back-step:active {
	background: var(--surface-2);
}

/* ——— صفحه تأیید نهایی ——— */
.confirm-page {
	background: #f0f4fa;
}

.confirm-page .flow-main {
	padding-top: 8px;
	background: #f0f4fa;
}

.confirm-page .nr-card {
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.confirm-flight-line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed rgba(62, 91, 142, 0.12);
	font-size: 13px;
	color: #1e293b;
}

.confirm-price-line {
	text-align: center;
	margin-top: 12px;
	font-size: 20px;
	font-weight: 800;
	color: #0f766e;
}

.confirm-details {
	padding: 16px;
}

.confirm-details .confirm-row {
	border-bottom: 1px dashed rgba(62, 91, 142, 0.14);
}

.confirm-details .confirm-row span {
	color: #64748b;
	font-size: 13px;
}

.confirm-details .confirm-row strong {
	color: #1e293b;
	font-size: 14px;
}

.confirm-summary-card {
	padding: 18px 16px;
	margin-bottom: 12px;
}

.confirm-auto-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.confirm-auto-badge {
	font-size: 10px;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.12);
	color: #059669;
	flex-shrink: 0;
}

.confirm-auto-title {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.45;
}

.confirm-auto-desc {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.75;
	color: #475569;
}

.confirm-summary-divider {
	height: 1px;
	background: rgba(62, 91, 142, 0.12);
	margin: 0 0 14px;
}

.confirm-page .summary-route-col strong {
	color: #1e293b;
}

.confirm-page .summary-chips span {
	background: #f1f5f9;
	color: #1e293b;
}

.confirm-page .flow-card {
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.confirm-hero-card {
	background: linear-gradient(145deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 22px 18px;
	box-shadow: var(--shadow-card);
	margin-bottom: 14px;
}

.confirm-route {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.confirm-route strong {
	display: block;
	font-size: 16px;
	font-weight: 800;
	margin-top: 4px;
}

.confirm-lbl {
	font-size: 11px;
	opacity: 0.75;
}

.confirm-mid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 700;
}

.confirm-mid .ico-plane {
	color: var(--brand-teal-light);
}

.confirm-airline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
	margin-top: 14px;
	font-size: 13px;
	opacity: 0.9;
	width: 100%;
}

.confirm-airline-logo,
.sheet-airline-logo {
	width: 24px;
	height: 24px;
	object-fit: contain;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.92);
	padding: 2px;
	flex-shrink: 0;
}

.sheet-sub-airline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.confirm-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.confirm-chips span {
	font-size: 11px;
	background: rgba(255, 255, 255, 0.15);
	padding: 4px 10px;
	border-radius: var(--radius-pill);
}

.confirm-price {
	text-align: center;
	margin-top: 14px;
	font-size: 22px;
	font-weight: 800;
	color: var(--sky-gold);
}

.confirm-details {
	padding: 16px;
}

.confirm-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px dashed var(--border);
	font-size: 14px;
}

.confirm-row span {
	color: var(--text-muted);
}

.confirm-pax-list {
	margin-top: 8px;
}

.confirm-pax-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.confirm-pax-item:last-child {
	border-bottom: none;
}

.confirm-pax-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand-teal), var(--sky-accent-2));
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.confirm-pax-item strong {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}

.confirm-pax-item span {
	font-size: 12px;
	color: var(--text-muted);
	display: block;
}

.confirm-pax-extra {
	margin-top: 4px !important;
	font-size: 11px !important;
	color: var(--brand-navy) !important;
}

/* ——— تایمر ۱۵ دقیقه رزرو ——— */
body.body-flow .booking-timer-wrap,
.booking-timer-wrap {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.14);
	border-radius: var(--radius-lg);
	padding: 14px 16px;
	margin-bottom: 14px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
	position: relative;
	z-index: 1;
}

.booking-timer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
}

body.body-flow .booking-timer-wrap.is-urgent,
.booking-timer-wrap.is-urgent {
	border-color: rgba(220, 38, 38, 0.35);
	background: #fff5f5;
}

.booking-timer-lbl {
	font-size: 13px;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.45;
	min-width: 0;
	flex: 1;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.booking-timer-hint {
	font-size: 12px;
	color: #64748b;
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.booking-timer {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	padding: 6px 10px;
	border-radius: 12px;
	background: #f0fdfa;
	border: 1px solid rgba(38, 166, 154, 0.22);
	font-size: 22px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: #0f766e;
	direction: ltr;
	unicode-bidi: plaintext;
	flex-shrink: 0;
}

.booking-timer-wrap.is-urgent .booking-timer {
	background: #fef2f2;
	border-color: rgba(220, 38, 38, 0.25);
	color: #dc2626;
}

/* ——— لودینگ رزرو (لوگو + انیمیشن) ——— */
.overlay-loading.overlay-book {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: linear-gradient(165deg, var(--brand-navy-dark) 0%, var(--brand-navy) 48%, #4a6fa5 100%);
}

.overlay-book-stack {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 300px;
	text-align: center;
}

.overlay-book-glow {
	position: absolute;
	left: 50%;
	top: 38%;
	width: min(80vw, 260px);
	height: min(80vw, 260px);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(38, 166, 154, 0.3) 0%, transparent 68%);
	animation: splashGlow 2.4s ease-in-out infinite;
	pointer-events: none;
}

.overlay-book-stack .logo-frame {
	margin: 0 auto 18px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.overlay-book-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid rgba(255, 255, 255, 0.22);
	border-top-color: var(--brand-teal);
	border-radius: 50%;
	animation: overlayBookSpin 0.85s linear infinite;
}

@keyframes overlayBookSpin {
	to { transform: rotate(360deg); }
}

.overlay-book-title {
	position: relative;
	z-index: 2;
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
}

.overlay-book-sub {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.9;
}

.overlay-book-stack #btn-gateway-open {
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: 18px;
}

.overlay-book-stack #btn-gateway-cancel {
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.9);
}

.overlay-book-bar {
	position: relative;
	z-index: 2;
	width: 120px;
	height: 4px;
	margin: 20px auto 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
}

.overlay-book-bar i {
	display: block;
	height: 100%;
	width: 40%;
	background: linear-gradient(90deg, var(--brand-teal), var(--sky-accent-2));
	border-radius: 4px;
	animation: splashBar 1.2s ease-in-out infinite;
}

/* ——— صفحه موفقیت / پرداخت ——— */
body.body-success::before {
	background: #f0f4fa;
}

.success-page {
	max-width: 420px;
	margin: 0 auto;
}

.success-brand-card {
	position: relative;
	text-align: center;
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 28px 20px 22px;
	box-shadow: var(--shadow-card);
	margin-bottom: 16px;
	overflow: hidden;
}

.success-brand-glow {
	position: absolute;
	inset: -40% 0 auto;
	height: 60%;
	background: radial-gradient(ellipse at 50% 0%, rgba(38, 166, 154, 0.18), transparent 70%);
	pointer-events: none;
}

.success-brand-card .logo-frame {
	position: relative;
	z-index: 1;
	margin: 0 auto 14px;
	display: flex;
}

.success-status-icon {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 8px;
}

.success-brand-card h2 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 800;
	color: var(--text);
}

.success-lead {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--text-muted);
}

.success-voucher {
	background: var(--surface-2);
	border-radius: var(--radius);
	padding: 12px 14px;
	margin-bottom: 10px;
}

.success-voucher span {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.success-voucher strong {
	font-size: 22px;
	font-weight: 800;
	color: var(--brand-navy);
	letter-spacing: 0.04em;
}

.success-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--brand-teal);
}

.btn-pay-hero {
	font-size: 16px;
	padding: 16px 20px;
	margin-bottom: 10px;
	box-shadow: var(--shadow-glow);
}

.success-pay-hint {
	font-size: 12px;
	color: var(--text-muted);
	text-align: center;
	line-height: 1.6;
	margin: 0 0 14px;
}

.btn-ghost {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-weight: 600;
	box-shadow: none;
	margin-top: 6px;
}

/* ——— صفحه رزروهای من ——— */
body.body-requests .app-header {
	background: #fff;
	border-bottom: 1px solid rgba(62, 91, 142, 0.12);
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

body.body-requests .app-header h1 {
	color: #1e293b;
	font-size: 16px;
}

.requests-page {
	min-height: calc(100dvh - var(--header-h));
	background: #f0f4fa;
	position: relative;
	z-index: 1;
	isolation: isolate;
}

.requests-main {
	padding: 12px 16px 8px;
	max-width: 480px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.requests-intro-card {
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	border-radius: 16px;
	padding: 14px 16px;
	margin-bottom: 14px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.requests-intro-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: #475569;
}

.requests-loading {
	margin: 0;
	text-align: center;
	font-size: 13px;
	color: #64748b;
	padding: 24px 0;
}

.requests-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.req-card {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	border-radius: 16px;
	padding: 14px 42px 14px 14px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
	cursor: pointer;
	transition: transform 0.15s var(--ease), background 0.15s;
}

.req-card:active {
	transform: scale(0.99);
	background: #f8fafc;
}

.req-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.req-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

.req-type-badge.is-search {
	background: #eff6ff;
	color: #1d4ed8;
}

.req-type-badge.is-book {
	background: #f0fdf4;
	color: #15803d;
}

.req-type-badge.is-auto {
	background: #fff7ed;
	color: #c2410c;
}

.req-card-route {
	font-size: 14px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.6;
	margin-bottom: 8px;
	word-break: break-word;
}

.req-card-foot {
	display: flex;
	align-items: center;
	gap: 8px;
}

.req-date-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f1f5f9;
	color: #475569;
	unicode-bidi: isolate;
}

.req-card-arrow {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	color: #94a3b8;
	opacity: 0.75;
}

.req-card-arrow .ico {
	width: 18px;
	height: 18px;
}

.requests-page .status-pill {
	font-size: 11px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

.requests-page .status-pill.ok {
	background: #dcfce7;
	color: #166534;
}

.requests-page .status-pill.pending {
	background: #fef3c7;
	color: #92400e;
}

.requests-page .status-pill.fail {
	background: #fee2e2;
	color: #991b1b;
}

.requests-page .status-pill.neutral {
	background: #f1f5f9;
	color: #475569;
}

.requests-empty-card {
	text-align: center;
	background: #ffffff;
	border: 1px solid rgba(62, 91, 142, 0.12);
	border-radius: 18px;
	padding: 28px 20px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.requests-empty-icon .ico {
	width: 48px;
	height: 48px;
	color: var(--brand-teal);
	opacity: 0.85;
}

.requests-empty-title {
	margin: 12px 0 6px;
	font-size: 17px;
	font-weight: 800;
	color: #1e293b;
}

.requests-empty-text {
	margin: 0 0 18px;
	font-size: 13px;
	line-height: 1.7;
	color: #64748b;
}
