@import url("/assets/css/base/tokens.css");

/* ===============================
   WhatsApp FAB & Notify (component)
   =============================== */
.whats {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 100001; /* cookie banner & modal üstünde */
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.whats:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.wa-notify {
  position: fixed;
  right: 22px;
  bottom: 88px;
  background: var(--cyan);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(20px);
  z-index: 59;
}
.wa-notify.show {
  opacity: 1;
  transform: translateY(0);
}
