/** Shopify CDN: Minification failed

Line 21:24 Expected identifier but found whitespace
Line 21:26 Unexpected "{"
Line 21:36 Expected ":"
Line 22:22 Expected identifier but found whitespace
Line 22:24 Unexpected "{"
Line 22:34 Expected ":"
Line 23:22 Expected identifier but found whitespace
Line 23:24 Unexpected "{"
Line 23:34 Expected ":"
Line 24:22 Expected identifier but found whitespace
... and 32 more hidden warnings

**/
/* RaveSmart Theme - Base Styles */
/* Color Palette: Beach Sunset / Desert Mountains */

:root {
  /* Primary Colors */
  --color-sunset-orange: {{ settings.color_sunset_orange }};
  --color-desert-pink: {{ settings.color_desert_pink }};
  --color-golden-hour: {{ settings.color_golden_hour }};
  --color-dusk-purple: {{ settings.color_dusk_purple }};
  --color-night-sky: {{ settings.color_night_sky }};

  /* Background & Text */
  --color-background: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-text-muted: {{ settings.color_text_muted }};

  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, var(--color-sunset-orange), var(--color-desert-pink), var(--color-dusk-purple));
  --gradient-golden: linear-gradient(135deg, var(--color-golden-hour), var(--color-sunset-orange));
  --gradient-night: linear-gradient(180deg, var(--color-dusk-purple), var(--color-night-sky));

  /* Typography */
  --font-heading: {{ settings.font_heading.family }}, {{ settings.font_heading.fallback_families }};
  --font-body: {{ settings.font_body.family }}, {{ settings.font_body.fallback_families }};
  --font-weight-heading: {{ settings.font_heading.weight }};
  --font-weight-body: {{ settings.font_body.weight }};

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .text-left {
  text-align: right;
}

[dir="rtl"] .text-right {
  text-align: left;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  max-width: 65ch;
}

a {
  color: var(--color-sunset-orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-golden-hour);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--gradient-sunset);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-sunset-orange);
}

.btn-secondary:hover {
  background: var(--color-sunset-orange);
  color: white;
}

/* Form Elements */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-sunset-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

input::placeholder {
  color: var(--color-text-muted);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

/* Glow Effects */
.glow {
  position: relative;
}

.glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-sunset);
  border-radius: inherit;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
}
