/* ============================================================================
 * LGMC Switcher — Soft Micro Pill (Same on Desktop & Mobile)
 * - UI only (no header positioning)
 * - Always shows: "USD — دولار أمريكي"
 * - Text stays black, no color change on click
 * ============================================================================ */

.lgmc-switcher{
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* نعرض النص في كل الشاشات */
.lgmc-switcher-text{
  display: inline-block;
  font-size: 10px;     /* صغير جدًا */
  font-weight: 800;
  line-height: 1;
  color: #111;         /* أسود ثابت */
  white-space: nowrap;
}

/* نخفي الرمز (إذا تبغاه رجّعه) */
.lgmc-switcher-symbol{ display: none; }

.lgmc-switcher-icon{
  height: 20px;                 /* أصغر بكثير */
  padding: 0 8px;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-weight: 800;
  cursor: pointer;
  user-select: none;

  background: #f8fafc;
  color: #111;                  /* نص أسود */
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);

  transition: background .12s ease, border-color .12s ease, box-shadow .12s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Hover خفيف جدًا بدون تغيير لون النص */
.lgmc-switcher-icon:hover{
  background: #f3f4f6;
  border-color: #d1d5db;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.lgmc-switcher-icon:active{
  background: #eef2f7;
}

/* منع أي ستايلات متصفح تغيّر لون النص */
.lgmc-switcher-icon,
.lgmc-switcher-icon:visited,
.lgmc-switcher-icon:hover,
.lgmc-switcher-icon:active{
  color: #111;
}

.lgmc-switcher-icon:focus{ outline: none; }
.lgmc-switcher-icon:focus-visible{
  outline: 2px solid rgba(17,17,17,.25);
  outline-offset: 2px;
}

.lgmc-switcher-caret{
  font-size: 9px;
  opacity: .6;
  transform: translateY(-1px);
  color: #111; /* ثابت */
}

/* ============================================================================
 * Dropdown
 * ============================================================================ */
.lgmc-switcher-list{
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-start: 0;
  inset-inline-end: 0;

  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 6px;
  list-style: none;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);

  z-index: 99999;
  display: none;
}

.lgmc-switcher.is-open .lgmc-switcher-list{
  display: block;
}

.lgmc-switcher-list a{
  display: block;
  padding: 7px 10px;        /* أصغر شوي */
  border-radius: 10px;

  font-size: 10px;          /* نفس حجم الزر */
  font-weight: 800;         /* قريب من الزر */
  line-height: 1;           /* يمنع تمدد ارتفاع السطر */
  color: #111;
  text-decoration: none;
  white-space: nowrap;

  transition: background .12s ease;
}


.lgmc-switcher-list a:hover{
  background: #f3f4f6;
}

/* ============================================================================
 * Rate limit
 * ============================================================================ */
.lgmc-switcher[data-limited="1"] .lgmc-switcher-icon{
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
}
/* Hard lock: prevent theme/plugin overrides after currency switch */
.lgmc-switcher-icon{
  height: 20px !important;
  padding: 0 8px !important;
  font-size: 10px !important;
  line-height: 1 !important;
}
.lgmc-switcher-text{
  font-size: 10px !important;
  line-height: 1 !important;
}
.lgmc-switcher-caret{
  font-size: 9px !important;
  line-height: 1 !important;
}
