/* Wleefa Single Language Button - Modern Style */
.wleefa-lang-switcher {
  font-family: 'Alyamama', serif;
  direction: rtl;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.wf-meta{
display: grid !important;
	grid-template-columns: 33% 33% 33% !important;
}
.wf-meta svg{
width: 30px
}
.wf-mark {
    font-size: 0 !important; /* hides the original text */
    width: 50px !important; /* adjust size */
    height: 50px !important;
    background-image: url('https://i0.wp.com/wleefa.com/wp-content/uploads/2026/05/logo-wleefa.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center;
    display: inline-block;
}
.wleefa-lang-link {
  position: relative;
  isolation: isolate;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none !important;
  color: #577CB2 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,247,228,0.74));
  border: 1px solid rgba(87, 124, 178, 0.16);
  box-shadow:
    0 10px 26px rgba(26, 35, 64, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.wleefa-lang-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.28), transparent 34%),
    linear-gradient(135deg, #577CB2 0%, #3e5e8a 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.wleefa-lang-link:hover {
  color: #FFF7E4 !important;
  transform: translateY(-2px);
  border-color: rgba(87, 124, 178, 0.28);
  box-shadow:
    0 14px 34px rgba(87, 124, 178, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.wleefa-lang-link:hover::before {
  opacity: 1;
}

.wleefa-lang-pulse {
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 50%;
  background: #E7AF73;
  box-shadow: 0 0 0 0 rgba(231, 175, 115, 0.45);
  animation: wleefaLangPulse 1.8s infinite;
}

.wleefa-lang-link:hover .wleefa-lang-pulse {
  background: #FFF7E4;
  animation: none;
  box-shadow: 0 0 0 5px rgba(255, 247, 228, 0.16);
}

.wleefa-lang-text {
  transform: translateY(1px);
  letter-spacing: 0.2px;
}

@keyframes wleefaLangPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 175, 115, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(231, 175, 115, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 175, 115, 0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .wleefa-lang-link {
    height: 38px;
    padding: 0 15px;
    gap: 8px;
    font-size: 12px;
  }

  .wleefa-lang-pulse {
    width: 8px;
    height: 8px;
    min-width: 8px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .wleefa-lang-link {
    height: 36px;
    padding: 0 13px;
    font-size: 11.5px;
  }
}