/* === Aston Capital — Shared Widget Styles === */
/* WhatsApp & Telegram floating buttons */
/* Smartsupp and GTranslate bring their own styles */

.widget-whatsapp,
.widget-telegram {
  position: fixed;
  z-index: 99998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.widget-whatsapp {
  bottom: 100px;
  left: 20px;
  background-color: #25D366;
}

.widget-telegram {
  bottom: 170px;
  left: 20px;
  background-color: #0088cc;
}

.widget-whatsapp:hover,
.widget-telegram:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.widget-whatsapp svg,
.widget-telegram svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Mobile: adjust to avoid overlap with Smartsupp */
@media (max-width: 768px) {
  .widget-whatsapp {
    bottom: 90px;
    left: 12px;
    width: 48px;
    height: 48px;
  }
  .widget-telegram {
    bottom: 150px;
    left: 12px;
    width: 48px;
    height: 48px;
  }
  .widget-whatsapp svg,
  .widget-telegram svg {
    width: 26px;
    height: 26px;
  }
}
