/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       Rahona Hosting
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

#whatsapp-button {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
  overflow: visible;
}
 
#whatsapp-button:hover {
  transform: scale(1.05);
}
 
.whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
 
.whatsapp-text {
  font-weight: 500;
  font-size: 14px;
}
 
#whatsapp-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  pointer-events: none;
  animation: pulse-wave 1.5s linear infinite;
}
 
@keyframes pulse-wave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    opacity: 0;
  }
}
 
@media (max-width: 768px) {
  #whatsapp-button {
    padding: 12px;
    width: auto;
    height: auto;
    border-radius: 25px;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
    margin-right: 0;
  }
}
 
@media (max-width: 480px) {
  #whatsapp-button {
    padding: 10px;
    bottom: 67px;
    left: 15px;
  }
  
  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

/* fix mobile menu */
.whb-column_mobile2 div.wd-tools-element.wd-header-mobile-nav {
	display: none;
}

/* cookiehub custom */
.ch2-icon.ch2-icon-compact.ch2-style-light {
	right: 90% !important;
	top: 10px;
}