/** Shopify CDN: Minification failed

Line 717:0 All "@import" rules must come first

**/
/* Cafe AI Custom Styles - Modern Corporate Tech Aesthetic */

/* Scroll Snapping */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

.scroll-snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: 100vh;
}

/* Allow scrolling past sections to reach footer */
.scroll-snap-section:last-of-type {
    scroll-snap-stop: normal;
    min-height: auto;
}

/* Global Enhancements */
:root {
  --cafe-ai-primary: #2563eb;
  --cafe-ai-primary-hover: #1d4ed8;
  --cafe-ai-secondary: #06b6d4;
  --cafe-ai-accent: #8b5cf6;
  --cafe-ai-success: #10b981;
  --cafe-ai-warning: #f59e0b;
  --cafe-ai-error: #ef4444;
  --cafe-ai-dark: #0f172a;
  --cafe-ai-gray-50: #f8fafc;
  --cafe-ai-gray-100: #f1f5f9;
  --cafe-ai-gray-200: #e2e8f0;
  --cafe-ai-gray-300: #cbd5e1;
  --cafe-ai-gray-400: #94a3b8;
  --cafe-ai-gray-500: #64748b;
  --cafe-ai-gray-600: #475569;
  --cafe-ai-gray-700: #334155;
  --cafe-ai-gray-800: #1e293b;
  --cafe-ai-gray-900: #0f172a;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

/* Modern Button Styles */
.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.button-primary, .btn-primary {
  background: linear-gradient(135deg, var(--cafe-ai-primary), var(--cafe-ai-primary-hover));
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.button-primary:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.5);
}

.button-secondary, .btn-secondary {
  background: transparent;
  color: var(--cafe-ai-primary);
  border: 2px solid var(--cafe-ai-primary);
}

.button-secondary:hover, .btn-secondary:hover {
  background: var(--cafe-ai-primary);
  color: white;
  transform: translateY(-2px);
}

/* Card Enhancements */
.feature-card, .pricing-card, .testimonial {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card:hover, .pricing-card:hover, .testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced hover effects for animated backgrounds */
.animated-bg .feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.animated-bg .pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Integration item hover effects */
.integration-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.integration-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Gradient Backgrounds */
.gradient-bg-primary {
  background: linear-gradient(135deg, var(--cafe-ai-primary), var(--cafe-ai-primary-hover));
}

.gradient-bg-dark {
  background: linear-gradient(135deg, var(--cafe-ai-dark), var(--cafe-ai-gray-800));
}

.gradient-bg-light {
  background: linear-gradient(135deg, var(--cafe-ai-gray-50), white);
}

/* Modern Form Styles */
input, textarea, select {
  border: 1px solid var(--cafe-ai-gray-300);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--cafe-ai-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Navigation Enhancements - Extremely Thin Header */
.header,
header-component,
header-component * {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--cafe-ai-gray-200);
  padding: 0 !important;
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Target Shopify header rows specifically */
.header__row,
.header__row--top,
.header__row--bottom {
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.header__columns {
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.header.transparent {
  background: rgba(15, 23, 42, 0.9);
  border-bottom: none;
}

/* Force header inner elements to be extremely thin */
.header .header__inner,
.header .header__inner * {
  padding: 0 !important;
  margin: 0 !important;
  min-height: auto !important;
  max-height: 10px !important;
  height: auto !important;
  display: block !important;
  visibility: visible !important;
}

.header .header__logo,
.header .header__logo img {
  max-height: 10px !important;
  height: 10px !important;
  width: auto !important;
  display: block !important;
  visibility: visible !important;
}

.header .header__menu {
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  visibility: visible !important;
}

.header .header__menu a {
  padding: 0 2px !important;
  font-size: 0.6rem !important;
  line-height: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
}

/* Override Shopify header height variables */
:root {
  --header-height: 12px !important;
  --header-group-height: 12px !important;
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 12px !important;
  --header-height: 12px !important;
  --header-group-height: 12px !important;
}

/* Override any theme defaults */
.header-group,
.header-group * {
  min-height: auto !important;
  max-height: 12px !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

/* Additional header overrides for Horizon theme */
[data-section-type="header"] {
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  display: block !important;
  visibility: visible !important;
}

[data-section-type="header"] .header__inner {
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

[data-section-type="header"] .header__logo {
  max-height: 10px !important;
  height: 10px !important;
  display: block !important;
  visibility: visible !important;
}

[data-section-type="header"] .header__menu {
  line-height: 1 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

[data-section-type="header"] .header__menu a {
  padding: 0 2px !important;
  font-size: 0.6rem !important;
  line-height: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
}

/* Additional Shopify-specific header overrides */
header-component .header__row,
header-component .header__row--top,
header-component .header__row--bottom {
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

header-component .header__columns {
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* Override any section height settings */
.section--full-width-margin {
  min-height: 12px !important;
  max-height: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hero Section Enhancements */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--cafe-ai-dark) 0%, var(--cafe-ai-gray-800) 100%);
  z-index: -1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: -1;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(30px);
}

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Background Animation Keyframes */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes geometric-float {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes wave-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

@keyframes data-flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Animated Background Classes */
.animated-bg {
  position: relative;
  overflow: hidden;
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
  animation: data-flow 25s linear infinite;
  z-index: 0;
}

.animated-bg > * {
  position: relative;
  z-index: 1;
}

/* Grid Enhancements */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 8rem 0;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--cafe-ai-primary);
}

.text-secondary {
  color: var(--cafe-ai-secondary);
}

.text-muted {
  color: var(--cafe-ai-gray-500);
}

/* Background Utilities */
.bg-primary {
  background-color: var(--cafe-ai-primary);
}

.bg-secondary {
  background-color: var(--cafe-ai-secondary);
}

.bg-light {
  background-color: var(--cafe-ai-gray-50);
}

.bg-dark {
  background-color: var(--cafe-ai-dark);
}

/* Spacing Utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

/* Hero Stats Responsive Design */
.hero-stats {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 40px !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  flex-wrap: wrap !important;
}

.stat-item {
  text-align: center !important;
  min-width: 180px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.stat-number {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #3b82f6 !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
}

.stat-label {
  font-size: 1rem !important;
  opacity: 0.8 !important;
  line-height: 1.4 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-lg {
    padding: 5rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .button, .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 30px !important;
    flex-direction: column !important;
  }

  .stat-item {
    min-width: 150px !important;
  }

  .stat-number {
    font-size: 2rem !important;
  }

  .stat-label {
    font-size: 0.9rem !important;
  }
}

/* Import Advanced Animations */
@import url('cafe-ai-animations.css');

/* Audio Visualizer Animations */
@keyframes audio-wave {
  0%, 100% {
    transform: scaleY(0.3);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

@keyframes call-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Audio Visualizer Styles */
.audio-visualizer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 1;
}

.audio-bar {
  width: 6px;
  border-radius: 3px;
  animation: audio-wave 1.5s ease-in-out infinite;
}

.call-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: call-pulse 3s ease-in-out infinite;
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Focus States for Accessibility */
.button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--cafe-ai-primary);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .button-primary {
    background: var(--cafe-ai-primary);
    border: 2px solid var(--cafe-ai-primary);
  }
  
  .button-secondary {
    border-width: 3px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
