/* ── STICKY CTA MÓVIL ── */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--charcoal);
  border-top: 1px solid var(--gold-30);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.sticky-cta-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--gold-soft);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.2;
}

.sticky-cta-price span {
  font-size: 0.75rem;
  font-family: "Lato", sans-serif;
  color: var(--gray-cool);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  padding: 0 22px;
  background: var(--gold-soft);
  color: var(--charcoal);
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.sticky-cta-btn:hover {
  background: #b8933a;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .sticky-cta-mobile {
    display: block;
  }
}
