/** Shopify CDN: Minification failed

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

**/
/* ============================================
   AURAGARDYN DESIGN SYSTEM
   Custom CSS for AuraGardyn Shopify Theme
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors - Primary (Nature Green) */
  --ag-primary: #1B5E3B;
  --ag-primary-light: #2D8B57;
  --ag-primary-dark: #0F3D25;
  --ag-primary-rgb: 27, 94, 59;

  /* Colors - Accent (CTA Orange-Red) */
  --ag-accent: #E63917;
  --ag-accent-hover: #CC2E10;
  --ag-accent-rgb: 230, 57, 23;

  /* Colors - Backgrounds */
  --ag-bg-warm: #FAF7F2;
  --ag-bg-section: #F0EDE6;
  --ag-bg-white: #FFFFFF;
  --ag-bg-dark: #1A2E1A;

  /* Colors - Text */
  --ag-text-dark: #1A2E1A;
  --ag-text-body: #3D4F3D;
  --ag-text-muted: #6B7B6B;
  --ag-text-light: #FFFFFF;

  /* Typography */
  --ag-font-heading: 'Playfair Display', Georgia, serif;
  --ag-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes - Fluid
     NOTE: Dawn sets html { font-size: 62.5% } so 1rem = 10px (not 16px).
     All rem values below are pre-multiplied by 1.6 so they render at the
     intended "16px-root" sizes (e.g. 1.6rem = 16px, 1.4rem = 14px). */
  --ag-text-hero: clamp(4.4rem, 6vw, 7.2rem);
  --ag-text-h1: clamp(3.6rem, 4vw, 5.6rem);
  --ag-text-h2: clamp(2.8rem, 3vw, 4rem);
  --ag-text-h3: clamp(2rem, 2vw, 2.8rem);
  --ag-text-h4: clamp(1.76rem, 1.5vw, 2.16rem);
  --ag-text-body: 1.6rem;
  --ag-text-small: 1.4rem;
  --ag-text-xs: 1.2rem;

  /* Spacing (also scaled 1.6x to compensate for 62.5% root) */
  --ag-space-xs: 0.8rem;
  --ag-space-sm: 1.6rem;
  --ag-space-md: 3.2rem;
  --ag-space-lg: 6.4rem;
  --ag-space-xl: 9.6rem;
  --ag-space-2xl: 12.8rem;

  /* Border Radius */
  --ag-radius-sm: 12px;
  --ag-radius-md: 20px;
  --ag-radius-lg: 30px;
  --ag-radius-pill: 100px;

  /* Shadows */
  --ag-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --ag-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --ag-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --ag-shadow-glow: 0 0 30px rgba(27, 94, 59, 0.15);

  /* Transitions */
  --ag-transition-fast: 0.2s ease;
  --ag-transition-base: 0.3s ease;
  --ag-transition-slow: 0.6s ease;
  --ag-transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --ag-container-max: 1320px;
  --ag-container-narrow: 900px;
  --ag-container-padding: clamp(1.6rem, 3vw, 3.2rem);
  --ag-header-height: 80px;
}

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* --- Global Overrides --- */
body.ag-body {
  font-family: var(--ag-font-body) !important;
  color: var(--ag-text-body);
  background-color: var(--ag-bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
.ag-heading {
  font-family: var(--ag-font-heading);
  color: var(--ag-text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.ag-heading--hero { font-size: var(--ag-text-hero); }
.ag-heading--h1 { font-size: var(--ag-text-h1); }
.ag-heading--h2 { font-size: var(--ag-text-h2); }
.ag-heading--h3 { font-size: var(--ag-text-h3); }
.ag-heading--h4 { font-size: var(--ag-text-h4); }

.ag-text-body { font-size: var(--ag-text-body); line-height: 1.7; }
.ag-text-small { font-size: var(--ag-text-small); }
.ag-text-muted { color: var(--ag-text-muted); }

/* --- Container --- */
.ag-container {
  width: 100%;
  max-width: var(--ag-container-max);
  margin: 0 auto;
  padding-left: var(--ag-container-padding);
  padding-right: var(--ag-container-padding);
}

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

/* --- Section Spacing --- */
.ag-section {
  padding-top: var(--ag-space-xl);
  padding-bottom: var(--ag-space-xl);
}

@media (max-width: 749px) {
  .ag-section {
    padding-top: var(--ag-space-lg);
    padding-bottom: var(--ag-space-lg);
  }
}

.ag-section--warm { background-color: var(--ag-bg-warm); }
.ag-section--alt { background-color: var(--ag-bg-section); }
.ag-section--white { background-color: var(--ag-bg-white); }
.ag-section--dark {
  background-color: var(--ag-bg-dark);
  color: var(--ag-text-light);
}
.ag-section--dark .ag-heading { color: var(--ag-text-light); }

/* --- Buttons --- */
.ag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  border-radius: var(--ag-radius-pill);
  font-family: var(--ag-font-body);
  font-size: var(--ag-text-body);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ag-transition-base);
  white-space: nowrap;
}

.ag-btn--primary {
  background-color: var(--ag-accent);
  color: var(--ag-text-light);
  border-color: var(--ag-accent);
}
.ag-btn--primary:hover {
  background-color: var(--ag-accent-hover);
  border-color: var(--ag-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--ag-accent-rgb), 0.3);
}

.ag-btn--secondary {
  background-color: var(--ag-primary);
  color: var(--ag-text-light);
  border-color: var(--ag-primary);
}
.ag-btn--secondary:hover {
  background-color: var(--ag-primary-light);
  border-color: var(--ag-primary-light);
  transform: translateY(-2px);
}

.ag-btn--outline {
  background-color: transparent;
  color: var(--ag-primary);
  border-color: var(--ag-primary);
}
.ag-btn--outline:hover {
  background-color: var(--ag-primary);
  color: var(--ag-text-light);
}

.ag-btn--lg {
  padding: 1.76rem 4rem;
  font-size: 1.76rem;
}

/* Button Arrow Animation */
.ag-btn .ag-btn-arrow {
  transition: transform var(--ag-transition-base);
  display: inline-block;
}
.ag-btn:hover .ag-btn-arrow {
  transform: translateX(4px);
}

/* --- Cards --- */
.ag-card {
  background: var(--ag-bg-white);
  border-radius: var(--ag-radius-lg);
  overflow: hidden;
  box-shadow: var(--ag-shadow-sm);
  transition: all var(--ag-transition-base);
}
.ag-card:hover {
  box-shadow: var(--ag-shadow-md);
  transform: translateY(-4px);
}
.ag-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ag-card__body {
  padding: var(--ag-space-md);
}

/* --- Grid Layouts --- */
.ag-grid {
  display: grid;
  gap: var(--ag-space-md);
}
.ag-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ag-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ag-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 749px) {
  .ag-grid--2,
  .ag-grid--3,
  .ag-grid--4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 750px) and (max-width: 989px) {
  .ag-grid--3,
  .ag-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Split Layout (Image + Text) --- */
.ag-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ag-space-lg);
  align-items: center;
}
.ag-split--reverse { direction: rtl; }
.ag-split--reverse > * { direction: ltr; }

@media (max-width: 749px) {
  .ag-split {
    grid-template-columns: 1fr;
    gap: var(--ag-space-md);
  }
}

/* --- Scroll Reveal Animations --- */
.ag-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ag-reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-reveal--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.ag-reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-reveal--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.ag-reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-reveal--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for child elements */
.ag-stagger > *:nth-child(1) { transition-delay: 0s; }
.ag-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.ag-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.ag-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.ag-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.ag-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* --- Trust Badge Bar --- */
.ag-trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--ag-space-lg);
  flex-wrap: wrap;
  padding: var(--ag-space-md) 0;
}
.ag-trust-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 500;
  color: var(--ag-text-dark);
  font-size: var(--ag-text-small);
}
.ag-trust-item svg,
.ag-trust-item .ag-trust-icon {
  width: 24px;
  height: 24px;
  color: var(--ag-primary);
  flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.ag-accordion {
  border-top: 1px solid rgba(var(--ag-primary-rgb), 0.15);
}
.ag-accordion__item {
  border-bottom: 1px solid rgba(var(--ag-primary-rgb), 0.15);
}
.ag-accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ag-font-body);
  font-size: 1.76rem;
  font-weight: 600;
  color: var(--ag-text-dark);
  text-align: left;
}
.ag-accordion__trigger:hover {
  color: var(--ag-primary);
}
.ag-accordion__icon {
  transition: transform var(--ag-transition-base);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.ag-accordion__item.is-open .ag-accordion__icon {
  transform: rotate(45deg);
}
.ag-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.ag-accordion__item.is-open .ag-accordion__content {
  max-height: 500px;
  padding-bottom: 2rem;
}
.ag-accordion__content p {
  color: var(--ag-text-muted);
  line-height: 1.7;
}

/* --- Testimonial Slider --- */
.ag-slider {
  position: relative;
  overflow: hidden;
}
.ag-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-slider__slide {
  min-width: 100%;
  padding: 0 var(--ag-space-md);
  text-align: center;
}
.ag-slider__quote {
  font-family: var(--ag-font-heading);
  font-size: var(--ag-text-h3);
  font-style: italic;
  color: var(--ag-text-dark);
  margin-bottom: var(--ag-space-sm);
  line-height: 1.4;
}
.ag-slider__author {
  font-size: var(--ag-text-small);
  color: var(--ag-text-muted);
  font-weight: 500;
}
.ag-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--ag-space-md);
}
.ag-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--ag-primary-rgb), 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--ag-transition-base);
}
.ag-slider__dot.is-active {
  background: var(--ag-primary);
  transform: scale(1.2);
}

/* --- Placeholder Image Styling --- */
.ag-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--ag-space-sm);
  background: linear-gradient(135deg, var(--ag-bg-section) 0%, #E8E3D9 100%);
  border: 2px dashed rgba(var(--ag-primary-rgb), 0.2);
  border-radius: var(--ag-radius-md);
  color: var(--ag-text-muted);
  font-size: var(--ag-text-small);
  padding: var(--ag-space-md);
  text-align: center;
  min-height: 300px;
}
.ag-placeholder__icon {
  font-size: 4.8rem;
  opacity: 0.4;
}
.ag-placeholder__label {
  font-weight: 600;
  color: var(--ag-text-dark);
}
.ag-placeholder__desc {
  max-width: 280px;
  line-height: 1.5;
}

/* --- Rating Stars --- */
.ag-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5A623;
}

/* --- Section Header (centered) --- */
.ag-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--ag-space-lg);
}
.ag-section-header p {
  margin-top: var(--ag-space-sm);
  color: var(--ag-text-muted);
  font-size: 1.76rem;
}

/* --- Utility Classes --- */
.ag-text-center { text-align: center; }
.ag-text-left { text-align: left; }
.ag-mt-sm { margin-top: var(--ag-space-sm); }
.ag-mt-md { margin-top: var(--ag-space-md); }
.ag-mt-lg { margin-top: var(--ag-space-lg); }
.ag-mb-sm { margin-bottom: var(--ag-space-sm); }
.ag-mb-md { margin-bottom: var(--ag-space-md); }
.ag-mb-lg { margin-bottom: var(--ag-space-lg); }
.ag-hidden-mobile { display: block; }
.ag-hidden-desktop { display: none; }

@media (max-width: 749px) {
  .ag-hidden-mobile { display: none; }
  .ag-hidden-desktop { display: block; }
}
