/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* CSS Custom Properties (Design Tokens - Shopify-Inspired Theme) */
:root {
  --bg-dark: #030712;
  --bg-darker: #020617;
  --bg-card: rgba(10, 15, 30, 0.7); /* Slightly darker/more opaque for better contrast and performance */
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 128, 96, 0.3);
  
  /* Shopify Brand Colors */
  --primary: #008060; /* Shopify Green */
  --primary-rgb: 0, 128, 96;
  --secondary: #9cda52; /* Shopify Light Lime Green */
  --secondary-rgb: 156, 218, 82;
  --accent: #20c997;
  
  --text-main: #f9fafb;
  --text-secondary: #e5e7eb;
  --text-muted: #9ca3af;
  
  --font-title: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --gradient-text: linear-gradient(135deg, #008060 0%, #9cda52 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  
  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

html.lenis {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  /* GPU acceleration hint */
  transform: translate3d(0, 0, 0);
  /* Deep green tint at the top fading into dark gray */
  background: radial-gradient(ellipse at top, #02251d, var(--bg-dark) 80%);
}

/* Background Ambient Glows - Optimized: Static (No continuous repaint) */
.ambient-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
  transform: translate3d(0, 0, 0); /* Force GPU compositor layer */
  will-change: transform;
  pointer-events: none;
}

.glow-circle-1 {
  top: -10%;
  right: 10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(0, 128, 96, 0.14) 0%, rgba(0, 128, 96, 0.04) 45%, transparent 70%);
}

.glow-circle-2 {
  top: 25%;
  left: -10%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(156, 218, 82, 0.09) 0%, rgba(156, 218, 82, 0.02) 45%, transparent 70%);
}

.glow-circle-3 {
  bottom: 5%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 128, 96, 0.08) 0%, rgba(0, 128, 96, 0.01) 45%, transparent 70%);
}

/* Typography & Headings */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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



/* Reusable Components */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  border: 1px solid transparent;
  gap: 8px;
  transform: translate3d(0, 0, 0); /* GPU acceleration */
}

.btn-primary {
  background: var(--gradient-text);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 128, 96, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 128, 96, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border-color: var(--border-color);
  backdrop-filter: blur(6px); /* Reduced blur for performance */
  -webkit-backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Glassmorphism Card Style (Optimized) */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2.2rem;
  backdrop-filter: blur(8px); /* Reduced blur size to save CPU/GPU cycles */
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), border var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0); /* Composition layer hint */
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  z-index: -1;
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px); /* Reduced translation distance to make it look tighter and less laggy */
  box-shadow: 0 8px 30px rgba(0, 128, 96, 0.1);
}

/* Header Section */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: padding var(--transition-normal), background var(--transition-normal);
  padding: 1.4rem 0;
  transform: translate3d(0, 0, 0);
}

header.scrolled {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(10px); /* Optimized from 16px */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.7rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: var(--gradient-text);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0 !important;
  line-height: 1;
  padding-left: 1px; /* Optical centering horizontal */
  padding-top: 1.5px; /* Optical centering vertical */
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-header-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-main);
  margin: 5px 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 128, 96, 0.08);
  border: 1px solid rgba(0, 128, 96, 0.15);
  border-radius: 50px;
  color: var(--secondary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 128, 96, 0.03);
}

.badge span.dot {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(156, 218, 82, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(156, 218, 82, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(156, 218, 82, 0); }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.8rem;
}

.stat-item h4 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-family: var(--font-title);
  font-weight: 500;
}

/* Hero Visual Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 6px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transform: perspective(1000px) rotateY(-8deg) rotateX(8deg);
  transition: transform var(--transition-slow);
  will-change: transform; /* Hint to GPU */
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

/* Floating interface elements - Optimized animations */
.floating-element {
  position: absolute;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.floating-1 {
  top: -2%;
  left: -10%;
  animation: float-optimized 6s infinite ease-in-out;
}

.floating-2 {
  bottom: -5%;
  right: -5%;
  animation: float-optimized 6s infinite ease-in-out;
  animation-delay: -3s; /* Staggered */
}

.floating-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 128, 96, 0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-2 .floating-icon {
  background: rgba(156, 218, 82, 0.15);
  color: var(--secondary);
}

.floating-text h5 {
  font-size: 0.8rem;
  font-family: var(--font-title);
  color: var(--text-main);
}

.floating-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* High Performance Animation using only transform: translateY */
@keyframes float-optimized {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

/* Tech / Value Section */
.features {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--secondary);
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 128, 96, 0.15), rgba(156, 218, 82, 0.03));
  border: 1px solid rgba(0, 128, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.glass-card:hover .feature-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
  background: var(--gradient-text);
  color: #ffffff;
  border-color: transparent;
}

.features-list {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.features-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Call to Action Section */
.cta-section {
  padding: 60px 0 100px;
  position: relative;
}

.cta-box {
  border-radius: 24px;
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  background: #0b0f19 !important; /* Solid background to eliminate repaint lag in form */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--border-color);
}

.cta-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.cta-box h2 {
  max-width: 750px;
  margin: 0 auto 1.25rem;
}

.cta-box p {
  max-width: 580px;
  margin: 0 auto 2.2rem;
  color: var(--text-secondary);
}

/* Footer */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 2.2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 250px;
}

.footer-column h5 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(0, 128, 96, 0.15);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px); /* Reduced movement for smoother translation animation */
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform; /* Optimize GPU thread */
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    width: 100%;
    max-width: 500px;
  }
  
  .hero-visual {
    margin-top: 1.5rem;
  }
  
  .hero-image-wrapper {
    transform: none;
  }
  
  .hero-image-wrapper:hover {
    transform: translateY(-3px);
  }
  
  .floating-1 {
    left: 0;
  }
  
  .floating-2 {
    right: 0;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.9rem 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(3, 7, 18, 0.98);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 1.8rem;
    transition: right var(--transition-normal);
    z-index: 105;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.15rem;
    display: block;
    padding: 0.85rem 0;
  }
  
  .nav-menu .btn {
    margin-top: 1.25rem;
    width: 100%;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .features {
    padding: 50px 0;
  }
  
  .cta-section {
    padding: 30px 0 60px;
  }
  
  .cta-box {
    padding: 2.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }
  
  .stat-item h4 {
    font-size: 1.7rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .floating-element {
    display: none; /* Hide floating elements on very small screens to avoid clutter */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand p {
    margin: 1rem auto 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact Form & CTA Centered Stack Styles */
.or-email {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.or-email::before,
.or-email::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--border-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 12px rgba(156, 218, 82, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Form Validation Styles */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #ef4444 !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.15) !important;
}

.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  display: block;
}

.form-error-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #fca5a5;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-align: center;
  font-family: var(--font-body);
}

/* SweetAlert2 Glass Customizations */
.swal2-popup.glass-card-swal {
  border: 1px solid var(--border-color) !important;
  border-radius: 20px !important;
  font-family: var(--font-body) !important;
}

.swal2-popup.glass-card-swal .swal2-title {
  font-family: var(--font-title) !important;
  color: var(--text-main) !important;
  font-size: 1.5rem !important;
}

.swal2-popup.glass-card-swal .swal2-html-container {
  font-family: var(--font-body) !important;
  color: var(--text-secondary) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}




