/* Sabit WhatsApp iletişim butonu — video izle hariç tüm ön yüz */
.mat-wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1045;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.mat-wa-float:hover,
.mat-wa-float:focus-visible {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.mat-wa-float svg {
  display: block;
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  body.has-guest-mobile-cta .mat-wa-float {
    bottom: calc(var(--guest-cta-h, 56px) + 18px + env(safe-area-inset-bottom, 0px));
  }

  body.mat-mobile-tabs .mat-wa-float {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
