/* استایل دکمه شناور */
.afc-floating-contact {
  position: fixed;
  bottom: 60px !important;
  z-index: 9999;
}
.afc-floating-contact.right {
  right: 20px;
}
.afc-floating-contact.left {
  left: 20px;
}
.afc-floating-contact .afc-icon {
  width: 55px !important;   /* به‌جای عرض قبلی (مثلاً 50px) */
  height: 55px !important;  /* به‌جای ارتفاع قبلی (مثلاً 50px) */
  cursor: pointer;
  transition: transform .3s;
}
.afc-floating-contact .afc-menu {
  display: none;
  margin-top: 10px;
  list-style: none;
  padding: 0;
}
.afc-floating-contact .afc-menu li {
  margin-bottom: 8px;
}
.afc-floating-contact .afc-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #3498db;
  border-radius: 7px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.afc-floating-contact .afc-menu li a:hover {
  background: #f0f0f0;
}
/* واکنش‌گرا: اندازه و فاصله آیکون در موبایل */
@media (max-width: 768px) {
  .afc-floating-contact {
    bottom: 50px !important;
  }
  .afc-floating-contact .afc-icon {
    width: 50px;
    height: 50px;
  }
  .afc-floating-contact .afc-menu li a {
    font-size: 14px;
    padding: 6px 10px;
  }
}
/* KEYFRAMES انیمیشن پالس */
@keyframes afc-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
/* کلاس فعال‌سازی انیمیشن */
.afc-icon.afc-animate {
  animation: afc-pulse 1s ease-in-out;
}
/* استایل تولتیپ کپی */
.afc-tooltip {
  position: absolute;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10000;
  opacity: 0;
  transition: opacity .3s;
}
