/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first
Line 32:0 All "@import" rules must come first

**/
/*
 * Nuvi Natura — Premium DTC Design System v2.0
 * 
 * Inspired by: Feals, goPure, Grüns
 * Typography: Amulya (Headlines) + Cormorant Garamond (Elegant Accent) + DM Sans (Body)
 * Palette: Warm Cream + Charcoal + Bronze
 */

/* ========================================
   FONT DECLARATIONS
   ======================================== */

/* Amulya - Brand Headlines */
@font-face {
  font-family: 'Amulya';
  src: url('Amulya-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond - Elegant Accent (for italic emphasis) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* DM Sans - Body Text */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */

:root {
  /* === Color Palette: Premium Cream + Charcoal === */

  /* Backgrounds - Warm Cream Tones */
  --color-bg: #F4F1E9;
  --color-bg-rgb: 244, 241, 233;
  --color-surface: #FFFFFF;
  --color-surface-alt: #FAF8F5;
  --color-surface-warm: #F0EDE5;

  /* Text - High Contrast */
  --color-text: #1A1A1A;
  --color-text-secondary: #4A4A4A;
  --color-text-muted: #7A7A7A;

  /* Accent Colors */
  --color-accent: #B8956B;
  --color-accent-rgb: 184, 149, 107;
  --color-accent-hover: #A07D55;
  --color-accent-light: rgba(184, 149, 107, 0.12);

  /* Dark - Charcoal (NOT Brown) */
  --color-dark: #1A1A1A;
  --color-dark-rgb: 26, 26, 26;

  /* Functional Colors */
  --color-success: #2D7A4F;
  --color-success-light: rgba(45, 122, 79, 0.1);
  --color-error: #C53030;
  --color-border: #E8E4DC;
  --color-border-light: #F0EDE8;

  /* === Typography === */
  --font-heading: 'Amulya', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Font Sizes - Mobile First */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.75rem;
  /* 28px (was 32px) */
  --text-4xl: 2rem;
  /* 32px (was 40px) */
  --text-5xl: 2.5rem;
  /* 40px (was 48px) */
  --text-hero: clamp(2.25rem, 5vw, 4.5rem);
  /* Smaller mobile hero */
  /* Responsive hero */

  /* Font Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 2;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;
  --tracking-widest: 0.12em;

  /* === Spacing - Mobile First (Generous) === */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-32: 8rem;
  /* 128px */

  /* Section Padding - Mobile First */
  --section-padding: var(--space-12);
  /* 48px (was 64px) */
  --section-padding-lg: var(--space-16);
  /* 64px (was 96px) */

  /* === Layout === */
  --container-max: 1000px;
  --container-wide: 1200px;
  --container-narrow: 680px;
  --container-padding: var(--space-5);

  /* === Border Radius === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* === Shadows - Subtle === */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 0 40px rgba(184, 149, 107, 0.15);

  /* === Transitions === */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  /* === Z-Index === */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-drawer: 500;
  --z-modal: 600;
  --z-header: 1000;
}

/* Desktop Overrides */
@media (min-width: 768px) {
  :root {
    --section-padding: var(--space-24);
    --section-padding-lg: var(--space-32);
    --container-padding: var(--space-8);
  }
}

@media (min-width: 1024px) {
  :root {
    --text-5xl: 3.5rem;
    --text-4xl: 3rem;
    --text-3xl: 2.25rem;
  }
}

/* ========================================
   RESET
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

/* Elegant Accent Text - Use for emphasis */
.text-elegant {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

/* Accent color for elegant text */
.text-elegant--accent {
  color: var(--color-accent);
}

/* Mixed headline: "Experience *pure* energy" */
.headline-mixed em,
.headline-mixed i {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

/* Overline - Small caps style */
.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-accent);
}

/* Body text with accent color */
.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-secondary);
}

.text-success {
  color: var(--color-success);
}

p {
  margin-bottom: var(--space-4);
  max-width: 60ch;
  /* Optimal reading width */
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-accent);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ========================================
   BUTTONS - Pill Shape + Arrows
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 48px;
  padding: 0 var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 35px;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Primary - Dark Charcoal */
.btn--primary {
  background-color: var(--color-dark);
  color: var(--color-surface);
  border-color: var(--color-dark);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--color-dark);
}

/* Secondary - Outline */
.btn--secondary {
  background-color: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn--secondary:hover {
  background-color: var(--color-dark);
  color: var(--color-surface);
}

/* Accent - Bronze */
.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-surface);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* Light - For dark backgrounds */
.btn--light {
  background-color: var(--color-surface);
  color: var(--color-dark);
  border-color: var(--color-surface);
}

.btn--light:hover {
  background-color: transparent;
  color: var(--color-surface);
  border-color: var(--color-surface);
}

/* Arrow after button text */
.btn--arrow::after {
  content: '→';
  margin-left: var(--space-2);
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}

/* Sizes */
.btn--sm {
  height: 44px;
  padding: 0 var(--space-6);
  font-size: var(--text-xs);
}

.btn--lg {
  height: 60px;
  padding: 0 var(--space-10);
  font-size: var(--text-base);
}

.btn--full {
  width: 100%;
}

/* ========================================
   CARDS - Borderless, Floating
   ======================================== */

.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  /* No border! Floating on background */
}

.card--hover {
  transition: transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--subtle {
  background-color: var(--color-surface-alt);
}

.card--glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

/* ========================================
   FORMS
   ======================================== */

.input {
  width: 100%;
  height: 52px;
  padding: 0 var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

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

.input:hover {
  border-color: var(--color-text-secondary);
}

.input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

/* Underline style (like goPure newsletter) */
.input--underline {
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  padding: var(--space-3) 0;
}

.input--underline:focus {
  border-color: var(--color-dark);
  box-shadow: none;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

.section--lg {
  padding: var(--section-padding-lg) 0;
}

/* Section Backgrounds */
.section--cream {
  background-color: var(--color-bg);
}

.section--white {
  background-color: var(--color-surface);
}

.section--warm {
  background-color: var(--color-surface-warm);
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-surface);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-surface);
}

.section--dark .text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .overline {
  color: var(--color-accent);
}

/* Center text */
.text-center {
  text-align: center;
}

/* Hide visually but keep for screen readers */
.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;
}

/* ========================================
   ICONS
   ======================================== */

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--md {
  width: 24px;
  height: 24px;
}

.icon--lg {
  width: 32px;
  height: 32px;
}

.icon--xl {
  width: 48px;
  height: 48px;
}

.icon--accent {
  color: var(--color-accent);
}

.icon--success {
  color: var(--color-success);
}

/* ========================================
   BADGES
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-full);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.badge--success {
  background-color: var(--color-success-light);
  color: var(--color-success);
}

.badge--dark {
  background-color: var(--color-dark);
  color: var(--color-surface);
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background-color: var(--color-surface);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.social-proof__stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.social-proof__stars svg {
  width: 16px;
  height: 16px;
}

.social-proof__text {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.social-proof__divider {
  width: 1px;
  height: 16px;
  background-color: var(--color-border);
}

/* ========================================
   TRUST CHECKMARKS
   ======================================== */

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  list-style: none;
}

.trust-list__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
}

.trust-list__icon {
  width: 18px;
  height: 18px;
  color: var(--color-success);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s var(--ease-out) forwards;
}

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

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

.hide-mobile {
  display: none !important;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block !important;
  }

  .hide-desktop {
    display: none !important;
  }
}