
.site-dock {
  position: fixed;
  left: 14px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-dock a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  border: 2px solid transparent;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-dock a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-dock a:hover,
.site-dock a:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
  outline: none;
}

.site-dock a[aria-current="page"] {
  border-color: #c9a24b;
  opacity: 0.55;
}

/* Tooltip-Label beim Hover */
.site-dock a .dock-label {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  background: #2b2a28;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.site-dock a .dock-label::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 4px 5px 4px 0;
  border-style: solid;
  border-color: transparent #2b2a28 transparent transparent;
}

.site-dock a:hover .dock-label,
.site-dock a:focus-visible .dock-label {
  opacity: 1;
}

@media (max-width: 700px) {
  .site-dock {
    left: 8px;
    gap: 8px;
  }
  .site-dock a {
    width: 38px;
    height: 38px;
  }
  .site-dock a .dock-label {
    display: none;
  }
}
