.wd-delivery-city-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  direction: rtl;
}

.wd-delivery-city-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent !important;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 13px;
  color: #1c2733;
  border-radius: 6px;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.wd-delivery-city-trigger:hover {
  background: transparent !important;
}

.wd-delivery-city-label {
  color: #6b7a8d;
  font-weight: 400;
}

.wd-delivery-city-current {
  font-weight: 700;
  color: #009689;
}

.wd-delivery-city-trigger svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.wd-delivery-city-trigger.is-open svg {
  transform: rotate(180deg);
}

.wd-delivery-city-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 99999 !important; /* رفع الـ z-index ليظهر فوق قوائم الموبايل الخاصة بـ Woodmart */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.wd-delivery-city-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wd-delivery-city-list {
  list-style: none;
  margin: 0;
  padding: 6px;
}

.wd-delivery-city-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: right;
  padding: 9px 12px;
  font-size: 14px;
  color: #344054;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.wd-delivery-city-item:hover {
  background: #f9fafb;
  color: #101828;
}

.wd-delivery-city-item.is-active {
  background: #f0fdfa;
  color: #009689;
  font-weight: 700;
}

.wd-delivery-city-item svg {
  flex-shrink: 0;
  margin-inline-start: 6px;
}

@media (max-width: 767px) {
  .wd-delivery-city-dropdown {
    right: auto;
    left: 0;
    min-width: 180px;
  }
}