.contact__block span.d-block:first-child {
    display: none !important;
}



/* Dodaje "PL" przed pierwszym numerem telefonu */
.contact__block.--links li a.contact__tel:first-of-type::before {
    content: "PL ";
    font-weight: bold; /* Opcjonalnie, dla wyróżnienia */
}

/* Dodaje "ENG" przed drugim numerem telefonu */
.contact__block.--links li a.contact__tel:last-of-type::before {
    content: "ENG ";
    font-weight: bold; /* Opcjonalnie, dla wyróżnienia */
}

.whatsapp-widget {
  /* TO JEST NAJWAŻNIEJSZA LINIA - PRZYKLEJA WIDGET DO EKRANU */
  position: fixed; 

  /* Położenie względem EKRANU */
  right: 30px;
  bottom: 80px; 
  
  /* Upewnia się, że widget jest na wierzchu innych elementów */
  z-index: 1000;

  /* Reszta stylów (rozmiar, kolor, etc.) */
  width: 78px;
  height: 78px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
}

.whatsapp-widget img {
  width: 46px;
  height: 46px;
}