.nt-wa-wrapper {
  position: fixed;
  bottom: 120px;
  right: 25px;
  z-index: 999;
}

.nt-wa-button {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.nt-wa-button:hover {
  transform: scale(1.1);
}

/* POPUP */
.nt-wa-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 260px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s;
}

.nt-wa-wrapper:hover .nt-wa-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* OSOBA */
.nt-wa-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 15px;
  text-decoration: none;
  color: black;
  transition: 0.2s;
}

.nt-wa-person:hover {
  background: #f7f7f7;
}

/* AVATAR */
.nt-wa-person img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEKST */
.nt-wa-person strong {
  display: block;
  font-size: 14px;
}

.nt-wa-person span {
  font-size: 12px;
  opacity: 0.6;
}

.nt-wa-wrapper::after {
  content: "";
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 100%;
  height: 20px;
}

.nt-wa-button svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@media (max-width: 768px) {
    .nt-wa-wrapper {
  position: fixed;
  bottom: 120px;
  right: 25px;
  z-index: 999;
}
    
}