@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif {
  font-family: var(--font-serif);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #1a6f87;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #38c5d6;
}

/* Horizontal scroll styling */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hotspot pulse rings — Teal Navy Luminous Pulse */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 197, 214, 0.8);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 16px rgba(56, 197, 214, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 197, 214, 0);
  }
}

.hotspot-trigger {
  animation: pulse-ring 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Video card subtle glow in teal navy */
.video-reel-card:hover {
  box-shadow: 0 20px 35px -10px rgba(7, 13, 30, 0.9), 0 0 25px 2px rgba(56, 197, 214, 0.35);
}

/* Elevator Floor Slide Transitions */
.elevator-slide-up-in {
  animation: elevatorSlideUpIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.elevator-slide-down-in {
  animation: elevatorSlideDownIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes elevatorSlideUpIn {
  from {
    transform: translateY(50px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes elevatorSlideDownIn {
  from {
    transform: translateY(-50px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Print stylesheet for receipt */
@media print {
  body * {
    visibility: hidden;
  }
  #cashier-modal, #cashier-modal * {
    visibility: visible;
  }
  #cashier-modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: white;
  }
  #close-cashier-btn, #receipt-print-btn, #receipt-done-btn, .no-print {
    display: none !important;
  }
}
