/* ==========================================================================
   Taxi Fluor — Sticky-Anruf-Pille (rechts unten, alle Seiten, alle
   Breakpoints — exakt Mock, nicht nur mobil).
   ========================================================================== */

.sticky-call {
  position: fixed;
  right: var(--space-20);
  bottom: var(--space-20);
  z-index: var(--z-sticky-call);
  display: flex;
  align-items: center;
  gap: var(--space-10);
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 900;
  font-size: var(--text-xl);
  padding: var(--space-15) var(--space-22);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sticky);
  text-decoration: none;
  transition: background-color var(--duration-fast) var(--ease-out);
}

.sticky-call:hover {
  background: var(--color-red-hover);
  color: var(--color-white);
  text-decoration: none;
}

.sticky-call__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
