/* Kontener */
.wl-right-widget {
  position: fixed;
  right: 16px;
  top: 30%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Pojedynczy przycisk */
.wl-right-widget .wl-item {
  position: relative;
  width: 44px; 
  height: 44px;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease;
  background: transparent;
}

.wl-right-widget .wl-item a {
  display: inline-flex;
  width: 44px; 
  height: 44px;
  border-radius: 12px;
  align-items: center; 
  justify-content: center;
  background: #8d8b55;
  position: relative;
  overflow: hidden;
}

/* Efekt rozmytego tła */
.wl-right-widget .wl-item a::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #8d8b55;
  border-radius: 12px;
  opacity: 0.8;
  z-index: 0;
}

.wl-right-widget .wl-item img {
  display: block;
  width: 28px; 
  height: 28px;
  object-fit: contain;
  transition: transform .18s ease, filter .18s ease;
  z-index: 1;
  position: relative;
  opacity: 0.9;
}

/* Hover – ikona minimalnie do góry i mniej rozmyta */
.wl-right-widget .wl-item:hover img {
  transform: translateY(-3px);
}



.wl-right-widget .wl-item:hover {
  transform: translateY(-2px);
}

/* Dymek z tekstem */
.wl-right-widget .wl-tip {
  position: absolute;
  right: 52px; 
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #ffffff;
  color: #8d8b55;
  border-radius: 8px;
  padding: 6px 10px;
  font: 600 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

/* trójkąt */
.wl-right-widget .wl-tip:after {
  content: "";
  position: absolute;
  right: -6px; 
  top: 50%;
  width: 0; 
  height: 0;
  border-left: 6px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}

/* Pokaż dymek na hover */
.wl-right-widget .wl-item:hover .wl-tip,
.wl-right-widget .wl-item:focus-within .wl-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Mobile: nie zasłaniaj – lekko niżej i mniejsze odstępy */
@media (max-width: 768px) {
  .wl-right-widget { 
    top: 45%; 
    gap: 10px; 
    right: 10px; 
  }
  .wl-right-widget .wl-tip { 
    display: none; /* na mobile chowamy dymki */
  }
}

