.hide-on-desktop{
	display: none;

}

.banner-imgs {
    padding: 0 0 50px 0 !important;
}

.banner-imgs img{
    bottom: 5px !important;
}

.custom-wp-button{
	font-weight: 500 !important;
	font-size: 16px !important;
	padding: 8px 16px !important; 
  	border-radius: 8px !important; 
  	font-family: var(--primary-font), sans-serif !important; 
  	background-color: #25D366;
  	color: #fff;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}

.custom-wp-button:hover{
	background-color:  #1fad53 !important;
  color: #fff !important;
}

.cwb-icon{
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('/storage/whatsapp.png');
  background-size: cover;
  margin-right: 8px;
}


.bdrd-58.box-gray-100.icon-wave{
	background-color: #f2f4f7 !important;
}

.banner-hero.banner-breadcrums{
	background-color: #f2f4f7;
}

.call-button-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.call-button {
  width: 60px;
  height: 60px;
  background-color: #28a745;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.call-button:hover {
  background-color: #218838;
}

.call-button img {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 3;
}

/* Kalın, smooth dalgalar */
.halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 7px solid #28a745;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.3;
  z-index: 0;
  animation: pulse 2s linear infinite;
}

.wave2 {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* Mobil uyum (küçük ekranlarda da 60px) */
@media (max-width: 768px) {
  
  .hide-on-desktop{
	display: inline-block;
	}
  .call-button-wrapper {
    width: 60px;
    height: 60px;
  }

  .call-button {
    width: 60px;
    height: 60px;
  }

  .call-button img {
    width: 24px;
    height: 24px;
  }

  .halo {
    width: 60px;
    height: 60px;
    border-width: 6px;
    animation: pulse 2s linear infinite;
  }

  .wave2 {
    animation-delay: 1s;
  }

  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.3;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.8);
      opacity: 0;
    }
  }
}