/** Shopify CDN: Minification failed

Line 91: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);
  /* Named --ag-text-base, NOT --ag-text-body: that name is already the body
     text COLOUR declared above. Declaring both made the later one win, so
     `body.ag-body { color: var(--ag-text-body) }` resolved to a length,
     became invalid, and the body text colour silently never applied. */
  --ag-text-base: 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-base);
  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-base);
  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;
  }
}

/* ============================================
   MODAL / POP-UP
   Layering note: the KVKK consent banner sits at z-index 9999 and must stay
   above modals so consent is always resolvable. Modals use 9000.
   ============================================ */

.ag-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--ag-space-sm);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.ag-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.ag-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.ag-modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - var(--ag-space-md));
  overflow-y: auto;
  background: var(--ag-bg-white);
  border-radius: var(--ag-radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  padding: var(--ag-space-md);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-modal.is-open .ag-modal__panel {
  transform: translateY(0) scale(1);
}

.ag-modal__panel--sm {
  max-width: 400px;
}
.ag-modal__panel--lg {
  max-width: 720px;
}
.ag-modal__panel--xl {
  max-width: 960px;
}

/* Media-first variant: image bleeds to the panel edge */
.ag-modal__panel--media {
  padding: 0;
  overflow: hidden;
}
.ag-modal__panel--media .ag-modal__body {
  padding: var(--ag-space-md);
}
.ag-modal__media {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ag-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 46, 26, 0.06);
  color: var(--ag-text-dark);
  cursor: pointer;
  transition: background 0.2s ease;
}

.ag-modal__close:hover {
  background: rgba(26, 46, 26, 0.12);
}
.ag-modal__close:focus-visible {
  outline: 2px solid var(--ag-primary);
  outline-offset: 2px;
}

.ag-modal__eyebrow {
  display: inline-block;
  font-size: var(--ag-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ag-primary);
  margin-bottom: 0.6rem;
}

.ag-modal__title {
  font-family: var(--ag-font-heading);
  font-size: var(--ag-text-h3);
  line-height: 1.25;
  color: var(--ag-text-dark);
  margin: 0 0 0.8rem;
}

.ag-modal__text {
  font-size: var(--ag-text-base);
  line-height: 1.65;
  color: var(--ag-text-muted);
  margin: 0;
}

.ag-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: var(--ag-space-sm);
}

.ag-modal__footnote {
  display: block;
  margin-top: 1rem;
  font-size: var(--ag-text-xs);
  color: var(--ag-text-muted);
}

/* Video modals: 16:9 responsive iframe wrapper */
.ag-modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.ag-modal__video iframe,
.ag-modal__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.ag-modal-open {
  overflow: hidden;
}

@media (max-width: 749px) {
  .ag-modal {
    padding: 0;
    align-items: flex-end;
  }

  .ag-modal__panel,
  .ag-modal__panel--sm,
  .ag-modal__panel--lg,
  .ag-modal__panel--xl {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--ag-radius-md) var(--ag-radius-md) 0 0;
    transform: translateY(100%);
  }

  .ag-modal.is-open .ag-modal__panel {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ag-modal,
  .ag-modal__panel {
    transition: opacity 0.01ms linear;
  }

  .ag-modal__panel,
  .ag-modal.is-open .ag-modal__panel {
    transform: none;
  }
}
