/* Always-visible Call + WhatsApp floating widgets */
.gotezu-float-widgets {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gotezu-float-widgets__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}

.gotezu-float-widgets__btn i {
  font-size: 26px;
  color: #fff;
}

.gotezu-float-widgets__btn--call {
  background: #1e88e5;
}

.gotezu-float-widgets__btn--whatsapp {
  background: #25d366;
}

.gotezu-float-widgets__btn:hover,
.gotezu-float-widgets__btn:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.gotezu-float-widgets__btn:hover i,
.gotezu-float-widgets__btn:focus-visible i {
  color: #fff;
}

@media (max-width: 768px) {
  .gotezu-float-widgets {
    right: 14px;
    bottom: 18px;
    gap: 10px;
  }

  .gotezu-float-widgets__btn {
    width: 50px;
    height: 50px;
  }

  .gotezu-float-widgets__btn i {
    font-size: 23px;
  }
}
