/** Shopify CDN: Minification failed

Line 705:4 Unexpected "{"
Line 706:11 Expected ":"
Line 710:0 Unexpected ","

**/
/* ============================================
   AZENEIA — Global Design System
   az-sections.css
   Based on Stretch Theme Reference
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Instrument+Serif:ital@0;1&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors — exactly matched to Stretch reference */
  --az-cream: #F6F1ED;
  --az-dark: #321E1E;
  --az-gold: #E8C170;
  --az-olive: #5D644B;
  /* Exact Sage Green */
  --az-espresso: #321E1E;
  --az-sand: #C8A98D;
  --az-muted: #7A6055;
  --az-border: rgba(50, 30, 30, 0.08);

  /* Typography — Bricolage Grotesque + Instrument Sans */
  --az-font-heading: 'Bricolage Grotesque', sans-serif;
  --az-font-body: 'Instrument Sans', sans-serif;

  /* Spacing */
  --az-container-width: 1280px;
  --az-gutter: 40px;
  --az-gutter-mobile: 20px;

  /* Transitions */
  --az-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --az-transition-fast: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Border radius */
  --az-radius-sm: 4px;
  --az-radius-md: 8px;
  --az-radius-lg: 16px;
  --az-radius-full: 30px;
  /* Exact reference match */

  /* Shadows */
  --az-shadow: 0 4px 24px rgba(50, 30, 30, 0.06);
  --az-shadow-hover: 0 12px 40px rgba(50, 30, 30, 0.12);
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Apply brand fonts globally */
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--az-font-body);
  color: var(--az-dark);
  background: var(--az-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure common elements inherit */
input,
textarea,
button,
select {
  font-family: inherit;
}

.az-section-wrapper,
.az-section-wrapper * {
  font-family: inherit;
}

/* ---------- Container ---------- */
.az-container {
  max-width: var(--az-container-width);
  margin: 0 auto;
  padding: 0 var(--az-gutter);
}

@media screen and (min-width: 750px) {
  .template-index .az-container.az-header__inner {
    padding: 10px var(--az-gutter);
  }

  .template-product .az-container.az-header__inner {
    padding: 5px var(--az-gutter);
  }
}

@media screen and (max-width: 749px) {
  .az-container {
    padding: 0 var(--az-gutter-mobile);
  }
}

/* ---------- Utility Classes ---------- */
.az-text-center {
  text-align: center;
}

.az-text-left {
  text-align: left;
}

.az-text-right {
  text-align: right;
}

.az-hidden-mobile {
  display: block;
}

.az-hidden-desktop {
  display: none;
}

@media screen and (max-width: 989px) {
  .az-hidden-mobile {
    display: none !important;
  }

  .az-hidden-desktop {
    display: block !important;
  }
}

/* ---------- Scribble Highlight (Gold Underline) ---------- */
.az-highlight {
  position: relative;
  display: inline-block;
  color: inherit;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.az-highlight svg {
  position: absolute;
  bottom: -6px;
  left: -4px;
  width: calc(100% + 8px);
  height: 12px;
  overflow: visible;
  pointer-events: none;
}

.az-highlight svg path {
  fill: none;
  stroke: var(--az-gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.az-highlight.is-visible svg path,
.az-highlight.active svg path {
  stroke-dashoffset: 0;
}

/* Circle highlight variant */
.az-highlight--circle svg {
  bottom: -10px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 20px);
}

/* ---------- Section Headings ---------- */
.az-section__label {
  display: inline-block;
  font-family: var(--az-font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--az-muted);
  margin-bottom: 14px;
}

.az-section__heading {
  font-family: var(--az-font-heading);
  font-size: clamp(3.2rem, 5vw, 6.8rem);
  /* Exact 68px match from audit */
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  /* Exact Stretch match */
  color: var(--az-dark);
  margin: 0 0 20px;
}

.az-section__heading--lg {
  font-size: clamp(4rem, 7vw, 8rem);
}

.az-section__subheading {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--az-muted);
  margin: 0 0 16px 0;
  max-width: 560px;
}

.az-section__header {
  margin-bottom: 60px;
}

.az-section__header--center {
  text-align: center;
}

.az-section__header--center .az-section__subheading {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.az-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--az-font-body);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  /* Exact Stretch match */
  text-decoration: none;
  border-radius: var(--az-radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--az-transition);
  white-space: nowrap;
  line-height: 1;
}

/* Primary — dark fill */
.az-btn--primary {
  background: var(--az-dark);
  color: var(--az-white);
  border-color: var(--az-dark);
}

.az-btn--primary:hover {
  background: transparent;
  color: var(--az-dark);
  transform: translateY(-2px);
  box-shadow: var(--az-shadow);
}

/* Outline — transparent */
.az-btn--outline {
  background: transparent;
  color: var(--az-dark);
  border-color: var(--az-dark);
}

.az-btn--outline:hover {
  background: var(--az-dark);
  color: var(--az-white);
  transform: translateY(-2px);
}

/* Ghost on dark backgrounds */
.az-btn--ghost {
  background: transparent;
  color: var(--az-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.az-btn--ghost:hover {
  background: var(--az-white);
  color: var(--az-dark);
}

/* Gold accent */
.az-btn--gold {
  background: var(--az-gold);
  color: var(--az-dark);
  border-color: var(--az-gold);
}

.az-btn--gold:hover {
  background: transparent;
  color: var(--az-gold);
  transform: translateY(-2px);
}

.az-btn--sm {
  padding: 10px 24px;
  font-size: 1.2rem;
}

.az-btn--lg {
  padding: 18px 48px;
  font-size: 1.5rem;
}

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

/* ---------- Scroll Reveal Animations ---------- */
@keyframes az-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes az-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes az-slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes az-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal base states */
[data-az-reveal],
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

[data-az-reveal="fade"],
.reveal-on-scroll--fade {
  transform: none;
}

[data-az-reveal="slide-left"] {
  transform: translateX(30px);
}

[data-az-reveal="scale"] {
  transform: scale(0.96);
}

[data-az-reveal].is-visible,
.reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

/* Staggered children */
[data-az-reveal-parent],
.reveal-stagger-parent {
  --az-stagger-delay: 0.1s;
}

[data-az-reveal-parent]>*,
.reveal-stagger-parent>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

[data-az-reveal-parent].is-visible>*,
.reveal-stagger-parent.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

[data-az-reveal-parent].is-visible>*:nth-child(1) {
  transition-delay: calc(var(--az-stagger-delay) * 1);
}

[data-az-reveal-parent].is-visible>*:nth-child(2) {
  transition-delay: calc(var(--az-stagger-delay) * 2);
}

[data-az-reveal-parent].is-visible>*:nth-child(3) {
  transition-delay: calc(var(--az-stagger-delay) * 3);
}

[data-az-reveal-parent].is-visible>*:nth-child(4) {
  transition-delay: calc(var(--az-stagger-delay) * 4);
}

[data-az-reveal-parent].is-visible>*:nth-child(5) {
  transition-delay: calc(var(--az-stagger-delay) * 5);
}

[data-az-reveal-parent].is-visible>*:nth-child(6) {
  transition-delay: calc(var(--az-stagger-delay) * 6);
}

/* ---------- Trust Bar ---------- */
.az-trust-bar {
  border-top: 1px solid var(--az-border);
  border-bottom: 1px solid var(--az-border);
}

.az-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.az-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--az-border);
}

.az-trust-bar__item:last-child {
  border-right: none;
}

.az-trust-bar__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--az-dark);
}

.az-trust-bar__icon svg {
  width: 100%;
  height: 100%;
}

.az-trust-bar__title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--az-dark);
  margin: 0 0 4px;
}

.az-trust-bar__desc {
  font-size: 1.3rem;
  color: var(--az-muted);
  margin: 0;
  line-height: 1.4;
}

@media screen and (max-width: 989px) {
  .az-trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .az-trust-bar__item:nth-child(2) {
    border-right: none;
  }

  .az-trust-bar__item:nth-child(1),
  .az-trust-bar__item:nth-child(2) {
    border-bottom: 1px solid var(--az-border);
  }
}

@media screen and (max-width: 749px) {
  .az-trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .az-trust-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--az-border);
  }

  .az-trust-bar__item:last-child {
    border-bottom: none;
  }
}

/* ---------- Star Rating ---------- */
.az-stars {
  display: flex;
  gap: 2px;
}

.az-star {
  width: 14px;
  height: 14px;
  fill: var(--az-gold);
  color: var(--az-gold);
}

/* ---------- Routine Steps ---------- */
.az-routine__header {
  margin-bottom: 56px;
}

.az-routine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.az-routine__step {
  text-align: center;
}

.az-routine__step-number {
  font-family: var(--az-font-heading);
  font-size: 8rem;
  font-weight: 400;
  color: var(--az-sand);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -16px;
}

.az-routine__step-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--az-radius-md);
}

.az-routine__step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.az-routine__step:hover .az-routine__step-img {
  transform: scale(1.04);
}

.az-routine__step-info {
  margin-top: 20px;
}

.az-routine__step-name {
  font-family: var(--az-font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--az-dark);
  margin: 0 0 8px;
}

.az-routine__step-desc {
  font-size: 1.4rem;
  color: var(--az-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}

/* ---------- Bundle / Kit ---------- */
.az-bundle__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---------- Responsive Helpers ---------- */
@media screen and (max-width: 989px) {
  .az-routine__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .az-bundle__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 749px) {
  .az-routine__grid {
    grid-template-columns: 1fr;
  }

  .az-section__heading {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .az-section__header {
    margin-bottom: 36px;
  }

  /* Stack hero action buttons vertically on narrow screens */
  .az-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .az-hero__actions .az-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Fix ingredient card placeholder SVG sizing */
  .az-ingredient-card__media svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin: auto;
    display: block;
  }

  /* Ensure journal cards have visible placeholder */
  .az-journal-card__media {
    aspect-ratio: 3/2;
  }

  .az-journal-card__media svg {
    width: 100%;
    height: 100%;
  }

  /* Fix before/after slider stacking on mobile */
  .az-ba-slider {
    min-height: 300px;
  }

  .az-ba-slider__before img,
  .az-ba-slider__after img {
    width: 100% !important;
  }

  /* Ensure CTA buttons don't overflow */
  .az-cta__actions {
    width: 100%;
  }

  .az-cta__actions .az-btn {
    width: 100%;
  }
}

/* ---------- Hand-drawn Heading Accent (shared) ---------- */
.az-heading-accent {
  position: relative;
  display: inline;
  white-space: nowrap;
}

.az-heading-accent__line {
  position: absolute;
  bottom: -0.25em;
  left: 0;
  width: 100%;
  height: 0.4em;
  pointer-events: none;
  overflow: visible;
}

/* ---------- PDP Section Spacing ---------- */
.az-benefits,
.az-ingredients,
#az-how-to-use- {
    {
    section.id
  }
}

,
.az-product-reviews-split,
.az-routine,
.az-faq {
  /* Sections are flush by default; padding is set per section */
  position: relative;
}

/* Dark sections sit flush against each other — no gap needed */
.az-ingredients+.az-benefits,
.az-benefits+.az-ingredients {
  margin-top: 0;
}