/* بطاقة تواصل واتساب — ثابتة، لا تختفي عند التمرير */
.site-whatsapp-float {
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  max-width: min(17.5rem, calc(100vw - 24px));
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration: none;
  text-align: right;
  direction: rtl;
  font-family: "Cairo", system-ui, sans-serif;
  color: #f8fafc;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.97) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(251, 191, 36, 0.38);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(251, 191, 36, 0.08) inset;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.site-whatsapp-float:hover {
  border-color: rgba(251, 191, 36, 0.65);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.48),
    0 0 20px rgba(251, 191, 36, 0.1);
  transform: translateX(-50%) translateY(-2px);
  color: #f8fafc;
}
.site-whatsapp-float__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.12);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.45);
}
.site-whatsapp-float__icon svg {
  width: 21px;
  height: 21px;
  color: #fbbf24;
  fill: currentColor;
}
.site-whatsapp-float__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fbbf24;
  margin-bottom: 1px;
}
.site-whatsapp-float__title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
}
.site-whatsapp-float__hint {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 500;
}
@media (min-width: 480px) {
  .site-whatsapp-float {
    left: auto;
    right: 16px;
    bottom: 12px;
    transform: none;
    max-width: 16.5rem;
  }
  .site-whatsapp-float:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 479px) {
  .site-whatsapp-float {
    bottom: 8px;
    padding: 8px 10px;
    gap: 8px;
  }
}
