/*
 Theme Name:   Pixeligo Divi Child
 Theme URI:    https://www.pixeligo.fr
 Description:  Pixeligo Divi Child
 Author:       Pascal Hoquet
 Author URI:   https://www.pixeligo.fr
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  pixeligo-divi-child
*/
.floating-phone {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  font-family: inherit;
  text-align: center;
}

.floating-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.floating-number {
  font-size: 16px;
  font-weight: 700;
  color: #99c035;
  text-decoration: none;
}

.floating-number:hover {
  color: #99c035;
}

.floating-phone {
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}