.elementor .e-69ed6be-5f8d0cc{display:flex;}.elementor .e-3ba0919-5c842a1{display:flex;flex-direction:column-reverse;/* Container Box */
.custom-dropdown-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  font-family: inherit;
  direction: rtl;
  margin-bottom: 20px;
  user-select: none;
}

.custom-dropdown-selected {
  padding: 14px 20px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #444;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.custom-dropdown-selected::after {
  content: "▼";
  float: left;
  font-size: 12px;
  margin-top: 3px;
  color: #888;
  transition: transform 0.3s ease;
}

.custom-dropdown-container.open .custom-dropdown-selected {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.custom-dropdown-container.open .custom-dropdown-selected::after {
  transform: rotate(180deg);
}

/* Options Wrapper */
.custom-dropdown-options {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none !important;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

/* Single Item */
.custom-dropdown-options li {
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background-color: var(--bg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Open State */
.custom-dropdown-container.open .custom-dropdown-options {
  visibility: visible;
  pointer-events: auto;
}

.custom-dropdown-container.open .custom-dropdown-options li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Cascade Animation Delay */
.custom-dropdown-container.open .custom-dropdown-options li:nth-child(1) { transition-delay: 0.05s; }
.custom-dropdown-container.open .custom-dropdown-options li:nth-child(2) { transition-delay: 0.10s; }
.custom-dropdown-container.open .custom-dropdown-options li:nth-child(3) { transition-delay: 0.15s; }
.custom-dropdown-container.open .custom-dropdown-options li:nth-child(4) { transition-delay: 0.20s; }
.custom-dropdown-container.open .custom-dropdown-options li:nth-child(5) { transition-delay: 0.25s; }
.custom-dropdown-container.open .custom-dropdown-options li:nth-child(6) { transition-delay: 0.30s; }

/* Hover Effect */
.custom-dropdown-options li:hover {
  filter: brightness(0.95);
  transform: translateX(-5px);
}

    // آرایه رنگ‌های نود (Nude) برای بک‌گراند
  $bg_colors = ['#FDFBF7', '#F4EFEA', '#EAE0D5', '#EADDD7', '#DCD3CB'];
  
  // آرایه رنگ‌های کمی تیره‌تر (برای نوار کناری هر گزینه)
  $border_colors = ['#D9C5B2', '#CBAFA1', '#B5988A', '#A3877A', '#8F7365'];\n}