/* ============================================================
   VOSTOK LOGISTICS — Design System v2.0
   ============================================================ */

/* --- 1. Design tokens --- */

:root {
	/* Brand */
	--v-brand: #0f5ba8;
	--v-brand-dark: #003f7f;
	--v-brand-light: #1a6abc;
	--v-brand-pale: #e8f0fa;

	/* Surfaces */
	--v-bg: #f2f5f9;
	--v-bg-hero: linear-gradient(135deg, #0b3d6e 0%, #0f5ba8 50%, #1a6abc 100%);
	--v-card: #ffffff;
	--v-card-hover: #fafcff;

	/* Borders */
	--v-line: #d5dde8;
	--v-line-strong: #8db0d6;

	/* Text */
	--v-text: #1c2733;
	--v-text-secondary: #556678;
	--v-text-muted: #8b99a8;
	--v-text-on-brand: #ffffff;

	/* Accents */
	--v-success: #0fa958;
	--v-success-bg: #eafaf1;
	--v-warning: #f0a31a;
	--v-warning-bg: #fff9ee;
	--v-error: #d93025;
	--v-error-bg: #fef0ef;

	/* Shadows */
	--v-shadow-sm: 0 1px 3px rgba(15, 42, 70, .06);
	--v-shadow-md: 0 4px 12px rgba(15, 42, 70, .08);
	--v-shadow-lg: 0 8px 24px rgba(15, 42, 70, .12);
	--v-shadow-xl: 0 12px 40px rgba(15, 42, 70, .16);

	/* Radius */
	--v-radius-sm: 4px;
	--v-radius: 8px;
	--v-radius-lg: 12px;
	--v-radius-xl: 16px;
	--v-radius-full: 9999px;

	/* Transitions */
	--v-transition: .2s cubic-bezier(.4, 0, .2, 1);
	--v-transition-slow: .35s cubic-bezier(.4, 0, .2, 1);

	/* Spacing */
	--v-space-xs: 4px;
	--v-space-sm: 8px;
	--v-space-md: 16px;
	--v-space-lg: 24px;
	--v-space-xl: 32px;
	--v-space-2xl: 48px;
	--v-space-3xl: 64px;

	/* Typography */
	--v-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--v-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

	/* Layout */
	--v-max-width: 1200px;
	--v-header-h: 60px;
}

/* --- 2. Font import --- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- 3. Global resets --- */

body {
	font-family: var(--v-font) !important;
	color: var(--v-text);
	background: var(--v-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

html {
	min-height: 100%;
}

*, *::before, *::after {
	box-sizing: border-box;
}

/* ============================================================
   4. HEADER
   ============================================================ */

.vostok-header {
	position: sticky;
	top: 0;
	z-index: 3000;
	display: block;
	height: auto;
	padding: 12px var(--v-space-lg);
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--v-line);
	box-shadow: var(--v-shadow-sm);
	transition: box-shadow var(--v-transition);
}

.vostok-header.scrolled {
	box-shadow: var(--v-shadow-md);
}

.vostok-header--compact {
	height: auto;
	padding: 10px 14px;
	position: relative;
}

.vostok-header--compact + .vostok-main {
	padding-top: 24px;
	flex: 1 0 auto;
}

.vostok-main {
	flex: 1 0 auto;
}

.vostok-header--compact .vostok-logo__icon {
	width: 32px;
	height: 32px;
	font-size: 16px;
}

.vostok-header--compact .vostok-logo__text {
	font-size: 16px;
}

.vostok-header--compact .vostok-logo__sub {
	font-size: 9px;
}

.vostok-header--compact .vostok-nav a {
	padding: 6px 11px;
	font-size: 13px;
}

.vostok-header--compact .vostok-btn--sm {
	padding: 7px 12px;
	font-size: 13px;
}

.vostok-header__meta-wrap {
	width: auto;
	max-width: none;
	margin: 0;
	display: flex;
	justify-content: center;
	justify-self: center;
}

.vostok-header__meta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid rgba(15, 91, 168, .1);
	background: rgba(245, 249, 255, .92);
	box-shadow: 0 10px 22px rgba(15, 91, 168, .08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.vostok-header__meta a {
	font-size: 14px;
	font-weight: 800;
	color: var(--v-brand);
	text-decoration: none;
	white-space: nowrap;
}

.vostok-header__meta a:hover {
	color: var(--v-brand-dark);
}

.vostok-header__inner {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
	width: 100%;
	max-width: var(--v-max-width);
	margin: 0 auto;
	gap: var(--v-space-lg);
	position: relative;
	z-index: 3001;
}

/* Logo */
.vostok-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
	justify-self: start;
}

.vostok-logo__icon {
	width: 36px;
	height: 36px;
	background: var(--v-bg-hero);
	border-radius: var(--v-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 900;
	font-size: 18px;
	letter-spacing: -1px;
}

.vostok-logo__text {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .5px;
	color: var(--v-brand);
}

.vostok-logo__sub {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--v-text-muted);
	margin-top: -2px;
}

/* Nav */
.vostok-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
}

.vostok-nav a {
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--v-text-secondary);
	text-decoration: none;
	border-radius: var(--v-radius);
	transition: all var(--v-transition);
	white-space: nowrap;
}

.vostok-nav a:hover {
	color: var(--v-brand);
	background: var(--v-brand-pale);
}

.vostok-nav a.active {
	color: var(--v-brand);
	background: var(--v-brand-pale);
	font-weight: 600;
}

/* Header actions */
.vostok-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--v-space-sm);
	flex-shrink: 0;
	margin-left: 0;
	justify-self: end;
}

.vostok-profile-menu {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: -10px;
}

.vostok-profile-menu__dropdown {
	position: absolute;
	top: calc(100% + 2px);
	right: 0;
	min-width: 190px;
	padding: 8px;
	border: 1px solid var(--v-line);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--v-shadow-md);
	display: none;
	z-index: 3100;
}

.vostok-profile-menu__dropdown::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 12px;
}

.vostok-profile-menu__dropdown a {
	display: block;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--v-text-secondary);
}

.vostok-profile-menu__dropdown a:hover {
	background: var(--v-brand-pale);
	color: var(--v-brand);
}

.vostok-profile-menu:hover .vostok-profile-menu__dropdown,
.vostok-profile-menu:focus-within .vostok-profile-menu__dropdown,
.vostok-profile-menu.is-open .vostok-profile-menu__dropdown {
	display: block;
}

/* --- Buttons (global) --- */

.vostok-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--v-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .2px;
	border: none;
	border-radius: var(--v-radius);
	cursor: pointer;
	transition: all var(--v-transition);
	text-decoration: none;
	white-space: nowrap;
	line-height: 1.4;
}

.vostok-btn--primary {
	background: var(--v-bg-hero);
	color: var(--v-text-on-brand);
	box-shadow: 0 2px 8px rgba(15, 91, 168, .3);
}

.vostok-btn--primary:hover {
	box-shadow: 0 4px 16px rgba(15, 91, 168, .4);
	transform: translateY(-1px);
}

.vostok-btn--outline {
	background: transparent;
	color: var(--v-brand);
	border: 2px solid var(--v-brand);
}

.vostok-btn--outline:hover {
	background: var(--v-brand);
	color: #fff;
}

.vostok-btn--ghost {
	background: transparent;
	color: var(--v-text-secondary);
}

.vostok-btn--ghost:hover {
	background: var(--v-brand-pale);
	color: var(--v-brand);
}

.vostok-btn--sm {
	padding: 7px 14px;
	font-size: 13px;
}

.vostok-btn--lg {
	padding: 14px 28px;
	font-size: 16px;
}

/* Hamburger */
.vostok-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 6px;
	background: none;
	border: none;
	cursor: pointer;
}

.vostok-hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--v-text);
	border-radius: 2px;
	transition: all var(--v-transition);
}

.vostok-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vostok-hamburger.open span:nth-child(2) { opacity: 0; }
.vostok-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   5. HERO SECTION
   ============================================================ */

.vostok-hero {
	position: relative;
	padding: var(--v-space-3xl) var(--v-space-lg) var(--v-space-2xl);
	background: var(--v-bg-hero);
	overflow: hidden;
}

.vostok-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .04);
	pointer-events: none;
}

.vostok-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .03);
	pointer-events: none;
}

.vostok-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--v-max-width);
	margin: 0 auto;
	text-align: left;
}

.vostok-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 480px);
	gap: 28px;
	align-items: start;
}

.vostok-hero__content {
	display: grid;
	gap: 18px;
}

.vostok-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .14);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .85);
	width: fit-content;
}

.vostok-hero__title {
	margin: 0 0 var(--v-space-md);
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -.5px;
	color: #ffffff;
	line-height: 1.15;
}

.vostok-hero__subtitle {
	margin: 0 0 var(--v-space-xl);
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, .75);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}

.vostok-hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: -6px;
}

.vostok-hero__points span {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .12);
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, .88);
}

/* Stats row */
.vostok-stats {
	display: flex;
	justify-content: flex-start;
	gap: var(--v-space-xl);
	margin-bottom: var(--v-space-xl);
	flex-wrap: wrap;
}

.vostok-stat {
	text-align: center;
}

.vostok-stat__value {
	display: block;
	font-size: 32px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -.5px;
	line-height: 1;
}

.vostok-stat__label {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Quick search form in hero */
.vostok-search {
	max-width: 780px;
	margin: 0;
	padding: var(--v-space-lg);
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: var(--v-radius-lg);
}

.vostok-search__row {
	display: flex;
	gap: var(--v-space-sm);
	flex-wrap: wrap;
}

.vostok-search__field {
	flex: 1;
	min-width: 180px;
}

.vostok-search__field--compact {
	max-width: 180px;
}

.vostok-search__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, .7);
	text-transform: uppercase;
	letter-spacing: .5px;
}

.vostok-search__field input,
.vostok-search__field select {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--v-font);
	font-size: 14px;
	color: var(--v-text);
	background: #ffffff;
	border: 2px solid transparent;
	border-radius: var(--v-radius);
	outline: none;
	transition: border-color var(--v-transition), box-shadow var(--v-transition);
}

.vostok-search__field input:focus,
.vostok-search__field select:focus {
	border-color: var(--v-brand-light);
	box-shadow: 0 0 0 3px rgba(26, 106, 188, .15);
}

.vostok-search__field input::placeholder {
	color: var(--v-text-muted);
}

.vostok-suggest-host {
	position: relative;
}

.vostok-suggest-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 40;
	padding: 6px;
	border: 1px solid #d8e3ee;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 20px 40px rgba(15, 37, 64, .18);
}

.vostok-suggest-dropdown__list {
	display: grid;
	gap: 4px;
	max-height: 260px;
	overflow: auto;
}

.vostok-suggest-dropdown__option {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 12px 14px;
	border: 0;
	border-radius: 12px;
	background: #fff;
	color: var(--v-text);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.vostok-suggest-dropdown__primary {
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	color: inherit;
}

.vostok-suggest-dropdown__secondary {
	display: block;
	font-size: 12px;
	line-height: 1.4;
	color: var(--v-text-muted);
}

.vostok-suggest-dropdown__option:hover,
.vostok-suggest-dropdown__option:focus {
	outline: none;
	background: #eef5fc;
	color: var(--v-brand-dark);
}

.vostok-suggest-dropdown__option:hover .vostok-suggest-dropdown__secondary,
.vostok-suggest-dropdown__option:focus .vostok-suggest-dropdown__secondary {
	color: #476888;
}

.vostok-iti-readonly {
	opacity: .95;
}

.vostok-iti-readonly .iti__selected-flag,
.vostok-iti-readonly .iti__arrow,
.vostok-iti-readonly .iti__country-container {
	pointer-events: none;
	cursor: default;
}

.vostok-iti-simple .iti__selected-flag,
.vostok-iti-simple .iti__arrow,
.vostok-iti-simple .iti__country-container {
	display: none !important;
}

.vostok-iti-simple input[type="tel"],
.vostok-iti-simple .iti__tel-input {
	padding-left: 14px !important;
}

.vostok-fixed-phone-display {
	margin-top: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid #d9e6f4;
	background: #f4f8fd;
	color: var(--v-text-secondary);
	display: grid;
	gap: 4px;
}

.vostok-fixed-phone-display strong {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--v-text-muted);
}

.vostok-phone-field--fixed .iti,
.vostok-phone-field--fixed .vostok-phone-source-input {
	display: none !important;
}

.vostok-phone-field--fixed .vostok-fixed-phone-display {
	margin-top: 8px;
}

.vostok-fixed-phone-display span {
	font-size: 16px;
	font-weight: 700;
	color: var(--v-text);
}

.vostok-fixed-phone-display small {
	font-size: 12px;
	line-height: 1.45;
	color: var(--v-text-muted);
}

.vostok-search__btn {
	align-self: flex-end;
	padding: 12px 28px;
	font-family: var(--v-font);
	font-size: 15px;
	font-weight: 700;
	color: var(--v-brand);
	background: #ffffff;
	border: none;
	border-radius: var(--v-radius);
	cursor: pointer;
	transition: all var(--v-transition);
	white-space: nowrap;
}

.vostok-search__btn:hover {
	background: #f0f6ff;
	transform: translateY(-1px);
	box-shadow: var(--v-shadow-md);
}

/* Arrow separator between cities */
.vostok-search__arrow {
	display: flex;
	align-items: flex-end;
	padding-bottom: 12px;
	font-size: 20px;
	color: rgba(255, 255, 255, .5);
	font-weight: 700;
}

.vostok-search--route {
	max-width: none;
	background: rgba(7, 27, 51, .28);
	border-color: rgba(255, 255, 255, .18);
	box-shadow: var(--v-shadow-xl);
}

.vostok-search__form {
	display: grid;
	gap: 16px;
}

.vostok-search__mode {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.vostok-search__mode-option {
	position: relative;
	display: block;
	cursor: pointer;
}

.vostok-search__mode-option input {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.vostok-search__mode-option span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .14);
	background: rgba(255, 255, 255, .08);
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, .78);
	transition: all var(--v-transition);
}

.vostok-search__mode-option input:checked + span {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--v-brand);
	box-shadow: 0 10px 22px rgba(7, 27, 51, .16);
}

.vostok-search__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.vostok-search__hint {
	max-width: 280px;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .72);
}

.vostok-search__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.vostok-search__proof-item {
	display: grid;
	gap: 8px;
	padding: 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .1);
}

.vostok-search__proof-item strong {
	font-size: 18px;
	line-height: 1;
	color: #ffffff;
}

.vostok-search__proof-item span {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .72);
}

/* ============================================================
   6. LISTING CATEGORIES (filter pills)
   ============================================================ */

.hp-listing-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: var(--v-space-md);
	padding: var(--v-space-sm) var(--v-space-md);
	background: var(--v-card);
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
}

.hp-listing-categories a {
	padding: 9px 18px;
	background: var(--v-bg);
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-full);
	font-size: 13px;
	font-weight: 600;
	color: var(--v-text-secondary);
	text-decoration: none;
	transition: all var(--v-transition);
}

.hp-listing-categories a:hover {
	color: var(--v-brand);
	background: var(--v-brand-pale);
	border-color: var(--v-brand);
}

.hp-listing-categories a.current {
	color: #ffffff;
	background: var(--v-brand);
	border-color: var(--v-brand);
	box-shadow: 0 2px 8px rgba(15, 91, 168, .25);
}

/* ============================================================
   7. LISTING CARDS
   ============================================================ */

body.post-type-archive-hp_listing,
body.tax-hp_listing_category,
body.single-hp_listing {
	background: var(--v-bg);
}

.hp-listings .hp-listing {
	position: relative;
	margin-bottom: var(--v-space-sm);
	padding: var(--v-space-md) var(--v-space-lg);
	background: var(--v-card);
	border: 1px solid var(--v-line);
	border-left: 4px solid var(--v-line-strong);
	border-radius: var(--v-radius);
	box-shadow: var(--v-shadow-sm);
	transition: all var(--v-transition);
}

.hp-listings .hp-listing:hover {
	border-left-color: var(--v-brand);
	box-shadow: var(--v-shadow-lg);
	transform: translateY(-2px);
}

.hp-listings .hp-listing__title {
	margin: 0 0 var(--v-space-sm);
	line-height: 1.25;
}

.hp-listings .hp-listing__title a {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .1px;
	color: var(--v-brand);
	text-decoration: none;
	transition: color var(--v-transition);
}

.hp-listings .hp-listing__title a:hover {
	color: var(--v-brand-dark);
}

.hp-listings .hp-listing__attributes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 8px 10px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--v-text);
}

.hp-listings .hp-listing__attribute {
	padding: 8px 10px;
	border: 1px solid #e8eef5;
	border-radius: var(--v-radius-sm);
	background: #f8fafd;
	transition: background var(--v-transition);
}

.hp-listings .hp-listing:hover .hp-listing__attribute {
	background: #f2f7fd;
}

.hp-listings .hp-listing__attribute-label {
	display: block;
	margin-bottom: 2px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .3px;
	color: var(--v-text-muted);
	text-transform: uppercase;
}

.hp-listings .hp-listing__attribute-value {
	font-weight: 500;
	color: var(--v-text);
}

/* Price highlight */
.hp-listings .hp-listing__attribute--price_rub {
	background: linear-gradient(135deg, #fff9ee 0%, #fff4df 100%);
	border-color: #f0d49f;
}

.hp-listings .hp-listing__attribute--price_rub .hp-listing__attribute-value {
	font-size: 15px;
	font-weight: 700;
	color: #9b5d00;
}

/* Route highlight (origin/destination) */
.hp-listings .hp-listing__attribute--origin_city,
.hp-listings .hp-listing__attribute--destination_city {
	background: linear-gradient(135deg, #eef5fd 0%, #e4eefb 100%);
	border-color: #c0d5ed;
}

.hp-listings .hp-listing__attribute--origin_city .hp-listing__attribute-value,
.hp-listings .hp-listing__attribute--destination_city .hp-listing__attribute-value {
	font-weight: 600;
	color: var(--v-brand);
}

/* ============================================================
   8. CONTACT BLOCK
   ============================================================ */

.vostok-contact-block {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin: var(--v-space-lg) 0;
	padding: var(--v-space-lg);
	background: linear-gradient(135deg, #f7fbff 0%, #edf4fd 100%);
	border: 1px solid #c0d5ed;
	border-left: 5px solid var(--v-brand);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-md);
}

.vostok-pay-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: 2px solid var(--v-brand);
	border-radius: var(--v-radius);
	background: #ffffff;
	color: var(--v-brand);
	font-family: var(--v-font);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .3px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--v-transition);
}

.vostok-pay-btn:hover,
.vostok-pay-btn:focus {
	background: var(--v-brand);
	border-color: var(--v-brand-dark);
	color: #ffffff;
	outline: none;
	box-shadow: 0 4px 16px rgba(15, 91, 168, .25);
	transform: translateY(-1px);
}

.vostok-pay-btn:disabled {
	opacity: .55;
	cursor: wait;
	transform: none;
	box-shadow: none;
}

.vostok-pay-btn--guest {
	border-color: var(--v-line-strong);
	color: var(--v-brand-light);
	background: #ffffff;
}

.vostok-pay-btn--ghost {
	border: 1px solid #c4d7ea;
	background: #fff;
	color: var(--v-text-secondary);
}

.vostok-pay-btn--ghost:hover {
	background: var(--v-brand-pale);
	border-color: var(--v-brand);
	color: var(--v-brand);
}

.vostok-pay-btn--guest:hover {
	background: var(--v-brand-light);
	border-color: var(--v-brand);
	color: #ffffff;
}

.vostok-contact-hint {
	font-size: 13px;
	font-weight: 500;
	color: var(--v-text-muted);
	line-height: 1.5;
}

.vostok-contact-block__guest-note {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--v-brand);
}

.vostok-contact-block__guest-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.vostok-contact-revealed {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: #ffffff;
	border: 1px solid #d7e4f6;
	border-radius: var(--v-radius);
}

.vostok-contact-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .3px;
	color: var(--v-text-muted);
	text-transform: uppercase;
}

.vostok-contact-phone {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .4px;
	color: var(--v-brand);
	text-decoration: none;
	transition: color var(--v-transition);
}

.vostok-contact-phone:hover {
	color: var(--v-brand-dark);
}

/* Status messages */
.vostok-pay-status {
	font-size: 13px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: var(--v-radius);
}

.vostok-pay-status--error {
	color: var(--v-error);
	background: var(--v-error-bg);
	border: 1px solid #f3c8c5;
}

.vostok-pay-status--info {
	color: #1d4e7e;
	background: #eef5fd;
	border: 1px solid #c0d5ed;
}

.vostok-chat-access-hint {
	max-width: 380px;
	padding: 8px 12px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--v-text-secondary);
	background: #f6f8fc;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius);
}

/* ============================================================
   9. FOOTER
   ============================================================ */

.vostok-footer {
	margin-top: var(--v-space-3xl);
	padding: var(--v-space-2xl) var(--v-space-lg) var(--v-space-lg);
	background: #0d1b2e;
	color: rgba(255, 255, 255, .6);
}

.vostok-footer__inner {
	max-width: var(--v-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--v-space-xl);
}

.vostok-footer__brand {
	display: flex;
	flex-direction: column;
	gap: var(--v-space-sm);
}

.vostok-footer__logo {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: .5px;
}

.vostok-footer__desc {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .45);
}

.vostok-footer__col h4 {
	margin: 0 0 var(--v-space-md);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .8);
}

.vostok-footer__col a {
	display: block;
	padding: 4px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	transition: color var(--v-transition);
}

.vostok-footer__col a:hover {
	color: #ffffff;
}

.vostok-footer__bottom {
	max-width: var(--v-max-width);
	margin: var(--v-space-xl) auto 0;
	padding-top: var(--v-space-lg);
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: rgba(255, 255, 255, .35);
}

/* ============================================================
   10. MOBILE BOTTOM NAV
   ============================================================ */

.vostok-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--v-line);
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .06);
	padding: 6px 0;
	padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
}

.vostok-bottom-nav__items {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 500px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.vostok-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	padding: 6px 12px;
	text-decoration: none;
	color: var(--v-text-muted);
	font-size: 11px;
	font-weight: 500;
	transition: color var(--v-transition);
}

.vostok-bottom-nav__item.active {
	color: var(--v-brand);
}

.vostok-bottom-nav__icon {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vostok-bottom-nav__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ============================================================
   11. BADGES & TAGS
   ============================================================ */

.vostok-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .3px;
	border-radius: var(--v-radius-full);
	text-transform: uppercase;
}

.vostok-badge--new {
	background: var(--v-success-bg);
	color: var(--v-success);
	border: 1px solid #b8e8cc;
}

.vostok-badge--hot {
	background: #fff0e6;
	color: #e06010;
	border: 1px solid #fbd0b0;
}

.vostok-badge--verified {
	background: var(--v-brand-pale);
	color: var(--v-brand);
	border: 1px solid #bbd0ea;
}

.vostok-badge--status {
	border: 1px solid transparent;
}

.vostok-badge--status-verified {
	background: #eef7ef;
	color: #1e7a46;
	border-color: #b9ddc3;
}

.vostok-badge--status-pending {
	background: #f4f7fb;
	color: #526679;
	border-color: #d7e1ed;
}

.vostok-badge--status-rejected {
	background: #fff2e8;
	color: #bf5a12;
	border-color: #f2c8a7;
}

.vostok-badge--status-neutral {
	background: #f6f8fc;
	color: #667788;
	border-color: #dbe3ec;
}

.vostok-badge--market {
	border: 1px solid transparent;
}

.vostok-badge--market-below {
	background: #eef7ef;
	color: #1e7a46;
	border-color: #b9ddc3;
}

.vostok-badge--market-market {
	background: #f4f7fb;
	color: #526679;
	border-color: #d7e1ed;
}

.vostok-badge--market-above {
	background: #fff2e8;
	color: #bf5a12;
	border-color: #f2c8a7;
}

.vostok-verified-badge-wrap {
	margin: 0 0 10px;
	line-height: 1;
}

/* ============================================================
   12. FEATURE CARDS (homepage services grid)
   ============================================================ */

.vostok-features {
	max-width: var(--v-max-width);
	margin: var(--v-space-2xl) auto;
	padding: 0 var(--v-space-lg);
}

.vostok-features__title {
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	color: var(--v-text);
	margin: 0 0 var(--v-space-sm);
}

.vostok-features__subtitle {
	text-align: center;
	font-size: 16px;
	color: var(--v-text-muted);
	margin: 0 0 var(--v-space-xl);
}

.vostok-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--v-space-lg);
}

.vostok-feature-card {
	padding: var(--v-space-lg);
	background: var(--v-card);
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	transition: all var(--v-transition-slow);
	text-decoration: none;
	color: var(--v-text);
}

.vostok-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--v-shadow-xl);
	border-color: var(--v-brand);
}

.vostok-feature-card__icon {
	width: 48px;
	height: 48px;
	margin-bottom: var(--v-space-md);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--v-brand-pale);
	border-radius: var(--v-radius);
	color: var(--v-brand);
	font-size: 22px;
}

.vostok-feature-card__title {
	margin: 0 0 var(--v-space-sm);
	font-size: 17px;
	font-weight: 700;
	color: var(--v-text);
}

.vostok-feature-card__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--v-text-secondary);
}

/* ============================================================
   13. FORMS (global)
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea,
select {
	font-family: var(--v-font);
	font-size: 14px;
	padding: 10px 14px;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius);
	background: #fff;
	color: var(--v-text);
	outline: none;
	transition: border-color var(--v-transition), box-shadow var(--v-transition);
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--v-brand);
	box-shadow: 0 0 0 3px rgba(15, 91, 168, .1);
}

::placeholder {
	color: var(--v-text-muted);
}

/* ============================================================
   14. ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideInLeft {
	from { opacity: 0; transform: translateX(-20px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

@keyframes countUp {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.vostok-animate-in {
	animation: fadeInUp .5s ease-out both;
}

.vostok-animate-in:nth-child(2) { animation-delay: .1s; }
.vostok-animate-in:nth-child(3) { animation-delay: .2s; }
.vostok-animate-in:nth-child(4) { animation-delay: .3s; }
.vostok-animate-in:nth-child(5) { animation-delay: .4s; }

.vostok-hero__title { animation: fadeInUp .6s ease-out both; }
.vostok-hero__subtitle { animation: fadeInUp .6s ease-out .15s both; }
.vostok-stats { animation: fadeInUp .6s ease-out .3s both; }
.vostok-search { animation: fadeInUp .6s ease-out .45s both; }

/* ============================================================
   15. SCROLLBAR
   ============================================================ */

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--v-bg); }
::-webkit-scrollbar-thumb { background: #b8c5d4; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #95a5b8; }

/* ============================================================
   16. UTILITY CLASSES
   ============================================================ */

.vostok-container {
	max-width: var(--v-max-width);
	margin: 0 auto;
	padding: 0 var(--v-space-lg);
}

.vostok-section {
	padding: var(--v-space-2xl) 0;
}

.vostok-text-center { text-align: center; }
.vostok-text-muted { color: var(--v-text-muted); }
.vostok-mt-sm { margin-top: var(--v-space-sm); }
.vostok-mt-md { margin-top: var(--v-space-md); }
.vostok-mt-lg { margin-top: var(--v-space-lg); }
.vostok-mb-sm { margin-bottom: var(--v-space-sm); }
.vostok-mb-md { margin-bottom: var(--v-space-md); }
.vostok-mb-lg { margin-bottom: var(--v-space-lg); }

/* ============================================================
   17. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
	.vostok-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vostok-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--v-space-lg);
	}
}

@media (max-width: 768px) {
	/* Header */
	.vostok-nav { display: none; }
	.vostok-hamburger { display: flex; }

	.vostok-nav.open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: var(--v-header-h);
		left: 0;
		right: 0;
		background: var(--v-card);
		border-bottom: 1px solid var(--v-line);
		box-shadow: var(--v-shadow-lg);
		padding: var(--v-space-sm);
		animation: fadeIn .2s ease-out;
	}

	.vostok-nav.open a {
		padding: 12px 16px;
		border-radius: var(--v-radius);
	}

	/* Hero */
	.vostok-hero {
		padding: var(--v-space-2xl) var(--v-space-md) var(--v-space-xl);
	}

	.vostok-hero__layout {
		grid-template-columns: 1fr;
	}

	.vostok-hero__eyebrow,
	.vostok-hero__points {
		justify-content: center;
	}

	.vostok-hero__title {
		font-size: 28px;
	}

	.vostok-hero__subtitle {
		font-size: 15px;
		margin-left: 0;
		margin-right: 0;
	}

	.vostok-stat__value {
		font-size: 24px;
	}

	.vostok-stats {
		justify-content: center;
	}

	.vostok-search__row {
		flex-direction: column;
	}

	.vostok-search__mode,
	.vostok-search__proof,
	.vostok-route-dashboard__meta {
		grid-template-columns: 1fr;
	}

	.vostok-search__arrow {
		display: none;
	}

	.vostok-search__footer {
		align-items: stretch;
	}

	.vostok-search__hint {
		max-width: none;
	}

	.vostok-search__btn {
		width: 100%;
	}

	/* Bottom nav */
	.vostok-bottom-nav {
		display: block;
	}

	body {
		padding-bottom: 70px;
	}

	/* Features */
	.vostok-features__grid {
		grid-template-columns: 1fr;
		gap: var(--v-space-md);
	}

	/* Footer */
	.vostok-footer__inner {
		grid-template-columns: 1fr;
		gap: var(--v-space-lg);
	}

	.vostok-footer__bottom {
		flex-direction: column;
		gap: var(--v-space-sm);
		text-align: center;
	}
}

@media (max-width: 640px) {
	.hp-listings .hp-listing {
		padding: 12px 14px;
	}

	.hp-listings .hp-listing__title a {
		font-size: 15px;
	}

	.hp-listings .hp-listing__attributes {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.vostok-contact-block {
		padding: 14px;
		flex-direction: column;
		align-items: stretch;
	}

	.vostok-pay-btn {
		width: 100%;
	}

	.vostok-contact-revealed {
		flex-direction: column;
		align-items: flex-start;
	}

	.vostok-contact-phone {
		font-size: 20px;
	}

	.vostok-stats {
		gap: var(--v-space-md);
	}
}

@media (max-width: 920px) {
	.hp-listings .hp-listing__attributes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ============================================================
   18. WORDPRESS OVERRIDES
   ============================================================ */

/* Clean up WP admin bar spacing */
body.admin-bar .vostok-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .vostok-header {
		top: 46px;
	}
}

/* HivePress form overrides */
.hp-form__field input,
.hp-form__field select,
.hp-form__field textarea {
	font-family: var(--v-font);
	border-radius: var(--v-radius);
}

.hp-form__button {
	font-family: var(--v-font) !important;
	border-radius: var(--v-radius) !important;
	font-weight: 600 !important;
	transition: all var(--v-transition) !important;
}

/* HivePress listing page overrides */
.hp-listing__title {
	font-family: var(--v-font);
}

/* HivePress messages */
.hp-message {
	border-radius: var(--v-radius);
	border-color: var(--v-line);
}

/* Clean up WP default styles */
.entry-content,
.page-content,
.post-content {
	font-family: var(--v-font);
	line-height: 1.6;
}

body .hp-page__content,
body .hp-page__main {
	animation: fadeIn .35s ease-out both;
}

.vostok-archive-layout {
	display: grid;
	grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	margin-bottom: 24px;
}

.vostok-archive-sidebar {
	position: sticky;
	top: calc(var(--v-header-h) + 16px);
}

.vostok-range {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.vostok-archive-results__header {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: end;
	margin-bottom: 16px;
}

.vostok-archive-results__title {
	margin: 0 0 6px;
	font-size: 34px;
	line-height: 1.1;
	color: var(--v-text);
}

.vostok-archive-results__desc,
.vostok-archive-results__count {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--v-text-secondary);
}

.vostok-archive-results__count {
	margin-bottom: 16px;
	font-weight: 600;
}

.vostok-route-dashboard {
	display: grid;
	gap: 16px;
	margin-bottom: 20px;
}

.vostok-route-dashboard__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
	gap: 18px;
	padding: 22px;
	border-radius: 20px;
	background: linear-gradient(135deg, #0d3259 0%, #0f5ba8 58%, #2c79c7 100%);
	box-shadow: var(--v-shadow-lg);
	color: #ffffff;
}

.vostok-route-dashboard__eyebrow {
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .72);
}

.vostok-route-dashboard__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.08;
	color: #ffffff;
}

.vostok-route-dashboard__desc {
	max-width: 720px;
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .78);
}

.vostok-route-dashboard__note {
	max-width: 720px;
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .72);
}

.vostok-route-dashboard__meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 12px;
	align-self: start;
}

.vostok-route-dashboard__meta-card {
	padding: 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .12);
}

.vostok-route-dashboard__meta-card span {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .64);
}

.vostok-route-dashboard__meta-card strong {
	display: block;
	font-size: 18px;
	line-height: 1.35;
	color: #ffffff;
}

.vostok-route-dashboard__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.vostok-route-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid #cbd9ea;
	background: #ffffff;
	font-size: 13px;
	font-weight: 700;
	color: var(--v-text-secondary);
	text-decoration: none;
	transition: all var(--v-transition);
}

.vostok-route-chip:hover,
.vostok-route-chip.is-active {
	color: var(--v-brand);
	border-color: #8fb2da;
	background: #eef5fd;
}

.vostok-archive-sort {
	min-width: 280px;
	padding: 16px;
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
}

.vostok-listing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.vostok-listing-rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vostok-list-row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(160px, 220px);
	gap: 14px;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid #d9e3ee;
	border-radius: 14px;
	background: #f3f6fa;
}

.vostok-list-row__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: 14px;
}

.vostok-list-row__main,
.vostok-list-row__side {
	position: relative;
	z-index: 2;
}

.vostok-list-row__head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.vostok-list-row__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.vostok-list-row__badges--verified {
	margin-top: 6px;
}

.vostok-list-row__route {
	margin-top: 10px;
	font-size: 15px;
	font-weight: 800;
	color: var(--v-text);
}

.vostok-list-row__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.vostok-list-row__facts span {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid #d5e1ee;
	font-size: 12px;
	font-weight: 700;
	color: var(--v-text-secondary);
}

.vostok-badge--type {
	background: #eef5fd;
	border: 1px solid #bfd5ee;
	color: var(--v-brand);
}

.vostok-badge--type-ishu-gruz {
	background: #fff3df;
	border-color: #f0d0a1;
	color: #9b5d00;
}

.vostok-badge--type-ishu-transport {
	background: #eaf7ef;
	border-color: #b7dfc4;
	color: #177245;
}

.vostok-list-row__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
}

.vostok-list-row__title a {
	text-decoration: none;
	color: var(--v-text);
}

.vostok-list-row__title a:hover {
	color: var(--v-brand);
}

.vostok-list-row__number {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	background: #eef4fb;
	border: 1px solid #d3e0ee;
	font-size: 12px;
	font-weight: 700;
	color: var(--v-text-secondary);
}

.vostok-list-row__specs,
.vostok-list-row__meta {
	margin: 6px 0 0;
	font-size: 14px;
	color: var(--v-text-secondary);
}

.vostok-list-row__specs {
	font-weight: 700;
	color: var(--v-text);
}

.vostok-list-row__meta {
	font-size: 13px;
	color: var(--v-text-muted);
}

.vostok-list-row__side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.vostok-list-row__price {
	font-size: 18px;
	font-weight: 800;
	color: var(--v-brand);
}

.vostok-list-row__price-note {
	font-size: 12px;
	font-weight: 700;
	color: var(--v-text-muted);
}

.vostok-list-row__open {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 700;
	color: var(--v-brand);
	border: 1px solid #c4d7ec;
	border-radius: 999px;
	background: #fff;
	text-decoration: none;
}

.vostok-list-row__open:hover {
	background: var(--v-brand-pale);
}

.vostok-listing-grid__item .hp-listing {
	height: 100%;
}

.vostok-archive-empty {
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
	color: var(--v-text-secondary);
}

.vostok-archive-pagination {
	margin-top: 18px;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid var(--v-line);
	border-radius: var(--v-radius-lg);
	box-shadow: var(--v-shadow-sm);
}

.vostok-archive-pagination .page-numbers {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.vostok-archive-pagination a,
.vostok-archive-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid #d7e3f0;
	text-decoration: none;
	color: var(--v-brand);
	font-weight: 700;
	background: #fff;
}

.vostok-archive-pagination .current {
	background: var(--v-bg-hero);
	color: #fff;
	border-color: transparent;
}

.vostok-heavy-weight-warning {
	display: none;
	margin-top: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid #f2d69e;
	background: #fff8eb;
	font-size: 13px;
	line-height: 1.5;
	color: #8b6200;
}


body.hp-template--listings-view-page .hp-listings,
body.tax-hp_listing_category .hp-listings,
body.post-type-archive-hp_listing .hp-listings {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

body.hp-template--listings-view-page .hp-listings .hp-listing,
body.tax-hp_listing_category .hp-listings .hp-listing,
body.post-type-archive-hp_listing .hp-listings .hp-listing {
	margin: 0;
	padding: 14px 16px;
	border: 1px solid #d9e3ee;
	border-radius: 14px;
	box-shadow: none;
	background: #f3f6fa;
}

body.hp-template--listings-view-page .hp-listings .hp-listing__header,
body.tax-hp_listing_category .hp-listings .hp-listing__header,
body.post-type-archive-hp_listing .hp-listings .hp-listing__header {
	display: none;
}

body.hp-template--listings-view-page .hp-listings .hp-listing__content,
body.tax-hp_listing_category .hp-listings .hp-listing__content,
body.post-type-archive-hp_listing .hp-listings .hp-listing__content {
	display: grid;
	grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
}

body.hp-template--listings-view-page .hp-listings .hp-listing__title,
body.tax-hp_listing_category .hp-listings .hp-listing__title,
body.post-type-archive-hp_listing .hp-listings .hp-listing__title {
	margin: 0;
	font-size: 18px;
}

body.hp-template--listings-view-page .hp-listings .hp-listing__details,
body.tax-hp_listing_category .hp-listings .hp-listing__details,
body.post-type-archive-hp_listing .hp-listings .hp-listing__details {
	margin: 0;
}

body.hp-template--listings-view-page .hp-listings .hp-listing__actions,
body.tax-hp_listing_category .hp-listings .hp-listing__actions,
body.post-type-archive-hp_listing .hp-listings .hp-listing__actions {
	justify-self: end;
	align-self: center;
}

@media (max-width: 900px) {
	.vostok-listing-grid {
		grid-template-columns: 1fr;
	}

	body.hp-template--listings-view-page .hp-listings .hp-listing__content,
	body.tax-hp_listing_category .hp-listings .hp-listing__content,
	body.post-type-archive-hp_listing .hp-listings .hp-listing__content {
		display: block;
	}

	body.hp-template--listings-view-page .hp-listings .hp-listing__actions,
	body.tax-hp_listing_category .hp-listings .hp-listing__actions,
	body.post-type-archive-hp_listing .hp-listings .hp-listing__actions {
		justify-self: start;
		margin-top: 8px;
	}

	.vostok-archive-layout,
	.vostok-archive-results__header,
	.vostok-range {
		display: block;
	}

	.vostok-route-dashboard__hero,
	.vostok-route-dashboard__meta {
		display: block;
	}

	.vostok-route-dashboard__meta-card {
		margin-top: 10px;
	}

	.vostok-list-row {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.vostok-list-row__head {
		gap: 8px;
	}

	.vostok-list-row__badges {
		margin-top: 10px;
	}

	.vostok-list-row__facts {
		margin-top: 12px;
	}

	.vostok-list-row__title {
		font-size: 22px;
		line-height: 1.08;
	}

	.vostok-list-row__specs {
		font-size: 15px;
	}

	.vostok-list-row__meta {
		font-size: 12px;
		line-height: 1.5;
	}

	.vostok-list-row__side {
		align-items: flex-start;
	}

	.vostok-archive-sidebar {
		position: static;
		margin-bottom: 18px;
	}

	.vostok-archive-sort {
		min-width: 0;
		margin-top: 12px;
	}


}

@media (max-width: 640px) {
}

@media (max-width: 900px) {
	.vostok-header__meta-wrap {
		display: none;
	}

	.vostok-header__inner {
		display: flex;
		justify-content: space-between;
	}
}

/* --- Password section heading --- */

/* ============================================================
   24. MARKETPLACE ARCHIVE REDESIGN
   ============================================================ */

.vostok-market-shell {
	display: grid;
	gap: 20px;
	margin-bottom: 24px;
}

body.hp-template--listings-view-page .hp-page__header,
body.tax-hp_listing_category .hp-page__header,
body.post-type-archive-hp_listing .hp-page__header,
body.hp-template--listings-view-page .hp-page__sidebar,
body.tax-hp_listing_category .hp-page__sidebar,
body.post-type-archive-hp_listing .hp-page__sidebar {
	display: none !important;
}

body.hp-template--listings-view-page .hp-page > .hp-row,
body.tax-hp_listing_category .hp-page > .hp-row,
body.post-type-archive-hp_listing .hp-page > .hp-row {
	display: block;
}

body.hp-template--listings-view-page .hp-page > .hp-row > .hp-page__content,
body.tax-hp_listing_category .hp-page > .hp-row > .hp-page__content,
body.post-type-archive-hp_listing .hp-page > .hp-row > .hp-page__content,
body.hp-template--listings-view-page .hp-page__content,
body.tax-hp_listing_category .hp-page__content,
body.post-type-archive-hp_listing .hp-page__content {
	width: 100%;
	max-width: none;
	flex: none;
	min-width: 0;
}

.vostok-market-hero {
	display: grid;
	gap: 18px;
}

.vostok-market-hero__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
	gap: 18px;
	padding: 24px;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(143, 184, 228, .24), transparent 28%),
		linear-gradient(135deg, #0a2e52 0%, #0f4f8d 52%, #1866b2 100%);
	box-shadow: var(--v-shadow-lg);
	color: #fff;
}

.vostok-market-hero__eyebrow,
.vostok-route-intelligence__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .14);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .72);
}

.vostok-market-hero__title {
	margin: 14px 0 0;
	font-size: 42px;
	line-height: 1.04;
	color: #fff;
}

.vostok-market-hero__desc {
	max-width: 760px;
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .78);
}

.vostok-market-hero__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-self: start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vostok-market-hero__proof-card {
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .12);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.vostok-market-hero__proof-card span {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .64);
}

.vostok-market-hero__proof-card strong {
	display: block;
	font-size: 19px;
	line-height: 1.35;
	color: #fff;
}

.vostok-market-command {
	padding: 22px;
	border-radius: 24px;
	border: 1px solid #d2dfed;
	box-shadow: var(--v-shadow-md);
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.vostok-market-command__top,
.vostok-market-command__footer,
.vostok-market-results__head,
.vostok-route-intelligence__head,
.vostok-list-row__trust-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.vostok-market-command__segmented {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.vostok-market-command__segment {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid #d6e2ef;
	background: #f2f6fb;
	font-size: 13px;
	font-weight: 800;
	color: var(--v-text-secondary);
	cursor: pointer;
	transition: all var(--v-transition);
}

.vostok-market-command__segment input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vostok-market-command__segment.is-active {
	border-color: #8db1d7;
	background: #eaf3fd;
	color: var(--v-brand);
	box-shadow: inset 0 0 0 1px rgba(15, 91, 168, .06);
}

.vostok-market-command__links {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.vostok-market-command__link {
	font-size: 13px;
	font-weight: 700;
	color: var(--v-text-secondary);
	text-decoration: none;
}

.vostok-market-command__link:hover {
	color: var(--v-brand);
}

.vostok-market-command__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px 16px;
	margin-top: 18px;
}

.vostok-market-field,
.vostok-market-field--keywords,
.vostok-market-field--route,
.vostok-market-field--range,
.vostok-market-field--verified,
.vostok-market-field--sort {
	margin: 0;
}

.vostok-market-field--verified {
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid #d7e2ef;
	background: linear-gradient(180deg, #f9fbff 0%, #f3f7fc 100%);
}

.vostok-market-field--verified .hp-field--checkbox {
	margin: 0;
	line-height: 1.5;
}

.vostok-market-command__footer {
	align-items: end;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #dde7f2;
}

.vostok-market-command__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 1 1 320px;
}

.vostok-market-command__submit-wrap {
	display: flex;
	justify-content: flex-end;
	flex: 0 0 auto;
}

.vostok-market-results,
.vostok-route-intelligence {
	padding: 22px;
	border-radius: 24px;
	border: 1px solid #d5e0ec;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: var(--v-shadow-sm);
}

.vostok-market-results__title,
.vostok-route-intelligence__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.08;
	color: var(--v-text);
}

.vostok-market-results__desc,
.vostok-route-intelligence__desc,
.vostok-route-intelligence__note {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--v-text-secondary);
}

.vostok-market-results__summary {
	display: grid;
	gap: 6px;
	max-width: 320px;
	padding: 16px 18px;
	border-radius: 18px;
	background: #f3f7fc;
	border: 1px solid #dbe5ef;
}

.vostok-market-results__summary strong {
	font-size: 18px;
	line-height: 1.25;
	color: var(--v-text);
}

.vostok-market-results__summary span {
	font-size: 13px;
	line-height: 1.6;
	color: var(--v-text-secondary);
}

.vostok-market-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 16px 0 0;
}

.vostok-market-active-filters__item,
.vostok-list-row__spec-pill,
.vostok-list-row__facts span,
.vostok-list-row__trust-facts span {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid #d7e2ef;
	background: #fff;
	font-size: 12px;
	font-weight: 700;
	color: var(--v-text-secondary);
}

.vostok-route-intelligence__status {
	display: grid;
	gap: 8px;
	min-width: 220px;
	padding: 16px 18px;
	border-radius: 18px;
	background: #f3f7fc;
	border: 1px solid #d8e3ef;
}

.vostok-route-intelligence__status-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--v-text-muted);
}

.vostok-route-intelligence__status strong {
	font-size: 20px;
	line-height: 1.3;
	color: var(--v-text);
}

.vostok-route-intelligence__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.vostok-route-intelligence__stat {
	padding: 16px;
	border-radius: 18px;
	border: 1px solid #d8e3ef;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.vostok-route-intelligence__stat span,
.vostok-list-row__kpi-label,
.vostok-list-row__economy-item span {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--v-text-muted);
}

.vostok-route-intelligence__stat strong,
.vostok-list-row__economy-item strong {
	display: block;
	margin-top: 7px;
	font-size: 18px;
	line-height: 1.35;
	color: var(--v-text);
}

.vostok-route-intelligence__map-shell {
	margin-top: 18px;
	border-radius: 20px;
	border: 1px solid #d8e3ef;
	background: #f9fbfe;
	overflow: hidden;
}

.vostok-route-intelligence__map-shell summary {
	position: relative;
	padding: 16px 20px;
	font-size: 14px;
	font-weight: 800;
	color: var(--v-text);
	cursor: pointer;
	list-style: none;
}

.vostok-route-intelligence__map-shell summary::-webkit-details-marker {
	display: none;
}

.vostok-route-intelligence__map-shell[open] summary {
	border-bottom: 1px solid #d8e3ef;
	background: #fff;
}

.vostok-route-map-card--archive {
	margin: 16px;
	padding: 0;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.vostok-listing-rows {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.vostok-list-row {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(250px, .9fr) minmax(240px, .95fr);
	gap: 18px;
	align-items: stretch;
	padding: 20px;
	border: 1px solid #d8e2ec;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
	box-shadow: var(--v-shadow-sm);
	transition: transform var(--v-transition), box-shadow var(--v-transition), border-color var(--v-transition);
}

.vostok-list-row:hover {
	transform: translateY(-1px);
	border-color: #b6cce4;
	box-shadow: var(--v-shadow-md);
}

.vostok-list-row__identity,
.vostok-list-row__economy,
.vostok-list-row__trust {
	min-width: 0;
	display: grid;
	gap: 12px;
	align-content: start;
}

.vostok-list-row__topline,
.vostok-list-row__specs,
.vostok-list-row__facts,
.vostok-list-row__trust-facts,
.vostok-list-row__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.vostok-list-row__title {
	margin: 0;
	font-size: 24px;
	line-height: 1.12;
}

.vostok-list-row__title a {
	text-decoration: none;
	color: var(--v-text);
}

.vostok-list-row__title a:hover {
	color: var(--v-brand);
}

.vostok-list-row__route {
	margin: -4px 0 0;
	font-size: 15px;
	line-height: 1.65;
	font-weight: 700;
	color: var(--v-text-secondary);
}

.vostok-list-row__economy {
	padding: 18px;
	border-radius: 20px;
	border: 1px solid #dbe5f0;
	background: linear-gradient(180deg, #f9fbfe 0%, #eef5fc 100%);
}

.vostok-list-row__price {
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	color: var(--v-brand);
}

.vostok-list-row__price-note {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--v-text-secondary);
}

.vostok-list-row__economy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: auto;
}

.vostok-list-row__economy-item {
	padding: 12px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #dbe5ef;
}

.vostok-list-row__company {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--v-text);
}

.vostok-list-row__company-meta {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--v-text-secondary);
}

.vostok-list-row__company-caption {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--v-text-muted);
}

.vostok-list-row__actions {
	margin-top: auto;
	justify-content: flex-start;
}

.vostok-list-row__open {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--v-bg-hero);
	box-shadow: 0 2px 10px rgba(15, 91, 168, .18);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.vostok-list-row__open:hover {
	color: #fff;
	transform: translateY(-1px);
}

@media (max-width: 1180px) {
	.vostok-market-hero__intro,
	.vostok-market-command__footer {
		grid-template-columns: 1fr;
	}

	.vostok-market-hero__intro {
		display: block;
	}

	.vostok-market-hero__proof {
		margin-top: 18px;
	}

	.vostok-list-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vostok-list-row__identity {
		grid-column: 1 / -1;
	}
}

@media (max-width: 920px) {
	.vostok-market-command__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vostok-market-command__footer,
	.vostok-market-results__head,
	.vostok-route-intelligence__head {
		display: grid;
	}

	.vostok-market-command__submit-wrap {
		justify-content: stretch;
	}

	.vostok-market-command__submit-wrap .vostok-btn {
		width: 100%;
	}

	.vostok-list-row {
		grid-template-columns: 1fr;
	}

	.vostok-list-row__economy-grid,
	.vostok-market-hero__proof {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.vostok-market-hero__intro,
	.vostok-market-command,
	.vostok-market-results,
	.vostok-route-intelligence,
	.vostok-list-row {
		padding: 16px;
		border-radius: 18px;
	}

	.vostok-market-command__grid {
		grid-template-columns: 1fr;
	}

	.vostok-market-hero__title,
	.vostok-market-results__title,
	.vostok-route-intelligence__title {
		font-size: 28px;
	}

	.vostok-market-command__segmented,
	.vostok-market-command__links,
	.vostok-market-command__chips {
		display: grid;
	}

	.vostok-market-command__segment,
	.vostok-market-command__submit-wrap,
	.vostok-market-command__submit-wrap .vostok-btn {
		width: 100%;
	}

	.vostok-list-row__title {
		font-size: 21px;
	}

	.vostok-list-row__price {
		font-size: 26px;
	}
}

/* ============================================================
   25. MARKETPLACE ARCHIVE OVERRIDES v2
   ============================================================ */

.vostok-market-hero--compact .vostok-market-hero__intro {
	grid-template-columns: minmax(0, 1.4fr) minmax(320px, .8fr);
	padding: 20px 22px;
}

.vostok-market-hero--compact .vostok-market-hero__title {
	font-size: 34px;
}

.vostok-market-board {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.vostok-market-sidebar {
	position: sticky;
	top: calc(var(--v-header-h) + 18px);
	align-self: start;
}

.vostok-market-filter {
	display: grid;
	gap: 12px;
	padding: 20px;
	border-radius: 22px;
	max-height: calc(100dvh - var(--v-header-h) - 36px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.vostok-market-filter__head,
.vostok-market-results__toolbar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 14px;
	flex-wrap: wrap;
}

.vostok-market-filter__eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--v-text-muted);
}

.vostok-market-filter__title {
	margin: 6px 0 0;
	font-size: 24px;
	line-height: 1.1;
	color: var(--v-text);
}

.vostok-market-filter__reset {
	font-size: 13px;
	font-weight: 700;
	color: var(--v-text-secondary);
	text-decoration: none;
}

.vostok-market-filter__types {
	padding-bottom: 6px;
	border-bottom: 1px solid #e2eaf3;
}

.vostok-market-filter__types .hp-field--radio {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	font-weight: 700;
	color: var(--v-text-secondary);
}

.vostok-market-filter__range,
.vostok-market-filter__verified {
	margin: 0;
}

.vostok-market-filter__actions {
	display: grid;
	gap: 10px;
	margin-top: 4px;
}

.vostok-market-filter__actions .vostok-btn {
	width: 100%;
}

.vostok-market-main {
	min-width: 0;
	display: grid;
	gap: 16px;
}

.vostok-route-intelligence--inline {
	padding: 20px;
}

.vostok-market-sort-form {
	margin: 14px 0 0;
}

.vostok-market-sort-form .hp-form__field {
	margin: 0;
}

.vostok-market-results__toolbar {
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid #e1e9f2;
}

.vostok-market-results__sort {
	min-width: 240px;
}

.vostok-listing-rows {
	margin-top: 16px;
	gap: 0;
	border: 1px solid #d7e1ec;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
}

.vostok-list-row {
	grid-template-columns: minmax(0, 1.9fr) minmax(250px, .9fr) minmax(240px, 1fr);
	gap: 16px;
	padding: 16px 18px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: #fff;
	border-bottom: 1px solid #e1e9f1;
	transform: none !important;
}

.vostok-list-row:last-child {
	border-bottom: 0;
}

.vostok-list-row:nth-child(even) {
	background: #f8fbff;
}

.vostok-list-row:hover {
	background: #eef5fc;
	box-shadow: none;
	border-color: transparent;
}

.vostok-list-row__identity,
.vostok-list-row__economy,
.vostok-list-row__trust {
	gap: 10px;
}

.vostok-list-row__topline {
	justify-content: flex-start;
}

.vostok-list-row__title {
	font-size: 18px;
}

.vostok-list-row__specs,
.vostok-list-row__facts,
.vostok-list-row__trust-facts {
	gap: 6px;
}

.vostok-list-row__spec-pill,
.vostok-list-row__facts span,
.vostok-list-row__trust-facts span,
.vostok-market-active-filters__item {
	padding: 6px 10px;
	font-size: 11px;
}

.vostok-list-row__economy {
	padding: 14px;
	border-radius: 16px;
}

.vostok-list-row__price {
	font-size: 26px;
}

.vostok-list-row__economy-grid {
	gap: 8px;
}

.vostok-list-row__economy-item {
	padding: 10px;
	border-radius: 14px;
}

.vostok-list-row__company {
	font-size: 15px;
}

.vostok-list-row__guest-note {
	font-size: 12px;
	font-weight: 700;
	color: var(--v-text-muted);
}

@media (max-width: 1180px) {
	.vostok-market-board {
		grid-template-columns: 1fr;
	}

	.vostok-market-sidebar {
		position: static;
	}

	.vostok-market-filter {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-height: none;
		overflow: visible;
	}

	.vostok-market-filter__head,
	.vostok-market-filter__types,
	.vostok-market-filter__actions {
		grid-column: 1 / -1;
	}

	.vostok-list-row {
		grid-template-columns: 1fr;
	}

	.vostok-list-row__economy-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.vostok-market-hero--compact .vostok-market-hero__intro,
	.vostok-market-filter {
		grid-template-columns: 1fr;
	}

	.vostok-market-results__toolbar,
	.vostok-market-filter__head {
		display: grid;
	}

	.vostok-market-results__sort {
		min-width: 0;
	}

	.vostok-contact-block__guest-actions {
		width: 100%;
		display: grid;
	}

	.vostok-contact-block__guest-actions .vostok-pay-btn {
		width: 100%;
	}
}

/* ============================================================
   26. DENSE MARKET WORKSPACE
   ============================================================ */

.vostok-header__role-link {
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #d5e1ec;
}

.vostok-header__role-link:hover {
	background: #eef4fa;
	border-color: #9fb8d1;
}

.vostok-market-board {
	grid-template-columns: 1fr;
}

.vostok-market-sidebar--top,
.vostok-market-sidebar {
	position: static;
}

.vostok-market-filter {
	grid-template-columns: 180px repeat(6, minmax(0, 1fr));
	align-items: end;
	gap: 14px 16px;
	padding: 18px 20px;
	max-height: none;
	overflow: visible;
	border: 1px solid #d7e0ea;
	background: #fff;
	box-shadow: var(--v-shadow-sm);
}

.vostok-market-filter__head {
	grid-column: 1 / 3;
	align-self: start;
	padding-right: 10px;
}

.vostok-market-filter__head-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	align-items: center;
}

.vostok-market-filter__body[hidden] {
	display: none !important;
}

.vostok-market-filter__body:not([hidden]) {
	display: contents;
}

.vostok-market-filter__guides {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.vostok-market-filter__guide-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid #d5e1ec;
	background: #fff;
	font-size: 12px;
	font-weight: 700;
	color: #445364;
	text-decoration: none;
}

.vostok-market-filter__guide-link:hover {
	background: #f2f6fa;
	border-color: #9fb8d1;
	color: #12395f;
}

.vostok-market-mobile-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid #c9d9ea;
	border-radius: 999px;
	background: #fff;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .02em;
	color: #244b73;
	cursor: pointer;
	transition: background var(--v-transition), border-color var(--v-transition), color var(--v-transition);
}

.vostok-market-mobile-toggle:hover {
	background: #f3f8fd;
	border-color: #9fb8d1;
	color: #12395f;
}

.vostok-market-mobile-toggle::after {
	content: '+';
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
}

.vostok-market-mobile-toggle[aria-expanded="true"]::after {
	content: '-';
}

.vostok-market-guides__head-side {
	display: grid;
	gap: 10px;
	justify-items: end;
}

.vostok-market-guides {
	display: grid;
	gap: 18px;
	margin-top: 18px;
	padding: 22px;
	border-radius: 22px;
	border: 1px solid #d5e0ec;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	box-shadow: var(--v-shadow-sm);
}

.vostok-market-guides__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	flex-wrap: wrap;
}

.vostok-market-guides__eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--v-text-muted);
}

.vostok-market-guides__title {
	margin: 8px 0 0;
	font-size: 28px;
	line-height: 1.12;
	color: var(--v-text);
}

.vostok-market-guides__desc {
	max-width: 760px;
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--v-text-secondary);
}

.vostok-market-guides__microcopy {
	max-width: 260px;
	padding: 14px 16px;
	border-radius: 16px;
	background: #eff5fb;
	border: 1px solid #d6e2ef;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	color: #36597d;
}

.vostok-market-guides__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.vostok-market-guide-card {
	display: grid;
	gap: 14px;
	min-width: 0;
	padding: 20px;
	border-radius: 22px;
	border: 1px solid #d7e2ee;
	background: #fff;
	box-shadow: 0 10px 24px rgba(18, 57, 95, .06);
	scroll-margin-top: 110px;
}

.vostok-market-guide-card.is-cargo {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.vostok-market-guide-card.is-transport {
	background: linear-gradient(180deg, #ffffff 0%, #f7fcf7 100%);
}

.vostok-market-guide-card__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}

.vostok-market-guide-card__eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--v-text-muted);
}

.vostok-market-guide-card__title {
	margin: 8px 0 0;
	font-size: 24px;
	line-height: 1.15;
	color: var(--v-text);
}

.vostok-market-guide-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #edf4fb;
	border: 1px solid #d5e1ee;
	font-size: 12px;
	font-weight: 800;
	color: #33597d;
	white-space: nowrap;
}

.vostok-market-guide-card__intro {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--v-text-secondary);
}

.vostok-market-guide-card__steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	counter-reset: guide-step;
}

.vostok-market-guide-card__steps li {
	position: relative;
	padding: 12px 14px 12px 52px;
	border-radius: 16px;
	background: rgba(244, 248, 252, .92);
	border: 1px solid #dce7f2;
	font-size: 14px;
	line-height: 1.6;
	color: var(--v-text-secondary);
	counter-increment: guide-step;
}

.vostok-market-guide-card__steps li::before {
	content: counter(guide-step);
	position: absolute;
	left: 14px;
	top: 12px;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: var(--v-brand);
	font-size: 12px;
	font-weight: 800;
	line-height: 26px;
	text-align: center;
	color: #fff;
	box-shadow: 0 4px 10px rgba(15, 91, 168, .18);
}

.vostok-market-guide-card__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.vostok-market-guide-card__panel {
	min-width: 0;
	padding: 14px 16px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #dde7f2;
}

.vostok-market-guide-card__panel strong {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--v-text);
}

.vostok-market-guide-card__panel ul {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
	color: var(--v-text-secondary);
}

.vostok-market-guide-card__panel li {
	font-size: 13px;
	line-height: 1.55;
}

.vostok-market-guide-card__final {
	padding: 14px 16px;
	border-radius: 16px;
	background: linear-gradient(180deg, #eef5fd 0%, #e7f0fb 100%);
	border: 1px solid #d2dfed;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	color: #1d466f;
}

.vostok-market-filter__title {
	font-size: 20px;
}

.vostok-market-filter__types {
	grid-column: 1 / 2;
	grid-row: 2 / 4;
	padding-right: 10px;
	padding-bottom: 0;
	border-right: 1px solid #e3e9f0;
	border-bottom: 0;
}

.vostok-market-filter__actions {
	grid-column: 6 / -1;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: end;
	gap: 10px;
	margin-top: 0;
}

.vostok-market-filter__help {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: #677a8f;
}

.vostok-market-filter__actions .vostok-btn {
	width: auto;
	min-height: 44px;
	padding-inline: 18px;
	flex: 0 0 auto;
}

.vostok-market-results,
.vostok-route-intelligence {
	padding: 18px 20px;
	border-radius: 18px;
	background: #fff;
}

.vostok-market-results__head {
	align-items: center;
}

.vostok-market-results__title {
	font-size: 28px;
}

.vostok-market-results__desc {
	font-size: 14px;
	line-height: 1.55;
	max-width: 720px;
	color: #4f5f70;
}

.vostok-market-results__summary {
	max-width: 250px;
	padding: 12px 14px;
	border-radius: 14px;
	background: #f6f8fb;
}

.vostok-market-results__summary span {
	font-size: 12px;
	line-height: 1.45;
}

.vostok-listing-rows {
	margin-top: 14px;
	border-radius: 16px;
}

.vostok-list-row {
	grid-template-columns: minmax(0, 2.4fr) minmax(150px, .9fr) minmax(190px, .9fr);
	gap: 14px;
	padding: 12px 14px;
	align-items: center;
	background: #fff;
}

.vostok-list-row:nth-child(even) {
	background: #fbfcfe;
}

.vostok-list-row:hover {
	background: #f2f6fa;
}

.vostok-list-row__identity,
.vostok-list-row__economy,
.vostok-list-row__trust {
	gap: 8px;
}

.vostok-list-row__topline,
.vostok-list-row__specs,
.vostok-list-row__facts,
.vostok-list-row__trust-facts,
.vostok-list-row__actions {
	gap: 6px;
}

.vostok-list-row__title {
	font-size: 16px;
	line-height: 1.2;
}

.vostok-list-row__number,
.vostok-list-row__spec-pill,
.vostok-list-row__facts span,
.vostok-list-row__trust-facts span,
.vostok-market-active-filters__item {
	padding: 5px 9px;
	font-size: 11px;
	line-height: 1.2;
	background: #fff;
	color: #445364;
}

.vostok-list-row__economy {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.vostok-list-row__kpi-label {
	font-size: 10px;
	color: #778696;
}

.vostok-list-row__price {
	font-size: 18px;
	line-height: 1.1;
	color: #12395f;
}

.vostok-list-row__price-note {
	font-size: 12px;
	line-height: 1.35;
	color: #5f7080;
}

.vostok-list-row__trust {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.vostok-list-row__trust-head {
	grid-column: 1 / -1;
	gap: 8px;
	align-items: center;
}

.vostok-list-row__company {
	font-size: 15px;
	line-height: 1.2;
}

.vostok-list-row__company-meta {
	margin-top: 2px;
	font-size: 12px;
	line-height: 1.3;
	color: #677788;
}

.vostok-list-row__company-caption {
	margin-top: 2px;
	font-size: 11px;
	line-height: 1.35;
	color: #708194;
}

.vostok-list-row__actions {
	justify-content: flex-end;
	margin-top: 0;
	grid-column: 2 / 3;
	grid-row: 1 / span 2;
}

.vostok-list-row__open {
	min-height: 40px;
	padding: 0 18px;
	font-size: 13px;
	box-shadow: none;
	max-width: 220px;
}

.vostok-list-row__guest-note {
	display: none;
}

.vostok-contact-block {
	padding: 18px;
	background: #fff;
	border-left-width: 4px;
}

.vostok-contact-block__guest-note {
	font-size: 20px;
	color: #12395f;
}

@media (max-width: 1280px) {
	.vostok-market-filter {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.vostok-market-filter__head,
	.vostok-market-filter__types,
	.vostok-market-filter__actions {
		grid-column: 1 / -1;
	}

	.vostok-market-filter__types {
		border-right: 0;
		border-bottom: 1px solid #e3e9f0;
		padding-right: 0;
		padding-bottom: 10px;
	}

	.vostok-market-filter__actions {
		justify-content: start;
	}

	.vostok-market-filter__head-actions,
	.vostok-market-filter__guides {
		justify-content: flex-start;
	}
}

@media (max-width: 960px) {
	.vostok-list-row {
		grid-template-columns: 1fr;
	}

	.vostok-list-row__trust {
		grid-template-columns: 1fr;
	}

	.vostok-list-row__actions {
		grid-column: auto;
		grid-row: auto;
		justify-content: flex-start;
	}

	.vostok-market-results__summary {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.vostok-header--compact + .vostok-main {
		padding-top: 16px;
	}

	.vostok-search__row--meta {
		margin-top: 6px;
	}

	.vostok-search__field--compact {
		max-width: none;
	}

	.vostok-suggest-dropdown {
		max-height: min(40vh, 280px);
	}

	.vostok-market-filter {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.vostok-market-shell--route .vostok-market-filter__route-field {
		display: none;
	}

	.vostok-market-shell--route .vostok-market-filter__types {
		display: none;
	}

	.vostok-market-shell--route .vostok-route-intelligence__mobile-actions {
		display: block;
		margin-top: 12px;
	}

	.vostok-market-shell--route .vostok-route-intelligence__mobile-actions .vostok-btn {
		width: 100%;
	}

	.vostok-market-filter__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.vostok-market-mobile-toggle {
		display: inline-flex;
		width: 100%;
	}

	.vostok-market-filter__head {
		gap: 12px;
	}

	.vostok-market-filter__head-actions,
	.vostok-market-filter__guides {
		display: grid;
	}

	.vostok-market-filter__head-actions {
		gap: 8px;
	}

	.vostok-market-filter__head-actions .vostok-market-filter__reset {
		justify-self: start;
	}

	.vostok-market-filter.is-collapsed .vostok-market-filter__head-actions {
		margin-top: 0;
	}

	.vostok-market-filter.is-collapsed .vostok-market-filter__reset,
	.vostok-market-filter.is-collapsed .vostok-market-filter__guides,
	.vostok-market-guides.is-collapsed .vostok-market-guides__microcopy {
		display: none;
	}

	.vostok-market-filter__actions .vostok-btn {
		width: 100%;
	}

	.vostok-market-filter__guide-link {
		width: 100%;
	}

	.vostok-market-guides {
		padding: 18px;
		border-radius: 18px;
	}

	.vostok-market-guides__head {
		display: grid;
		grid-template-columns: 1fr;
	}

	.vostok-market-guides__head-side {
		justify-items: stretch;
	}

	.vostok-market-guides__grid,
	.vostok-market-guide-card__meta {
		grid-template-columns: 1fr;
	}

	.vostok-market-guides__microcopy {
		max-width: none;
	}

	.vostok-market-guides__title,
	.vostok-market-guide-card__title {
		font-size: 22px;
	}

	.vostok-market-guide-card {
		padding: 18px;
		border-radius: 18px;
	}

	.vostok-market-guide-card__top {
		display: grid;
	}

	.vostok-market-guide-card__badge {
		justify-self: start;
	}

	.vostok-market-guide-card__steps li {
		padding: 12px 12px 12px 48px;
	}

	.vostok-fixed-phone-display {
		padding: 10px 12px;
		border-radius: 12px;
	}

	.vostok-fixed-phone-display span {
		font-size: 15px;
		word-break: break-word;
	}

	.vostok-fixed-phone-display small {
		font-size: 11px;
	}

	.vostok-market-results__title {
		font-size: 22px;
	}

	.vostok-list-row {
		padding: 12px;
	}
}

.vostok-route-intelligence__mobile-actions {
	display: none;
}

.vostok-page-shell {
	max-width: 860px;
	margin: 0 auto;
	padding: 36px 0 8px;
}

.vostok-page-card {
	padding: 36px;
	border: 1px solid #dce7f2;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(15, 48, 82, .08);
}

.vostok-page-card__eyebrow {
	margin-bottom: 10px;
	color: #6c84a0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.vostok-page-card__title {
	margin: 0 0 18px;
	color: var(--v-text);
	font-size: clamp(30px, 5vw, 46px);
	line-height: 1.08;
}

.vostok-page-card__content {
	color: #34475a;
	font-size: 16px;
	line-height: 1.8;
}

.vostok-page-card__content h2,
.vostok-page-card__content h3 {
	margin: 26px 0 12px;
	color: var(--v-text);
}

.vostok-page-card__content p {
	margin: 0 0 14px;
}

.vostok-page-card__content ul {
	margin: 0 0 14px 18px;
	padding: 0;
}

.vostok-page-card__content strong {
	color: var(--v-text);
}

@media (max-width: 640px) {
	.vostok-page-shell {
		padding-top: 20px;
	}

	.vostok-page-card {
		padding: 24px 18px;
		border-radius: 22px;
	}
}
