.mobile-header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 22px;
  color: #333;
}

.logo {
  display: flex;
  align-items: center;  /* dikeyde ortala */
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 19px;
  width: auto;
}
.icons a {
  color: #333;
  font-size: 20px;
  padding: 8px;
}

.slide-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 20px rgba(0,0,0,0.15);
  padding: 0;
  transition: left 0.3s ease;
  z-index: 1001;
}

.slide-menu.active {
  left: 0;
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f5f5f5;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.slide-overlay.active {
  display: block;
}

.mobile-menu {
  padding: 60px 0 20px;
  list-style: none;
  margin: 0;
}

.mobile-menu li {
  margin: 0 16px 6px;
}

.mobile-menu li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-menu li a:hover {
  background: #f8f8f8;
  color: #f26522;
}
