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

:root {
  --primary-emerald: #064e3b;
  --primary-emerald-dark: #022c22;
  --primary-emerald-light: #059669;
  --accent-gold: #d97706;
  --accent-gold-light: #f59e0b;
  --accent-gold-dark: #b45309;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-light: #fdfbf7;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Luxury Gradient Backgrounds */
.bg-emerald-luxury {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #047857 100%);
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #b45309 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Glow & Shadows */
.card-shadow {
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-shadow:hover {
  box-shadow: 0 12px 30px -4px rgba(6, 78, 59, 0.15), 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Product Card Selection Animation */
.product-card.is-selected {
  border-color: #059669 !important;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.25), 0 10px 25px -5px rgba(5, 150, 105, 0.2) !important;
}

.product-card.is-selected .select-btn {
  background: #059669 !important;
  color: #ffffff !important;
}

/* Pulse Animations */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(217, 119, 6, 0);
  }
}

.pulse-btn {
  animation: pulseGlow 2s infinite;
}

/* Countdown Ticker Badge */
.countdown-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

/* Sticky Mobile Bottom Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #064e3b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #047857;
}
