/* Language Switcher - Turkey style */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher__current {
  background: white;
  border: 2px solid #1e6b3a;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1e6b3a;
  transition: all 0.2s ease;
}

.lang-switcher__current:hover {
  background: #f0f9f4;
  border-color: #2f855a;
}

.lang-switcher__label {
  font-weight: 600;
}

.lang-switcher__icon {
  transition: transform 0.2s ease;
}

.lang-switcher:hover .lang-switcher__icon,
.lang-switcher:focus-within .lang-switcher__icon {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 2px solid #1e6b3a;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(30, 107, 58, 0.15);
  margin-top: 0;
  list-style: none;
  min-width: 180px;
  z-index: 100;
  padding: 4px 0;
  overflow: visible;
}

.lang-switcher__menu li {
  margin: 0;
}

.lang-switcher__menu li a {
  display: block;
  padding: 12px 16px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid #e9ecef;
  background: white;
}

.lang-switcher__menu li:last-child a {
  border-bottom: none;
}

.lang-switcher__menu li a:hover {
  background: #f0f9f4;
  color: #1e6b3a;
  padding-left: 20px;
}

.lang-switcher__menu li a.active {
  background: #1e6b3a;
  color: white;
  font-weight: 700;
}

.lang-switcher__menu li a.active:hover {
  background: #2f855a;
  padding-left: 16px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
}

#mob-nav-btn {
  display: none;
  float: right;
  margin-top: 30px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background: none;
}

#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu-toggle:checked ~ #mobile-nav {
  right: 0;
  display: block;
}

.mobile-lang-switcher {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e9ecef;
}

.mobile-lang-item {
  margin-bottom: 10px;
}

.mobile-lang-item a {
  display: block;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-lang-item a:hover {
  background: #e9ecef;
  color: #1e6b3a;
}

.mobile-lang-item.active a {
  background: #1e6b3a;
  color: white;
  font-weight: 700;
}

#close-mob-nav {
  cursor: pointer;
  padding: 10px;
  float: right;
}

@media (max-width: 768px) {
  .lang-switcher {
    display: none !important;
  }

  #mob-nav-btn {
    display: block;
  }
}
