/* Z-Index System */
/* Tüm z-index değerleri bu sisteme göre düzenlenmelidir */

:root {
  /* Temel Katmanlar */
  --z-below: -1;
  --z-base: 0;
  --z-above: 1;
  
  /* İçerik Katmanları */
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-floating: 40;
  
  /* Overlay Katmanları */
  --z-overlay: 100;
  --z-modal: 200;
  --z-popup: 300;
  
  /* Sistem Katmanları */
  --z-notification: 400;
  --z-tooltip: 500;
  --z-maximum: 999;
}

/* Z-Index Atamaları */

/* Headers ve Navigation */
.header,
.main-header,
.getyourguide-header {
  z-index: var(--z-fixed) !important;
}


/* Dropdowns ve Menus */
.language-dropdown,
.currency-dropdown,
.selector-dropdown {
  z-index: var(--z-overlay) !important;
}

.mobile-nav-overlay {
  z-index: var(--z-modal) !important;
}

.mobile-nav-menu {
  z-index: calc(var(--z-modal) + 1) !important;
}

/* Interactive Elements */
.chatbot-toggle-btn {
  z-index: calc(var(--z-fixed) + 2) !important;
}

.chatbot-widget {
  z-index: var(--z-popup) !important;
}

.scroll-to-top,
.scroll-up-button {
  z-index: var(--z-sticky) !important;
}

/* Modals ve Popups */
.gallery-modal,
.tour-modal,
.booking-modal {
  z-index: var(--z-modal) !important;
}

/* Notifications */
.notification,
.alert,
.toast {
  z-index: var(--z-notification) !important;
}

/* Premium Buttons */
.premium-buttons-container {
  z-index: var(--z-sticky) !important;
}

/* WhatsApp Widget */
.whatsapp-widget,
.whatsapp-button {
  z-index: calc(var(--z-fixed) + 3) !important;
}