@keyframes smartbot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 165, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0); }
}

@media (min-width: 768px) {
  #smartbot-live-chat-iframe {
    transform: scale(1.5) !important;
    transform-origin: bottom right !important;
    right: 30px !important;
    bottom: 30px !important;
    animation: smartbot-pulse 2s ease-in-out 4;
    animation-fill-mode: forwards;
  }
}

/* Мобильная — без изменений */
@media (max-width: 767px) {
  #smartbot-live-chat-iframe {
    animation: smartbot-pulse 2s ease-in-out 4;
    animation-fill-mode: forwards;
  }
}
