/* ═══════════════════════════════════════════════════
   HVV Social-Proof Toast – CSS
   Stand: April 2026
   ═══════════════════════════════════════════════════ */
.hvv-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 6px 30px rgba(0,0,0,.18);
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
  z-index: 99999;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.hvv-toast.visible {
  transform: translateX(0);
  opacity: 1;
}
.hvv-toast-topbar {
  height: 5px;
  background: #51A319;
  width: 100%;
}
.hvv-toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
}
.hvv-toast-close:hover { color: #555; }
.hvv-toast-header {
  padding: 16px 18px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hvv-toast-pin {
  flex-shrink: 0;
  margin-top: 4px;
}
.hvv-toast-pin svg {
  width: 24px;
  height: 32px;
}
.hvv-toast-headline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hvv-toast-count {
  font-size: 38px;
  font-weight: 800;
  color: #51A319;
  line-height: 1;
  letter-spacing: -1px;
}
.hvv-toast-title-text {
  padding-top: 2px;
}
.hvv-toast-title-main {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  line-height: 1.35;
}
.hvv-toast-title-sub {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
  line-height: 1.3;
}
.hvv-toast-divider {
  height: 1px;
  background: #ddd;
  margin: 0 18px;
}
.hvv-toast-requests {
  padding: 12px 18px 14px;
}
.hvv-toast-requests-label {
  font-size: 10px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 8px;
}
.hvv-toast-request-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: #333;
}
.hvv-toast-request-check {
  color: #51A319;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.hvv-toast-request-plz {
  color: #666;
  font-weight: 400;
}
.hvv-toast-request-name {
  font-weight: 700;
  color: #222;
}
.hvv-toast-request-date {
  margin-left: auto;
  color: #aaa;
  font-size: 12px;
  flex-shrink: 0;
}
.hvv-toast-bottombar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #f2f9ed;
  color: #51A319;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  pointer-events: none;
  user-select: none;
  text-decoration: none;
}
.hvv-toast-bottombar:hover {
  color: #51A319;
  text-decoration: none;
  background: #f2f9ed;
}
.hvv-toast-bottombar-check {
  font-size: 13px;
  line-height: 1;
}
/* Handy: Toast komplett ausblenden, iPad+ bleibt sichtbar */
@media (max-width: 768px) {
  .hvv-toast {
    display: none !important;
  }
}
