/* 
  Cormack Labs - Dr. Mack Pain Relief Digital Experience
  Design System & Stylesheet
*/

:root {
  --color-botanical-dark: #0F382C;
  --color-botanical-medium: #134033;
  --color-botanical-light: #1E5C4B;
  --color-gold: #D4AF37;
  --color-gold-light: #F4E7B6;
  --color-orange: #FF6B00;
  --color-orange-hover: #E05E00;
  --color-bg-light: #F9F9FB;
  --color-bg-card: #FFFFFF;
  --color-slate-dark: #1E293B;
  --color-slate-subtle: #64748B;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-slate-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: var(--color-botanical-medium);
  border-radius: 4px;
}

/* Glassmorphism Classes */
.glass-nav {
  background: rgba(15, 56, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-dark-card {
  background: rgba(15, 56, 44, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Gold Gradient Accents */
.text-gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #FFF3B0 50%, #B38F24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 50%, #C59D27 100%);
}

.border-gold-subtle {
  border-color: rgba(212, 175, 55, 0.4);
}

/* Glow Effects */
.glow-orange {
  box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.4);
}

.glow-orange:hover {
  box-shadow: 0 15px 30px -5px rgba(255, 107, 0, 0.6);
  transform: translateY(-2px);
}

.glow-gold {
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

/* Product Switcher Toggle Styling */
.switcher-pill {
  transition: all 0.3s ease;
}

.switcher-pill.active {
  background-color: var(--color-botanical-dark);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 56, 44, 0.25);
}

/* Micro Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.02); }
}

.animate-pulse-subtle {
  animation: pulse-subtle 2.5s infinite ease-in-out;
}

/* Comparison Table Styling */
.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
}

/* Mobile Sticky Bottom CTA Animation */
.sticky-bottom-bar {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.sticky-bottom-bar.hidden-bar {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

/* Badge Tags */
.badge-ayush {
  background: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
}

/* Modal Backdrop */
.modal-backdrop {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
}
