:root {
  /* Design System Tokens */
  --primary-50: #e6f7eb;
  --primary-100: #b3e6c8;
  --primary-200: #80d4a5;
  --primary-300: #4dc382;
  --primary-400: #1ab15f;
  --primary-500: #00b140;
  --primary-600: #009935;
  --primary-700: #00802a;
  --primary-800: #006620;
  --primary-900: #004d15;
  
  --secondary-50: #f0f9ff;
  --secondary-100: #e0f2fe;
  --secondary-200: #bae6fd;
  --secondary-300: #7dd3fc;
  --secondary-400: #38bdf8;
  --secondary-500: #0ea5e9;
  --secondary-600: #0284c7;
  --secondary-700: #0369a1;
  --secondary-800: #075985;
  --secondary-900: #0c4a6e;
  
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  
  --success-500: #10b981;
  --warning-500: #f59e0b;
  --error-500: #ef4444;
  --info-500: #3b82f6;
  
  /* Semantic Tokens */
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-tertiary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.45);
  
  --border-light: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-heavy: rgba(255, 255, 255, 0.2);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Mono', 'Roboto Mono', monospace;
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
  --z-max: 9999;
}

/* ==================================================== */
/* CSS RESET & BASE STYLES                             */
/* ==================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  text-align:center;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 177, 64, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(10, 94, 42, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-300));
  font-weight: 900;
  line-height: 1.2;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-4);
  text-align:center;
  background-clip: text;


}

h1 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align:center;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  display: inline-block;
  margin-top:3rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), transparent);
  border-radius: var(--radius-full);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

a {
  color: var(--primary-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-300);
}

strong, b {
  font-weight: 600;
  color: var(--text-primary);
}

small {
  font-size: 0.875em;
  color: var(--text-tertiary);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Lists */
ul, ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}

/* Forms */
input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only {
  @extend .visually-hidden;
}
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-4);
  overflow-x: hidden;
}
.fixed-container {
  width: 100%;
  overflow-x: hidden;
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* ==================================================== */
/* HEADER & NAVIGATION                                  */
/* ==================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  transition: transform var(--transition-slow), background var(--transition-slow);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 var(--space-4);
  background:black;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.9;
}
.logo img {
    width: 56px;
    height: 56px;
    border-radius: 100px;
    border: 2px solid white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  color:white;
}

.nav-toggle:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color:white;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  transition: all var(--transition-fast);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-link i {
  font-size: 1.25rem;
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.language-switcher-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.language-switcher-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.language-switcher-btn[aria-expanded="true"] {
  background: var(--bg-card-hover);
  border-color: var(--primary-500);
}

.language-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.language-code {
  font-size: 0.875rem;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  min-width: 180px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
}

.language-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.language-option:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.language-check {
  color: var(--primary-500);
  opacity: 0;
}

.language-option.active .language-check {
  opacity: 1;
}
/* Parent containers must not clip dropdown */
.premium-transfer-component,
.transfer-row,
.field {
  position: relative;
  overflow: visible !important;
  z-index: 10;
  margin-top:1rem;
}
.field input {
    width: 100%;
    height: 40px;
    text-align: start;
    background: var(--bg-primary, #111);
    border: 1px solid green;
    border-radius: var(--radius-lg, 12px);
    color: white;
    font-size: 20px;
    font-weight: 900;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 1rem 4rem;
}

.field input:focus {
  outline: none;
  border-color: var(--primary-500, #00b140);
  box-shadow: 0 0 0 4px rgba(0, 177, 64, 0.15);
}

/* Dropdown container - FIXED POSITION */
.autocomplete-dropdown {
  position: relative !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  max-height: 320px;
  overflow-y: auto;
  background: var(--bg-secondary, #1a1a1a) !important;
  border: 1px solid var(--border-medium, #444) !important;
  border-radius: var(--radius-lg, 12px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 
              0 6px 20px rgba(0, 0, 0, 0.2) !important;
  z-index: 99999999999999 !important;
  display: none;
  margin-top: 4px;
  padding: 8px 0;
}

.autocomplete-dropdown.show {
  display: block !important;
  animation: dropdownFadeIn 0.2s ease-out;
}

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

/* Autocomplete items - DARK THEME */
.autocomplete-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  cursor: pointer;
  color: var(--text-primary, #fff) !important;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 900;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 9999 !important;

}

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

.autocomplete-item:hover,
.autocomplete-item:focus,
.autocomplete-item.active {
  background: var(--bg-card, rgba(255, 255, 255, 0.08)) !important;
  color: var(--text-primary, #fff) !important;
  outline: none;
}

/* Item content */
.autocomplete-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: inherit !important;
}

.item-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.item-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-400, #00b140);
  flex-shrink: 0;
  opacity: 0.8;
}

.item-text {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  color: inherit !important;
}

.item-secondary {
  font-size: 0.875rem;
  color: var(--text-tertiary, #aaa);
  margin-left: auto;
  flex-shrink: 0;
  font-weight: normal;
}

/* Loading state */
.autocomplete-loading {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary, #aaa) !important;
}

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-light, #333);
  border-top-color: var(--primary-500, #00b140);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

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

/* No results */
.autocomplete-no-results {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary, #aaa) !important;
}

/* Clear button */
.clear-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  color: var(--text-tertiary, #777);
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-button:hover {
  color: var(--text-secondary, #fff);
}

/* Search Button */
.search-button {
  height: 52px;
  padding: 0 24px;
  background: var(--primary-500);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 120px;
  align-self: flex-end;
}

.search-button:hover {
  background: var(--primary-600);
}

@media (max-width: 768px) {
  .search-button {
    width: 100%;
    margin-top: 8px;
    align-self: stretch;
  }
}

/* Debug helper - remove in production */
.debug-dropdown {
  border: 2px solid red !important;
}

.debug-dropdown.show {
  border: 2px solid green !important;
}

.route-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: start;
    margin-top: rem;
    padding: 1rem;
    background: black;
    border-radius: 16px;
    border: 1px solid white;
}

@media (max-width: 640px) {
  .route-info {
    flex-direction: column;
    gap: 1rem;
  }
}

.route-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  color:white;
}

.route-info-item svg {
  width: 24px;
  height: 24px;
  color: white;
}

.route-info-item span {
  color: var(--text-secondary);
  color:white;
}

.route-info-item strong {
  color: white;
  font-weight: 800;
}
* {
  box-sizing: border-box;
  max-width: 100vw !important;
}

html, body {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}

img, video, iframe, table, div, section, article {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* ==================================================== */
/* CARS GRID & FILTERS                                  */
/* ==================================================== */

#vehicle-options-title {
  text-align: center;
  margin: var(--space-12) 0 var(--space-8);
}

.passenger-filter {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.passenger-btn {
  padding: var(--space-3) var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-weight: 900;
  transition: all var(--transition-fast);
}

.passenger-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.passenger-btn.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  border-color: var(--primary-500);
  color: white;
  box-shadow: var(--shadow-md);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (min-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }
}

.car-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-500);
}

.car-card.hidden {
  display: none;
}

.car-card.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.car-card.slide-in {
  animation: slideIn 0.4s ease forwards;
}

.car-media {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.car-media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
  width:100%;
  height:100%;
}

.car-img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  transition: transform var(--transition-slow);
  background-color: var(--bg-tertiary);
}

.car-media:hover .car-img {
  transform: scale(1.05);
}

.car-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background:black;
}

.car-header {
  justify-content: space-between;
  align-items: flex-start;
}

.car-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: linear-gradient(135deg, var(--primary-900), var(--primary-300));
  margin: 0;
}

.car-meta {
  font-size: 0.875rem;
  color: white;
}

.car-route {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

.car-route span {
  color: var(--text-primary);
  font-weight: 500;
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  list-style: none;
  padding: 0;
}

.car-features li {
  padding: var(--space-1) var(--space-3);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.car-actions {
  margin-top: auto;
  display: flex;
  gap: var(--space-3);
}

.car-actions .btn {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  text-align: center;
  font-weight: 900;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 1.35rem;
  padding:20px;
}

.car-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: white;
  border: 1px solid white;
}

.car-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.car-actions .btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.car-actions .btn-ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

/* Pagination */
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pagination button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.pagination button:hover:not([disabled]) {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.pagination button.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  border-color: var(--primary-500);
  color: white;
}

.pagination button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-ellipsis {
  color: var(--text-muted);
  padding: 0 var(--space-2);
}

.pagination-info {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

/* Photo Modal */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  padding: var(--space-4);
}

.photo-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.photo-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.photo-modal-content img {
  width: 100%;
  height: auto;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.photo-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.photo-modal-close:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
}

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

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

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


/* ==================================================== */
/* ROUTE SUMMARY                                        */
/* ==================================================== */

.unified-route-summary {
  max-width: 900px;
  margin: var(--space-16) auto;
  padding: 0 var(--space-4);
}

.route-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.route-stat {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-500);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.route-details {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-8);
}

.route-details h2 {
  margin-bottom: var(--space-6);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.feature-item {
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.feature-item strong {
  color: var(--primary-400);
  margin-bottom: var(--space-2);
  display: block;
}

/* ==================================================== */
/* FOOTER                                               */
/* ==================================================== */

.site-footer {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-24);
  padding-top: var(--space-12);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), transparent);
  border-radius: var(--radius-full);
}

.logo-column .logo {
  margin-bottom: var(--space-4);
}

.company-desc {
  color: var(--text-tertiary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
  border-color: var(--primary-500);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--primary-500);
}

.contact-details h5 {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-1);
}

.contact-details a,
.contact-details p {
  color: var(--text-primary);
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--text-secondary);
  padding: var(--space-1) 0;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-400);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: var(--space-8) 0;
  text-align: center;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.payment-badge {
  padding: var(--space-2) var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.copyright {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ==================================================== */
/* FLOATING ACTION BUTTONS                              */
/* ==================================================== */

#whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-fixed);
  transition: all var(--transition-fast);
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}

#whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fixed);
  transition: all var(--transition-fast);
  opacity: 0;
  visibility: hidden;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--bg-card);
  border-color: var(--primary-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    width:10vw !important;
    margin-left:9rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0; /* შეასწორეთ: 0 (ნაცვლად 60-ის) */
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-fast);
  }
  
  .nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index:999999999999999999999;
  }
}
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    justify-content: space-between;
    color:white;
  }
  
  .language-switcher {
    width: 100%;
  }
  
  .language-switcher-btn {
    width: 100%;
    justify-content: space-between;
  }
  
  .language-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid var(--border-light);
    margin-top: var(--space-2);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .language-switcher-btn[aria-expanded="true"] + .language-dropdown {
    opacity: 1;
    height: auto;
    padding: var(--space-2);
  }
  
  .geo-track {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .geo-destination-group {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: var(--space-4);
  }
  
  .transfer-row {
    padding: var(--space-4);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .btn-submit {
    min-width: 100%;
  }
  
  .locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  
  #whatsapp-button {
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
  
  #back-to-top {
    bottom: 15px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .container,
  .premium-transfer-component,
  .geo-breadcrumb,
  .transfers-container,
  .unified-route-summary,
  .faq {
    padding: 0 var(--space-3);
  }
  
  .header-inner {
    height: 64px;
    padding: 0 var(--space-3);
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .geo-track {
    padding: var(--space-3);
  }
  
  .transfer-title {
    font-size: 1.5rem;
    margin: var(--space-8) auto var(--space-6);
  }
  
  .route-info {
    flex-direction: column;
    padding: 0.4rem;
    gap: 0.4rem;
  }
  
  .cars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .car-body {
    padding: var(--space-4);
    background:transparent;
  }
  
  .car-actions {
    flex-direction: column;
  }
  
  .ptf-main {
    padding: var(--space-4);
    background:black;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  #whatsapp-button {
    bottom: 70px;
    right: 15px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  
  #back-to-top {
    bottom: 10px;
    right: 15px;
    width: 46px;
    height: 46px;
  }
}

/* ==================================================== */
/* PRINT STYLES                                         */
/* ==================================================== */

@media print {
  .site-header,
  .nav-toggle,
  .language-switcher,
  .car-actions,
  .photo-modal,
  #whatsapp-button,
  #back-to-top,
  .site-footer {
    display: none !important;
  }
  a {
    color: black !important;
    text-decoration: underline !important;
  }
  
  .car-card {
    break-inside: avoid;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
}

/* ==================================================== */
/* DARK MODE ENHANCEMENTS                               */
/* ==================================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-tertiary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.45);
    
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-heavy: rgba(255, 255, 255, 0.2);
  }
  
  body::before {
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 177, 64, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(10, 94, 42, 0.03) 0%, transparent 50%);
          font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  }
}

/* ==================================================== */
/* HIGH CONTRAST MODE                                   */
/* ==================================================== */

@media (prefers-contrast: high) {
  :root {
    --primary-500: #00ff00;
    --primary-600: #00cc00;
    --primary-700: #009900;
    
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #999999;
    
    --border-light: #ffffff;
    --border-medium: #cccccc;
    --border-heavy: #999999;
  }
  
  a {
    text-decoration: underline;
  }
  
  .nav-link:hover,
  .language-option:hover,
  .autocomplete-item:hover {
    outline: 2px solid var(--primary-500);
  }
}

/* ==================================================== */
/* REDUCED MOTION                                       */
/* ==================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  #whatsapp-button,
  .car-card:hover,
  .nav-link:hover,
  .btn:hover,
  .transfer-link:hover {
    transform: none !important;
  }
}

/* ==================================================== */
/* PERFORMANCE OPTIMIZATIONS                            */
/* ==================================================== */

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .language-dropdown,
  .autocomplete-dropdown,
  .car-card,
  .ptf-main,
  .faq-item,
  .transfer-link,
  .route-summary-grid,
  .feature-item {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ==================================================== */
/* LOADING STATES                                       */
/* ==================================================== */

.loading {
  position: relative;
  pointer-events: none;
  user-select: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid var(--border-light);
  border-top-color: var(--primary-500);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
}

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

/* ==================================================== */
/* CUSTOM SCROLLBAR                                     */
/* ==================================================== */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--neutral-600);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-500);
}

/* ==================================================== */
/* ACCESSIBILITY FOCUS STATES                           */
/* ==================================================== */

:focus-visible {
  outline: 3px solid var(--primary-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-500);
  color: white;
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: var(--z-max);
}

.skip-to-main:focus {
  top: 0;
}

/* ==================================================== */
/* FALLBACKS & BROWSER SUPPORT                          */
/* ==================================================== */

@supports not (backdrop-filter: blur(10px)) {
  .site-header {
    background: var(--bg-secondary);
  }
}

@supports not (gap: 1rem) {
  .nav-menu {
    margin: 0 -0.5rem;
  }
  
  .nav-item {
    margin: 0 0.5rem;
  }
}

/* ==================================================== */
/* FINAL OPTIMIZATIONS                                  */
/* ==================================================== */

* {
  -webkit-tap-highlight-color: transparent;
}

img {
  content-visibility: auto;
}

@media (hover: hover) and (pointer: fine) {
  .car-card:hover .car-img {
    transform: scale(1.05);
  }
}

/* ==================================================== */
/* END OF MASTER STYLESHEET                             */
/* ==================================================== */

</style>
<style>
/* ==================================================== */
/* HORIZONTAL BREADCRUMB - MOBILE OPTIMIZED            */
/* ==================================================== */

.geo-breadcrumb.horizontal {
  --breadcrumb-height: 44px;
  --scroll-indicator-width: 40px;
  --scroll-indicator-color: rgba(0, 177, 64, 0.2);
  
  position: relative;
  width: 100%;
  height: var(--breadcrumb-height);
  min-height: var(--breadcrumb-height);
  max-height: var(--breadcrumb-height);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  margin: 0.5rem 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-indicator-color) transparent;
  
  /* Smooth scrolling for mobile */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none;
}

.geo-breadcrumb.horizontal::-webkit-scrollbar {
  display: none;
}

/* Visual indicator that there's more content */
.geo-breadcrumb.horizontal::before,
.geo-breadcrumb.horizontal::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--scroll-indicator-width);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.geo-breadcrumb.horizontal::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.geo-breadcrumb.horizontal::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

.geo-breadcrumb.horizontal.scrollable-left::before {
  opacity: 1;
}

.geo-breadcrumb.horizontal.scrollable-right::after {
  opacity: 1;
}

/* Horizontal track */
.geo-horizontal-track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  gap: 4px;
  min-width: min-content;
}

/* Connection lines between items */
.geo-horizontal-connection {
  width: 16px;
  height: 2px;
  min-width: 16px;
  background: linear-gradient(to right, 
    rgba(0, 177, 64, 0.4),
    rgba(0, 177, 64, 0.2)
  );
  margin: 0 2px;
  position: relative;
  flex-shrink: 0;
}

.geo-horizontal-connection::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: rgba(0, 177, 64, 0.1);
  border-radius: 4px;
  z-index: -1;
}

/* Nodes for horizontal layout */
.geo-node.horizontal {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  height: 32px;
  max-height: 32px;
  min-width: min-content;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.geo-node.horizontal:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 177, 64, 0.3);
  transform: translateY(-1px);
}

.geo-node.horizontal.active {
  background: linear-gradient(135deg, 
    rgba(0, 177, 64, 0.15), 
    rgba(0, 177, 64, 0.05)
  );
  border-color: rgba(0, 177, 64, 0.4);
  box-shadow: 0 2px 8px rgba(0, 177, 64, 0.1);
}

/* Icons for horizontal breadcrumb */
.geo-icon.horizontal {
  width: 19px;
  height: 19px;
  min-width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: white;
  flex-shrink: 0;
}

/* Labels */
.geo-label.horizontal {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.geo-node.horizontal.active .geo-label.horizontal {
  color: #fff;
  font-weight: 600;
}

/* Arrow indicator for route */
.geo-route-connector.horizontal {
  width: 24px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  flex-shrink: 0;
}

.geo-arrow.horizontal {
  width: 100%;
  height: 100%;
  color: rgba(0, 177, 64, 0.5);
}

.geo-arrow.horizontal svg {
  width: 100%;
  height: 100%;
}

/* Destination group for horizontal layout */
.geo-horizontal-destination-group {
  display: inline-flex;
  align-items: center;
  height: 100%;
  gap: 4px;
}

/* Home node special styling */
.geo-node.horizontal.geo-home {
  padding: 6px;
  min-width: 32px;
  justify-content: center;
}

.geo-node.horizontal.geo-home .geo-label.horizontal {
  display: none;
}

.geo-node.horizontal.geo-home .geo-icon.horizontal {
  margin-right: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .geo-breadcrumb.horizontal {
    --breadcrumb-height: 40px;
  }
  
  .geo-node.horizontal {
    padding: 5px 8px;
    height: 28px;
    max-height: 28px;
  }
  
  .geo-label.horizontal {
    font-size: 12px;
    max-width: 120px;
  }
  
  .geo-horizontal-connection {
    width: 12px;
    margin: 0 1px;
  }
  
  /* Better touch scrolling on mobile */
  .geo-breadcrumb.horizontal {
    scroll-snap-type: x mandatory;
  }
  
  .geo-node.horizontal {
    scroll-snap-align: start;
  }
  
  /* Show text on home only on hover/tap */
  .geo-node.horizontal.geo-home .geo-label.horizontal {
    display: none;
  }
  
  .geo-node.horizontal.geo-home:active .geo-label.horizontal {
    display: inline;
    margin-left: 4px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .geo-breadcrumb.horizontal {
    --breadcrumb-height: 36px;
  }
  
  .geo-node.horizontal {
    padding: 4px 6px;
    height: 26px;
    max-height: 26px;
  }
  
  .geo-icon.horizontal {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
  
  .geo-label.horizontal {
    font-size: 11px;
    max-width: 100px;
  }
  
  .geo-horizontal-connection {
    width: 8px;
  }
  
  .geo-route-connector.horizontal {
    width: 20px;
  }
}

/* Animation for scroll indicator */
@keyframes pulse-horizontal {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.geo-breadcrumb.horizontal.scrollable-right .geo-horizontal-connection:last-child {
  animation: pulse-horizontal 2s infinite;
}

/* Compact mode for minimal space */
.geo-breadcrumb.horizontal.compact {
  --breadcrumb-height: 36px;
  margin: 0.25rem 0 0.5rem;
}

.geo-breadcrumb.horizontal.compact .geo-node.horizontal {
  padding: 4px 6px;
  height: 24px;
  max-height: 24px;
}

.geo-breadcrumb.horizontal.compact .geo-label.horizontal {
  font-size: 11px;
  max-width: 80px;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .geo-node.horizontal:active {
    background: rgba(0, 177, 64, 0.1);
    transform: scale(0.95);
  }
  
  /* Larger touch targets on mobile */
  .geo-node.horizontal {
    min-height: 44px;
  }
}

/* Ensure breadcrumb doesn't break layout */
.geo-breadcrumb.horizontal {
  box-sizing: border-box;
  contain: content;
}

/* Prevent text selection during scroll */
.geo-breadcrumb.horizontal {
  user-select: none;
  -webkit-user-select: none;
}

.geo-breadcrumb.horizontal * {
  user-select: none;
  -webkit-user-select: none;
}

.geo-breadcrumb.horizontal .geo-node.horizontal {
  user-select: auto;
  -webkit-user-select: auto;
}