/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px var(--pad-x);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__info {
  display: none;
}
.sticky-cta__buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.sticky-cta__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sticky-cta__btn--secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.sticky-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}
.sticky-cta__btn--primary {
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
}
.sticky-cta__btn--primary:hover {
  background: #33ebff;
}

/* Tablet+ : show vehicle info, shrink buttons */
@media (min-width: 768px) {
  .sticky-cta { padding: 14px var(--pad-x); }
  .sticky-cta__info {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .sticky-cta__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
  }
  .sticky-cta__price {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
  .sticky-cta__buttons {
    width: auto;
  }
  .sticky-cta__btn {
    flex: none;
    padding: 12px 28px;
    font-size: 11px;
  }
}
