/* ============================================================
   MOOD HOUSE — Mobile Sticky Call / WhatsApp Buttons
   ============================================================ */

.mobile-sticky-btns {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  animation: slideUpBtns 0.5s 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes slideUpBtns {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
  border: none;
  min-height: 54px;
}
.sticky-btn:active { filter: brightness(0.9); }

.sticky-btn-call {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-dark);
}
.sticky-btn-call:hover { opacity: 0.9; }

.sticky-btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}
.sticky-btn-whatsapp:hover { opacity: 0.9; }

.sticky-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-sticky-btns { display: block; }
  /* Push footer above sticky buttons */
  body { padding-bottom: 54px; }
}
