/* Extracted from functions.php on 2026-06-10 (Phase 5: enqueue instead of inline). */
.lang-switcher {position: relative; display: inline-block;}
    .lang-switcher button { background: none; border: none; cursor: pointer; font-size: 22px; height: 10px;}
    .lang-menu {
      position: absolute; top: 33.8px;
      background: #fff; box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      opacity: 0; transform: translateY(-10px);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      min-width: 120px; z-index: 100;
    }
		html[lang="en-US"] .lang-menu{
			right: -10px;
		}
		html[lang="ar"] .lang-menu{
			left: -10px;
		}
		.lang-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .lang-menu > div {
      padding: 12px; text-align: center; font-weight: 600;
      cursor: pointer; border-bottom: 1px solid #eee; color: #252163;
    }
    .lang-menu > div:last-child { border-bottom: none; }
