/*
Theme Name: BTiger
Author: 
Author URI: 
Theme URI: 
Tags: full-site-editing, block-patterns
Text Domain: btiger
Requires at least: 6.1
Requires PHP: 7.4
Tested up to: 6.2
Version: 1.0.0

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
#whatsapp-box {
  position: fixed;
  bottom: -100px;
  right: 20px;
  z-index: 9999;
  transition: bottom 0.5s ease;
}

#whatsapp-box.show {
  bottom: 20px;
}

.whatsapp-inner {
  background-color: #075E54;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 12px rgba(7, 94, 84, 0.8);
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  animation: pulseShadow 2.5s infinite;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

.whatsapp-text {
  white-space: nowrap;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 10px rgba(7, 94, 84, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(7, 94, 84, 1);
  }
  100% {
    box-shadow: 0 0 10px rgba(7, 94, 84, 0.6);
  }
}

@media (max-width: 768px) {
  .whatsapp-text {
    font-size: 16px;
  }
  #whatsapp-box {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}