/** Shopify CDN: Minification failed

Line 882:0 Unexpected "}"

**/
/* Aliara — Theme Color System & Global Mobile Styles + Animations */

/* ============================================================
   CSS Custom Properties
============================================================ */
:root {
  --aliara-bg:           #F7F1ED;
  --aliara-text:         #1A1F2E;
  --aliara-accent:       #D9C8B6;
  --aliara-accent-dark:  #B8A090;
  --aliara-dark:         #1A1F2E;
  --aliara-border:       #E0D5CC;
  --aliara-card-bg:      #ffffff;
  --aliara-muted:        #8C7B6E;
}

/* ============================================================
   Smooth Scrolling
============================================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================================
   Scroll Animation Base States
   Elements start invisible and animate in via JS + IntersectionObserver.
   .scroll-animate is the opt-in class; variant modifiers control the effect.
============================================================ */
.scroll-animate {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 800ms;
  transition-timing-function: ease-out;
  will-change: opacity, transform;
}

/* Variant: slide up (text sections, headings, content blocks) */
.scroll-animate--slide-up {
  transform: translateY(40px);
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Variant: scale in (product cards) */
.scroll-animate--scale {
  transform: scale(0.95);
  transition-duration: 1200ms;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Fired state — element is in viewport */
.scroll-animate.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children: each child delays by its index (set inline via JS) */
.scroll-animate--stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease-out, transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}
.scroll-animate--stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Hover Effects — Buttons
============================================================ */
.aliara-hero__btn,
.aliara-lifestyle-banner__btn,
.aliara-brand-promise__btn,
.aliara-promo__btn,
.aliara-fullwidth-image__btn-primary,
.aliara-fullwidth-image__btn-secondary,
.aliara-categories__btn,
.aliara-best-sellers__btn,
.aliara-how-works__btn,
[class*="aliara-"][class*="__btn"] {
  transition: background-color 300ms ease, color 300ms ease,
              border-color 300ms ease, box-shadow 300ms ease,
              transform 300ms ease;
}
[class*="aliara-"][class*="__btn"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 31, 46, 0.18);
}

/* ============================================================
   Hover Effects — Product Cards
============================================================ */
.aliara-best-sellers__card,
.aliara-cart-upsell__card {
  transition: box-shadow 400ms ease, transform 400ms ease;
}
.aliara-best-sellers__card:hover,
.aliara-cart-upsell__card:hover {
  box-shadow: 0 8px 28px rgba(26, 31, 46, 0.12);
  transform: translateY(-3px);
}

/* ============================================================
   Hover Effects — Images (2% scale, hardware-accelerated)
============================================================ */
.aliara-best-sellers__card img,
.aliara-categories__card img,
.aliara-cart-upsell__card img,
.aliara-lifestyle-banner__img,
.aliara-fullwidth-image__img {
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.aliara-best-sellers__card:hover img,
.aliara-categories__card:hover img,
.aliara-cart-upsell__card:hover img {
  transform: scale(1.02);
}


/* ============================================================
   Global Mobile — @media (max-width: 749px)
============================================================ */
@media (max-width: 749px) {

  /* Section heading sizes */
  .aliara-hero__heading             { font-size: 32px; }
  .aliara-lifestyle-banner__heading { font-size: 28px; }
  .aliara-fullwidth-image__heading  { font-size: 28px; }
  .aliara-brand-promise__heading    { font-size: 26px; }
  .aliara-best-sellers__heading,
  .aliara-categories__heading,
  .aliara-testimonials__heading,
  .aliara-shop-benefits__heading    { font-size: 22px; }

  /* All Aliara CTA buttons full width on mobile */
  .aliara-hero__btn,
  .aliara-lifestyle-banner__btn,
  .aliara-brand-promise__btn,
  .aliara-promo__btn,
  .aliara-fullwidth-image__btn-primary,
  .aliara-fullwidth-image__btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ============================================================
   Product Page (ap- = Aliara Product prefix)
   Shared CSS for all aliara-product-*.liquid sections.
============================================================ */

/* --- Shared utilities --- */
.ap-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #D9C8B6; font-weight: 700; display: block; margin-bottom: 12px; }
.ap-heading  { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; color: #1A1F2E; font-family: Georgia, 'Times New Roman', serif; margin: 0 0 20px; line-height: 1.2; }
.ap-subheading { font-size: 16px; color: #8C7B6E; line-height: 1.7; margin: 0; }

/* --- Buttons --- */
.ap-btn {
  display: block; width: 100%; padding: 18px 36px;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; text-align: center; text-decoration: none;
  box-sizing: border-box;
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}
.ap-btn--dark { background: #1A1F2E; color: #fff; }
.ap-btn--dark:hover { background: #2E2420; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,31,46,.25); }
.ap-btn--gold { background: #C4A882; color: #1A1F2E; }
.ap-btn--gold:hover { background: #d4b892; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,168,130,.3); }
.ap-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.ap-variant-select {
  width: 100%; padding: 13px 40px 13px 16px; font-size: 14px; color: #1A1F2E;
  border: 2px solid #E0D5CC; background: #fff; margin-bottom: 16px; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231A1F2E' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
  box-sizing: border-box;
}

/* --- Problem --- */
.ap-problem { padding: 80px 0; background: #FFFFFF; }
.ap-problem__inner { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 40px; box-sizing: border-box; }
.ap-problem__body { font-size: 16px; color: #8C7B6E; line-height: 1.8; margin: 0 0 40px; }
.ap-problem__list { display: flex; flex-direction: column; gap: 14px; }
.ap-problem__item { background: #fff; padding: 20px 24px; border-left: 4px solid #C4A882; text-align: left; font-size: 15px; color: #1A1F2E; font-weight: 500; line-height: 1.5; }
.ap-problem__item--cta { border-left-color: #D9C8B6; color: #D9C8B6; font-weight: 700; }

/* --- Solution --- */
.ap-solution { padding: 80px 0; background: #fff; }
.ap-solution__inner { max-width: 960px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.ap-solution__header { text-align: center; margin-bottom: 48px; }
.ap-solution__lead { font-size: 15px; font-weight: 600; color: #1A1F2E; text-align: center; margin: 0 0 24px; }
.ap-solution__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ap-solution__item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #1A1F2E; padding: 24px 16px; background: #F7F1ED; border-radius: 8px; border-bottom: none; text-align: center; }
.ap-solution__item::before { content: '✓'; color: #C4A882; font-weight: 800; font-size: 22px; flex-shrink: 0; line-height: 1; }

/* --- Results Carousel --- */
.ap-results { padding: 80px 0; background: #E8F0F7; }
.ap-results__inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.ap-results__header { text-align: center; margin-bottom: 48px; }
.ap-results__subline { font-size: 18px; font-weight: 600; color: #D9C8B6; margin: 8px 0 0; }
.ap-results__track { display: grid; }
.ap-results__slide { grid-area: 1 / 1; opacity: 0; transition: opacity 400ms ease; pointer-events: none; }
.ap-results__slide.is-active { opacity: 1; pointer-events: auto; }
.ap-results__img-wrap { width: 100%; max-width: 680px; margin: 0 auto; aspect-ratio: 4 / 3; background: linear-gradient(135deg, #c8dff2, #9bbdd8); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; overflow: hidden; }
.ap-results__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ap-results__img-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(217,200,182,.5); }
.ap-results__caption { text-align: center; margin-top: 16px; font-size: 13px; color: #8C7B6E; font-style: italic; }
.ap-results__controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 28px; }
.ap-results__arrow { background: #1A1F2E; color: #fff; border: none; cursor: pointer; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 250ms; }
.ap-results__arrow:hover { background: #D9C8B6; }
.ap-results__arrow svg { width: 20px; height: 20px; fill: #fff; }
.ap-results__dots { display: flex; gap: 8px; align-items: center; }
.ap-results__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26,31,46,.2); border: none; cursor: pointer; padding: 0; transition: background 300ms, transform 300ms; }
.ap-results__dot.is-active { background: #D9C8B6; transform: scale(1.4); }
.ap-results__disclaimer { text-align: center; margin-top: 20px; font-size: 12px; color: #999; }

/* --- How It Works --- */
.ap-how { padding: 80px 0; background: #fff; }
.ap-how__inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.ap-how__header { text-align: center; margin-bottom: 52px; }
.ap-how__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ap-how__step { text-align: center; padding: 36px 20px 28px; background: #F7F1ED; border-top: 3px solid #D9C8B6; }
.ap-how__num { font-size: 46px; font-weight: 800; color: #D9C8B6; opacity: .22; font-family: Georgia, serif; display: block; line-height: 1; margin-bottom: 14px; }
.ap-how__icon { width: 40px; height: 40px; fill: #D9C8B6; margin: 0 auto 14px; display: block; }
.ap-how__title { font-size: 15px; font-weight: 700; color: #1A1F2E; margin: 0 0 8px; }
.ap-how__text { font-size: 13px; color: #8C7B6E; line-height: 1.65; margin: 0; }
.ap-how__footer { text-align: center; margin-top: 40px; font-size: 16px; color: #8C7B6E; font-style: italic; }

/* --- Benefits --- */
.ap-benefits { padding: 80px 0; background: #FFFFFF; }
.ap-benefits__inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.ap-benefits__header { text-align: center; margin-bottom: 52px; }
.ap-benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ap-benefit-card { background: #fff; padding: 36px 32px; text-align: center; }
.ap-benefit-card__icon { width: 40px; height: 40px; fill: #D9C8B6; margin: 0 auto 18px; display: block; }
.ap-benefit-card__title { font-size: 18px; font-weight: 700; color: #1A1F2E; margin: 0 0 10px; font-family: Georgia, serif; }
.ap-benefit-card__text { font-size: 14px; color: #8C7B6E; line-height: 1.75; margin: 0; }

/* --- Comparison --- */
.ap-comparison { padding: 80px 0; background: #fff; }
.ap-comparison__inner { max-width: 900px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.ap-comparison__header { text-align: center; margin-bottom: 48px; }
.ap-comparison__table { width: 100%; border-collapse: collapse; }
.ap-comparison__table th { background: #1A1F2E; color: #fff; padding: 16px 20px; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.ap-comparison__table th:first-child { text-align: left; width: 38%; }
.ap-comparison__table td { padding: 14px 20px; text-align: center; font-size: 14px; color: #1A1F2E; border-bottom: 1px solid #e8edf3; }
.ap-comparison__table td:first-child { text-align: left; font-weight: 600; }
.ap-comparison__table tr:nth-child(even) td { background: #F7F1ED; }
.ap-comparison__table tr:nth-child(odd) td { background: #fff; }
.ap-check { color: #D9C8B6; font-size: 18px; font-weight: 800; }
.ap-cross { color: #ccc; font-size: 18px; }
.ap-limited { color: #C4A882; font-size: 12px; font-weight: 600; letter-spacing: .5px; }

/* --- Product Testimonials (ap-testimonials) --- */
.ap-testimonials { padding: 80px 0; background: #E8F0F7; }
.ap-testimonials__inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.ap-testimonials__header { text-align: center; margin-bottom: 52px; }
.ap-testimonials__carousel { max-width: 60%; margin: 0 auto; }
.ap-testimonials__track { display: grid; }
.ap-testimonials__slide { grid-area: 1 / 1; opacity: 0; transition: opacity 500ms ease; pointer-events: none; }
.ap-testimonials__slide.is-active { opacity: 1; pointer-events: auto; }
.ap-testimonials__card { background: #fff; padding: 56px; box-shadow: 0 4px 32px rgba(26,31,46,.10), 0 1px 6px rgba(26,31,46,.06); text-align: center; }
.ap-testimonials__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 26px; }
.ap-testimonials__star { color: #F5A623; font-size: 20px; }
.ap-testimonials__text { font-size: 22px; color: #1A1F2E; line-height: 1.6; margin: 0 0 30px; font-style: italic; font-family: Georgia, serif; }
.ap-testimonials__author { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ap-testimonials__name { font-size: 14px; font-weight: 700; color: #1A1F2E; margin: 0; }
.ap-testimonials__badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: #D9C8B6; letter-spacing: 1px; text-transform: uppercase; background: rgba(217,200,182,.12); padding: 4px 10px; border-radius: 20px; }
.ap-testimonials__badge svg { width: 10px; height: 10px; fill: #D9C8B6; flex-shrink: 0; }
.ap-testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.ap-testimonials__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26,31,46,.2); border: none; cursor: pointer; padding: 0; transition: background 300ms, transform 300ms; }
.ap-testimonials__dot.is-active { background: #D9C8B6; transform: scale(1.35); }

/* --- Science --- */
.ap-science { padding: 80px 0; background: #FFFFFF; }
.ap-science__inner { max-width: 800px; margin: 0 auto; padding: 0 40px; text-align: center; box-sizing: border-box; }
.ap-science__body { font-size: 16px; color: #444; line-height: 1.85; margin: 0; }
.ap-science__body + .ap-science__body { margin-top: 22px; }

/* --- Result Blocks --- */
.ap-result-block { padding: 80px 0; }
.ap-result-block:nth-child(odd)  { background: #FFFFFF; }
.ap-result-block:nth-child(even) { background: #fff; }
.ap-result-block__inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; display: flex; gap: 64px; align-items: center; box-sizing: border-box; }
.ap-result-block__inner--reverse { flex-direction: row-reverse; }
.ap-result-block__content, .ap-result-block__media { flex: 1 1 50%; }
.ap-result-block__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ap-result-block__placeholder { width: 100%; aspect-ratio: 4 / 3; background: linear-gradient(145deg, #e4d9c8, #cabb9e); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.ap-result-block__placeholder svg { width: 48px; height: 48px; fill: rgba(196,168,130,.4); }
.ap-result-block__placeholder-text { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(196,168,130,.5); }
.ap-result-block__eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #C4A882; font-weight: 700; display: block; margin-bottom: 12px; }
.ap-result-block__heading { font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; color: #1A1F2E; font-family: Georgia, serif; margin: 0 0 16px; line-height: 1.25; }
.ap-result-block__text { font-size: 15px; color: #8C7B6E; line-height: 1.8; margin: 0; }

/* --- FAQ --- */
.ap-faq { padding: 80px 0; background: #fff; }
.ap-faq__inner { max-width: 760px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.ap-faq__header { text-align: center; margin-bottom: 48px; }
.ap-faq__item { border-bottom: 1px solid #e8edf3; }
.ap-faq__question { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 16px; font-weight: 600; color: #1A1F2E; text-align: left; gap: 16px; transition: color 300ms; }
.ap-faq__question:hover { color: #D9C8B6; }
.ap-faq__icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; transition: transform 300ms ease; }
.ap-faq__answer { overflow: hidden; max-height: 0; transition: max-height 400ms ease; }
.ap-faq__answer-text { font-size: 15px; color: #8C7B6E; line-height: 1.8; padding: 0 0 22px; }
.ap-faq__item.is-open .ap-faq__icon { transform: rotate(45deg); }
.ap-faq__item.is-open .ap-faq__answer { max-height: 500px; }

/* --- Final CTA --- */
.ap-final { padding: 80px 0; background: #1A1F2E; }
.ap-final__inner { max-width: 700px; margin: 0 auto; padding: 0 40px; text-align: center; box-sizing: border-box; }
.ap-final__heading { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: #fff; font-family: Georgia, serif; margin: 0 0 20px; line-height: 1.2; }
.ap-final__desc { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin: 0 0 36px; }
.ap-final__checks { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 28px; margin-bottom: 40px; }
.ap-final__check { font-size: 14px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 8px; font-weight: 500; }
.ap-final__check::before { content: '✓'; color: #D9C8B6; font-weight: 800; }
.ap-final__secure { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .5px; }

/* --- Product Page Mobile --- */
@media (max-width: 749px) {
  .ap-problem, .ap-solution, .ap-results, .ap-how, .ap-benefits,
  .ap-testimonials, .ap-science, .ap-result-block, .ap-faq, .ap-final {
    overflow-x: hidden;
  }
  .ap-problem { padding: 48px 0; }
  .ap-problem__inner { padding: 0 20px; }
  .ap-solution { padding: 48px 0; }
  .ap-solution__inner { padding: 0 20px; }
  .ap-solution__grid { grid-template-columns: 1fr; }
  .ap-results { padding: 48px 0; }
  .ap-results__inner { padding: 0 20px; }
  .ap-results__img-wrap { max-width: 100%; }
  .ap-how { padding: 48px 0; }
  .ap-how__inner { padding: 0 20px; }
  .ap-how__steps { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ap-how__step { padding: 24px 14px 20px; min-width: 0; word-break: break-word; overflow: hidden; }
  .ap-benefits { padding: 48px 0; }
  .ap-benefits__inner { padding: 0 20px; }
  .ap-benefits__grid { grid-template-columns: 1fr; }
  .ap-comparison { padding: 48px 0; }
  .ap-comparison__inner { padding: 0 16px; overflow-x: auto; }
  .ap-comparison__table th, .ap-comparison__table td { padding: 10px 12px; font-size: 12px; }
  .ap-testimonials { padding: 48px 0; }
  .ap-testimonials__inner { padding: 0 20px; }
  .ap-testimonials__carousel { max-width: 92%; }
  .ap-testimonials__card { padding: 28px 20px; }
  .ap-testimonials__text { font-size: 17px; }
  .ap-science { padding: 48px 0; }
  .ap-science__inner { padding: 0 20px; }
  .ap-result-block { padding: 48px 0; }
  .ap-result-block__inner, .ap-result-block__inner--reverse { flex-direction: column; gap: 28px; padding: 0 20px; }
  .ap-faq { padding: 48px 0; }
  .ap-faq__inner { padding: 0 20px; }
  .ap-faq__question { font-size: 15px; padding: 18px 0; }
  .ap-final { padding: 48px 0; }
  .ap-final__inner { padding: 0 20px; }
  .ap-final__checks { flex-direction: column; align-items: center; gap: 10px; }
}

/* ============================================================
   SKIN RECOVERY QUIZ  (.aq-*)
   Scoped entirely to [data-aliara-quiz] — zero Shopify overrides
   ============================================================ */

/* --- Utility --- */
.aq-hidden { display: none !important; }

/* --- Page wrapper --- */
.aq-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  color: #1A1F2E;
}

/* --- Intro screen --- */
.aq-intro {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(160deg, #FFFFFF 0%, #fff 60%);
  text-align: center;
}
.aq-intro__inner { max-width: 640px; margin: 0 auto; }
.aq-intro__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4A882;
  background: rgba(196,168,130,.12);
  border: 1px solid rgba(196,168,130,.3);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.aq-intro__heading {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #1A1F2E;
  margin: 0 0 20px;
}
.aq-intro__sub {
  font-size: 16px;
  color: #8C7B6E;
  line-height: 1.7;
  margin: 0 0 32px;
}
.aq-intro__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.aq-intro__pill {
  font-size: 13px;
  font-weight: 600;
  color: #1A1F2E;
  background: #fff;
  border: 1px solid rgba(26,31,46,.12);
  padding: 7px 16px;
  border-radius: 40px;
}
.aq-start-btn {
  display: inline-block;
  background: #1A1F2E;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
}
.aq-start-btn:hover {
  background: #2d3652;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,31,46,.18);
}

/* --- Progress bar --- */
.aq-progress-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(26,31,46,.06);
  padding: 14px 24px;
  box-shadow: 0 2px 8px rgba(26,31,46,.04);
}
.aq-progress__inner { max-width: 640px; margin: 0 auto; }
.aq-progress__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #8C7B6E;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.aq-progress__track {
  height: 6px;
  background: rgba(26,31,46,.08);
  border-radius: 99px;
  overflow: hidden;
}
.aq-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #C4A882, #e8c99c);
  border-radius: 99px;
  width: 12.5%;
  transition: width 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Question container --- */
.aq-body {
  min-height: 60vh;
  padding: 48px 24px 64px;
  background: #fafaf9;
}

/* --- Individual question --- */
.aq-question { display: none; }
.aq-question.is-active {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  animation: aqFadeUp 380ms cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes aqFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.aq-question__card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
}
.aq-question__heading {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: #1A1F2E;
  margin: 0 0 28px;
  line-height: 1.3;
}

/* --- Radio options --- */
.aq-options { display: flex; flex-direction: column; gap: 12px; }
.aq-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
  box-shadow: 0 1px 3px rgba(26,31,46,.06);
}
.aq-option:hover {
  border-color: #C4A882;
  box-shadow: 0 2px 8px rgba(196,168,130,.2);
}
.aq-option.is-selected {
  background: #1A1F2E;
  border-color: #1A1F2E;
}
.aq-option.is-selected .aq-option__label { color: #fff; }
.aq-option__radio { display: none; }
.aq-option__label {
  font-size: 15px;
  font-weight: 500;
  color: #1A1F2E;
  line-height: 1.4;
  flex: 1;
}

/* Custom radio indicator */
.aq-option::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(26,31,46,.2);
  border-radius: 50%;
  background: #fff;
  transition: border-color 200ms, background 200ms;
  flex-shrink: 0;
}
.aq-option.is-selected::before {
  border-color: #C4A882;
  background: #C4A882;
  box-shadow: inset 0 0 0 3px #1A1F2E;
}

/* --- Nav buttons --- */
.aq-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.aq-nav__spacer { flex: 1; }
.aq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 200ms, transform 200ms, box-shadow 200ms, opacity 200ms;
  border: 2px solid transparent;
  letter-spacing: .3px;
}
.aq-btn--next {
  background: #1A1F2E;
  color: #fff;
  border-color: #1A1F2E;
}
.aq-btn--next:hover:not(:disabled) {
  background: #2d3652;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,31,46,.22);
}
.aq-btn--next:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.aq-btn--final { background: #C4A882; border-color: #C4A882; color: #1A1F2E; }
.aq-btn--final:hover:not(:disabled) { background: #b5956e; border-color: #b5956e; }
.aq-btn--prev {
  background: transparent;
  color: #8C7B6E;
  border-color: rgba(26,31,46,.15);
}
.aq-btn--prev:hover {
  border-color: #1A1F2E;
  color: #1A1F2E;
}
.aq-btn--primary {
  background: #1A1F2E;
  color: #fff;
  border-color: #1A1F2E;
  width: 100%;
}
.aq-btn--primary:hover {
  background: #2d3652;
  box-shadow: 0 6px 18px rgba(26,31,46,.22);
}

/* --- Email capture --- */
.aq-email-wrap {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: #fafaf9;
}
.aq-email-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.aq-email-card__icon { font-size: 40px; margin-bottom: 16px; }
.aq-email-card__heading {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1F2E;
  margin: 0 0 12px;
}
.aq-email-card__sub { font-size: 15px; color: #8C7B6E; margin: 0 0 28px; line-height: 1.6; }
.aq-email-form { display: flex; flex-direction: column; gap: 12px; }
.aq-email-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(26,31,46,.12);
  border-radius: 6px;
  font-size: 15px;
  color: #1A1F2E;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 200ms;
}
.aq-email-input:focus { outline: none; border-color: #C4A882; }
.aq-skip-link {
  display: block;
  margin-top: 18px;
  background: none;
  border: none;
  color: #8C7B6E;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.aq-skip-link:hover { color: #1A1F2E; }

/* --- Results page --- */
.aq-results {
  padding: 80px 24px;
  background: linear-gradient(160deg, #FFFFFF 0%, #fff 50%);
  text-align: center;
}
.aq-results__inner { max-width: 640px; margin: 0 auto; }
.aq-results__confetti { font-size: 56px; margin-bottom: 12px; line-height: 1; }
.aq-results__headline {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #1A1F2E;
  margin: 0 0 14px;
}
.aq-results__sub { font-size: 17px; color: #8C7B6E; margin: 0 0 36px; line-height: 1.6; }

.aq-result-type-card {
  background: #1A1F2E;
  color: #fff;
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 40px;
}
.aq-result-type-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4A882;
  background: rgba(196,168,130,.15);
  border: 1px solid rgba(196,168,130,.3);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.aq-result-type-card__message {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin: 0;
}

/* --- Benefits list --- */
.aq-results__benefits { margin-bottom: 40px; text-align: left; }
.aq-results__benefits-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8C7B6E;
  margin: 0 0 18px;
  text-align: center;
}
.aq-benefits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.aq-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #8C7B6E;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(26,31,46,.06);
  line-height: 1.5;
  transition: color 200ms, border-color 200ms;
}
.aq-benefit::before {
  content: '✓';
  font-weight: 800;
  color: rgba(196,168,130,.5);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: color 200ms;
}
.aq-benefit.is-highlighted {
  color: #1A1F2E;
  border-color: #C4A882;
  font-weight: 600;
}
.aq-benefit.is-highlighted::before { color: #C4A882; }

/* --- Product recommendation card --- */
.aq-product-card {
  background: #fff;
  border: 2px solid rgba(196,168,130,.3);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(26,31,46,.06);
}
.aq-product-card__stars {
  color: #F5A623;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.aq-product-card__name {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1F2E;
  margin-bottom: 8px;
}
.aq-product-card__sub { font-size: 14px; color: #8C7B6E; margin-bottom: 28px; line-height: 1.5; }
.aq-cta-btn {
  display: block;
  background: #1A1F2E;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .5px;
  margin-bottom: 16px;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
}
.aq-cta-btn:hover {
  background: #2d3652;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,31,46,.2);
  color: #fff;
}
.aq-product-card__offer { font-size: 13px; color: #8C7B6E; margin: 0; }

/* --- Share / Retake --- */
.aq-results__share { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.aq-share-btn {
  background: transparent;
  border: 2px solid rgba(26,31,46,.15);
  color: #8C7B6E;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
}
.aq-share-btn:hover { border-color: #1A1F2E; color: #1A1F2E; }
.aq-retake-btn {
  background: none;
  border: none;
  color: #8C7B6E;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.aq-retake-btn:hover { color: #1A1F2E; }

/* --- Header quiz CTA --- */
.header__quiz-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #1A1F2E;
  background: #FFFFFF;
  border: 1.5px solid rgba(196,168,130,.5);
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 8px;
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
}
.header__quiz-cta:hover {
  background: #ece5d8;
  border-color: #C4A882;
  box-shadow: 0 2px 8px rgba(196,168,130,.2);
  color: #1A1F2E;
}

/* --- Quiz mobile --- */
@media (max-width: 749px) {
  .aq-intro { padding: 48px 20px; min-height: 70vh; }
  .aq-intro__pills { flex-direction: column; align-items: center; }
  .aq-start-btn { width: 100%; max-width: 340px; padding: 18px 24px; }
  .aq-body { padding: 32px 16px 48px; }
  .aq-question__card { padding: 28px 24px; }
  .aq-question__heading { font-size: 20px; margin-bottom: 20px; }
  .aq-option { padding: 14px 16px; }
  .aq-option__label { font-size: 14px; }
  .aq-nav { flex-direction: row; }
  .aq-btn { padding: 13px 20px; font-size: 14px; }
  .aq-email-card { padding: 32px 24px; }
  .aq-results { padding: 48px 20px; }
  .aq-result-type-card { padding: 24px 24px; }
  .aq-product-card { padding: 28px 24px; }
  .aq-results__share { gap: 12px; }
  .header__quiz-cta { padding: 6px 12px; font-size: 11px; margin-right: 4px; }
}
}
