/* ========================================
   STICKY CTA LIŠTA – pro dlouhé stránky
   ======================================== */

.vhv-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -80px;
  background: linear-gradient(135deg, #03274b 0%, #0061a5 100%);
  box-shadow: 0 -8px 30px rgba(3, 39, 75, 0.25);
  padding: 12px 20px;
  z-index: 9998;
  transition: bottom 0.35s ease;
  border-top: 3px solid #da251d;
}
.vhv-sticky-cta.visible {
  bottom: 0;
}
.vhv-sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.vhv-sticky-cta-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}
.vhv-sticky-cta-text strong {
  color: #ffffff;
  font-weight: 800;
}
.vhv-sticky-cta-text span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-top: 2px;
}
.vhv-sticky-cta-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.vhv-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vhv-sticky-cta-btn-primary {
  background: #da251d;
  color: #ffffff;
}
.vhv-sticky-cta-btn-primary:hover {
  background: #b70f07;
  color: #ffffff;
  transform: translateY(-2px);
}
.vhv-sticky-cta-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.vhv-sticky-cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.vhv-sticky-cta-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.3rem;
  padding: 6px 10px;
  transition: color 0.2s ease;
}
.vhv-sticky-cta-close:hover {
  color: #ffffff;
}

/* Floating phone button shift up when sticky CTA is visible */
body.sticky-cta-visible .vhv-float-phone {
  bottom: calc(85px + 20px);
}

@media (max-width: 768px) {
  .vhv-sticky-cta {
    padding: 10px 14px;
  }
  .vhv-sticky-cta-inner {
    flex-direction: row;
    gap: 10px;
  }
  .vhv-sticky-cta-text {
    font-size: 0.85rem;
    flex: 1 1 100%;
    order: -1;
    margin-bottom: 4px;
  }
  .vhv-sticky-cta-text span {
    display: none;
  }
  .vhv-sticky-cta-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
  }
  .vhv-sticky-cta-close {
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 1.1rem;
  }
  body.sticky-cta-visible .vhv-float-phone {
    bottom: calc(100px + 15px);
  }
}
