/* ========================================
   STICKY CTA LIŠTA – kompaktní (one-line)
   ======================================== */

.vhv-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -60px;
  background: linear-gradient(135deg, #03274b 0%, #0061a5 100%);
  box-shadow: 0 -4px 16px rgba(3, 39, 75, 0.18);
  padding: 6px 16px;
  z-index: 9998;
  transition: bottom 0.35s ease;
  border-top: 2px solid #da251d;
}
.vhv-sticky-cta.visible {
  bottom: 0;
}
/* Když je sticky bar viditelný, přidej padding-bottom na body
   ať se na konec stránky dá scrollovat (jinak překrývá copyright) */
body.sticky-cta-visible {
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  body.sticky-cta-visible {
    padding-bottom: 50px;
  }
}
.vhv-sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.vhv-sticky-cta-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1.3;
}
.vhv-sticky-cta-text strong {
  color: #ffffff;
  font-weight: 700;
}
/* Sub-line "Bez závazků..." schovaná napořád (zabíralo 2 řádky) */
.vhv-sticky-cta-text span {
  display: none;
}
.vhv-sticky-cta-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.vhv-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.2;
  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(-1px);
}
.vhv-sticky-cta-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.vhv-sticky-cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.vhv-sticky-cta-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}
.vhv-sticky-cta-close:hover {
  color: #ffffff;
}

/* Mobile – sub-line + text overflow handled */
@media (max-width: 768px) {
  .vhv-sticky-cta {
    padding: 6px 10px;
  }
  .vhv-sticky-cta-inner {
    gap: 8px;
  }
  .vhv-sticky-cta-text {
    font-size: 0.78rem;
    flex: 1 1 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .vhv-sticky-cta-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  /* Na mobile: skrýt sekundární text, jen primary CTA + close */
  .vhv-sticky-cta-btn-ghost {
    display: none;
  }
}
