/* --- أساسيات المنيو --- */
.dropdown-menu.custom-menu {
  position: absolute;
  top: 110%; /* شوي تحت الزر */
  right: 0;
  min-width: 240px;
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  z-index: 1050;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

/* ظهور المنيو */
.menu-wrapper.open .dropdown-menu.custom-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* روابط المنيو */
.dropdown-menu.custom-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu.custom-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: #344050;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
  border-radius: 8px;
  cursor: pointer;
}

/* أيقونات داخل الروابط */
.dropdown-menu.custom-menu li a i {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #7b8794;
  transition: color 0.3s ease;
}

/* تفاعل الماوس */
.dropdown-menu.custom-menu li a:hover,
.dropdown-menu.custom-menu li a:focus {
  background-color: #f9fafe;
  color: #1a73e8;
}

.dropdown-menu.custom-menu li a:hover i,
.dropdown-menu.custom-menu li a:focus i {
  color: #1a73e8;
}

/* الخط الفاصل */
.dropdown-divider {
  border-top: 1px solid #e2e8f0;
  margin: 8px 0;
}

/* زر تغيير اللغة */
.menu-lang-toggle {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.menu-lang-toggle .lang-toggle {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #344050;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background-color 0.25s ease;
}

.menu-lang-toggle .lang-toggle:hover {
  background-color: #e1e7f9;
}

/* --- استجابة الهواتف --- */
@media (max-width: 576px) {
  .dropdown-menu.custom-menu {
    min-width: 200px;
    right: 0;
    left: auto;
    padding: 8px 0;
  }
  .dropdown-menu.custom-menu li a {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .dropdown-menu.custom-menu li a i {
    font-size: 1.1rem;
  }
}

.menu-lang-toggle button.lang-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 5px;
}
