/* =============================================================================
   AURA — Alveos One Design System
   Warm river-stone sanctuary: cream-lit, achromatic, premium-through-restraint.
   Reference: DESIGN.md
   -----------------------------------------------------------------------------
   Contents
     1. Design Tokens (:root)
     2. Base Reset & Document
     3. Typography
     4. Layout (container, sections, grids)
     5. Buttons (primary / secondary / ghost)
     6. Pills & Badges (eyebrow, trust, price)
     7. Navigation (top bar)
     8. Hero (spotlight)
     9. Image Feature Card
    10. Treatment Card (catalog)
    11. Category Card & Grid
    12. Press / Trust Bar
    13. Footer (dark)
    14. Forms
    15. Utilities
    16. Responsive
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* --- Colors: canvases & surfaces --- */
  --color-linen-canvas: #fcf9f7;   /* page background — warm cream */
  --color-bone-white: #ffffff;     /* raised cards & sections */
  --color-clay-shadow: #d1cfcd;    /* warm-tinted shadow / soft fills */
  --color-haze: #ecedef;           /* cool low-contrast dividers */

  /* --- Colors: ink & neutrals (dark → light) --- */
  --color-graphite-ink: #000000;   /* primary text, dominant borders */
  --color-nightshade-black: #05060b; /* primary button fill, footer */
  --color-deep-harbor: #030f1c;    /* alt dark surface / nav */
  --color-charcoal-slate: #1d1d1d; /* body borders, image card borders */
  --color-iron-grey: #262628;      /* icon strokes, heading borders */
  --color-obsidian: #111112;       /* nav text */
  --color-stone-grey: #575757;     /* muted body text, default border */
  --color-ash: #717171;            /* helper text, icon strokes */
  --color-pebble: #989695;         /* barely-there dividers */
  --color-concrete: #a5a5a5;       /* ultra-low-emphasis copy */
  --color-dove: #bababa;           /* button border, disabled */

  /* --- Gradient: the ONLY gradient in the system (hero spotlight) --- */
  --color-spotlight-terminus: #a89c8a;
  --gradient-spotlight: radial-gradient(50% 95% at 50% 108.6%, rgb(252, 249, 247) 0%, rgb(168, 156, 138) 100%);
  /* Dark overlay for lifestyle photography (transparent → near-black) */
  --gradient-image-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.72) 100%);

  /* --- Semantic aliases --- */
  --text-primary: var(--color-graphite-ink);
  --text-body: var(--color-charcoal-slate);
  --text-muted: var(--color-stone-grey);
  --text-faint: var(--color-ash);
  --surface-page: var(--color-linen-canvas);
  --surface-card: var(--color-bone-white);
  --border-soft: var(--color-clay-shadow);
  --border-default: var(--color-stone-grey);
  --border-strong: var(--color-charcoal-slate);
  --action-fill: var(--color-nightshade-black);
  --action-text: var(--color-bone-white);

  /* --- Typography: families --- */
  --font-display: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Japanese fallback stack — for title_jp / description_jp content */
  --font-jp: 'Hanken Grotesk', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-mono: 'SF Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Editorial OpenType features that shape Hanken Grotesk's letterforms */
  --font-features: "blwf" on, "cv03" on, "cv04" on, "cv09" on, "cv11" on;

  /* --- Typography: scale (size / line-height) --- */
  --text-micro: 10px;      --leading-micro: 1.2;   --tracking-micro: 0.444em;
  --text-caption: 12px;    --leading-caption: 1.3;
  --text-body-sm: 16px;    --leading-body-sm: 1.6;
  --text-body-md: 18px;    --leading-body-md: 1.5;
  --text-body-lg: 20px;    --leading-body-lg: 1.5;
  --text-subheading: 24px; --leading-subheading: 1.4;
  --text-heading-sm: 28px; --leading-heading-sm: 1.4;
  --text-heading: 36px;    --leading-heading: 1.2;
  --text-heading-lg: 38px; --leading-heading-lg: 1.2;
  --text-display: 52px;    --leading-display: 1.1;

  /* --- Typography: weights --- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* --- Spacing scale --- */
  --space-5: 5px;   --space-7: 7px;   --space-8: 8px;   --space-9: 9px;
  --space-10: 10px; --space-14: 14px; --space-15: 15px; --space-20: 20px;
  --space-24: 24px; --space-25: 25px; --space-26: 26px; --space-30: 30px;
  --space-32: 32px; --space-40: 40px; --space-50: 50px; --space-60: 60px;
  --space-80: 80px; --space-150: 150px;

  /* --- Layout --- */
  --page-max-width: 1200px;
  --page-gutter: 40px;
  --section-gap: 80px;
  --card-padding: 24px;
  --element-gap: 10px;

  /* --- Border radius --- */
  --radius-buttons: 12px;   /* CTAs */
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-cards: 25px;     /* dominant corner geometry — cards, images, icons */
  --radius-pills: 100px;    /* eyebrow labels, tags */

  /* --- Shadows (whisper-quiet) --- */
  --shadow-sm: rgba(0, 0, 0, 0.06) 0px 1px 5px 0px;
  --shadow-md: rgba(0, 0, 0, 0.05) 0px 2px 10px 0px;
  --shadow-xl: rgba(0, 0, 0, 0.08) 0px 8px 30px 0px, rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast: 160ms var(--ease-out);
  --transition-base: 240ms var(--ease-out);
}

/* -----------------------------------------------------------------------------
   2. BASE RESET & DOCUMENT
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-feature-settings: var(--font-features);
  font-size: var(--text-body-md);
  line-height: var(--leading-body-md);
  font-weight: var(--weight-regular);
}

html:lang(ja),
html[lang="ja"],
body.is-jp { font-family: var(--font-jp); }

img,
picture,
video,
svg { max-width: 100%; display: block; height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-graphite-ink); }

button { font: inherit; color: inherit; cursor: pointer; }

ul, ol { margin: 0; padding: 0; list-style: none; }

hr {
  border: 0;
  border-top: 1px solid var(--border-soft);
  margin: var(--space-40) 0;
}

::selection {
  background: var(--color-spotlight-terminus);
  color: var(--color-bone-white);
}

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

/* -----------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
}

p { margin: 0 0 var(--space-20); }
p:last-child { margin-bottom: 0; }

.text-display {
  font-size: var(--text-display);
  line-height: var(--leading-display);
  font-weight: var(--weight-bold);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.text-heading-lg { font-size: var(--text-heading-lg); line-height: var(--leading-heading-lg); font-weight: var(--weight-semibold); }
.text-heading    { font-size: var(--text-heading);    line-height: var(--leading-heading);    font-weight: var(--weight-semibold); }
.text-heading-sm { font-size: var(--text-heading-sm); line-height: var(--leading-heading-sm); font-weight: var(--weight-semibold); }
.text-subheading { font-size: var(--text-subheading); line-height: var(--leading-subheading); font-weight: var(--weight-medium); }
.text-body-lg    { font-size: var(--text-body-lg);    line-height: var(--leading-body-lg); }
.text-body       { font-size: var(--text-body-md);    line-height: var(--leading-body-md); }
.text-body-sm    { font-size: var(--text-body-sm);    line-height: var(--leading-body-sm); }
.text-caption    { font-size: var(--text-caption);    line-height: var(--leading-caption); }

/* Tracked-out all-caps eyebrow — a signature of the brand voice */
.eyebrow {
  font-size: var(--text-caption);
  line-height: var(--leading-micro);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-micro);
  text-transform: uppercase;
  color: var(--text-body);
}

.text-muted { color: var(--text-muted); }
.text-faint { color: var(--text-faint); }
.text-ink   { color: var(--text-primary); }

/* Micro verification label (mono) */
.text-verify {
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding-block: var(--section-gap);
}
.section--tight { padding-block: var(--space-50); }
.section--canvas { background: var(--surface-page); }
.section--bone   { background: var(--surface-card); }

.section__head {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-50);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-15);
}

.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--element-gap); }

.grid { display: grid; gap: var(--space-20); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* -----------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  line-height: 1;
  padding: var(--space-14) var(--space-24);
  border: 1px solid transparent;
  border-radius: var(--radius-buttons);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), transform var(--transition-fast);
}
.btn:active { transform: translateY(1px); }

/* Primary — near-black filled. No chromatic brand color: authority through density. */
.btn--primary {
  background: var(--action-fill);
  color: var(--action-text);
}
.btn--primary:hover {
  background: #000;
  color: var(--action-text);
}

/* Secondary — outlined */
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--secondary:hover {
  background: var(--color-graphite-ink);
  color: var(--color-bone-white);
}

/* Ghost — text-forward */
.btn--ghost {
  background: transparent;
  color: var(--text-body);
  padding-inline: var(--space-8);
}
.btn--ghost:hover { color: var(--text-primary); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: var(--space-10) var(--space-20); font-size: var(--text-caption); }
.btn--lg { padding: var(--space-15) var(--space-30); font-size: var(--text-body-md); }

.btn:disabled,
.btn[aria-disabled="true"] {
  border-color: var(--color-dove);
  background: var(--color-dove);
  color: var(--color-bone-white);
  cursor: not-allowed;
  opacity: 0.7;
}

/* -----------------------------------------------------------------------------
   6. PILLS & BADGES
   -------------------------------------------------------------------------- */
/* Eyebrow pill — section intro tag above headlines */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--surface-card);
  color: var(--color-iron-grey);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pills);
  padding: var(--space-7) var(--space-14);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  box-shadow: var(--shadow-sm);
}

/* Small metadata badge (duration, size) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pills);
  padding: 4px var(--space-10);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
}
.badge--solid {
  background: var(--color-nightshade-black);
  color: var(--color-bone-white);
  border-color: transparent;
}
.badge--featured {
  background: var(--surface-card);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

/* Price */
.price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-8);
  font-family: var(--font-display);
}
.price__amount {
  font-size: var(--text-subheading);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}
.price__unit { font-size: var(--text-caption); color: var(--text-muted); }
.price__old {
  font-size: var(--text-body-sm);
  color: var(--text-faint);
  text-decoration: line-through;
}

/* -----------------------------------------------------------------------------
   7. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface-page) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding-block: var(--space-20);
}
.nav__brand {
  font-family: var(--font-display);
  font-size: var(--text-body-md);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-30);
}
.nav__link {
  font-size: var(--text-body-sm);
  font-weight: var(--weight-regular);
  color: var(--color-obsidian);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--text-primary); }
.nav__actions { display: flex; align-items: center; gap: var(--space-14); }

.nav__toggle { display: none; background: transparent; border: 0; padding: var(--space-8); }

/* -----------------------------------------------------------------------------
   8. HERO — spotlight stage
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--gradient-spotlight);
  text-align: center;
  padding-block: var(--space-80) var(--space-150);
  overflow: hidden;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  max-width: 720px;
  margin-inline: auto;
}
.hero__title {
  font-size: var(--text-display);
  line-height: var(--leading-display);
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.hero__subtitle {
  font-size: var(--text-body-md);
  line-height: var(--leading-body-md);
  color: var(--text-body);
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: var(--space-14);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-10);
}
.hero__media {
  margin-top: var(--space-40);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

/* -----------------------------------------------------------------------------
   9. IMAGE FEATURE CARD — lifestyle photo + overlaid white text
   -------------------------------------------------------------------------- */
.feature-card {
  position: relative;
  border-radius: var(--radius-cards);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.feature-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.feature-card:hover .feature-card__img { transform: scale(1.04); }
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-image-overlay);
  z-index: 1;
}
.feature-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--card-padding);
  color: var(--color-bone-white);
  text-align: left;
}
.feature-card__title {
  color: var(--color-bone-white);
  font-size: var(--text-heading-sm);
  line-height: var(--leading-heading-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-8);
}
.feature-card__text {
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

/* -----------------------------------------------------------------------------
   10. TREATMENT CARD — catalog item (bone surface, left-aligned)
   -------------------------------------------------------------------------- */
.treatment-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.treatment-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.treatment-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.treatment-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.treatment-card:hover .treatment-card__img { transform: scale(1.05); }
.treatment-card__flags {
  position: absolute;
  top: var(--space-14);
  left: var(--space-14);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.treatment-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  padding: var(--card-padding);
  flex: 1;
}
.treatment-card__title {
  font-size: var(--text-body-lg);
  line-height: 1.3;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}
.treatment-card__summary {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
  color: var(--text-muted);
  /* clamp to keep cards even */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.treatment-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: var(--text-caption);
}
.treatment-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-14);
  margin-top: auto;
  padding-top: var(--space-14);
  border-top: 1px solid var(--border-soft);
}

/* -----------------------------------------------------------------------------
   11. CATEGORY CARD & GRID
   -------------------------------------------------------------------------- */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-15);
  padding: var(--space-30);
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.category-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-cards);
  object-fit: cover;
  background: var(--color-linen-canvas);
}
.category-card__title {
  font-size: var(--text-subheading);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}
.category-card__text {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
  color: var(--text-muted);
}
.category-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}

/* -----------------------------------------------------------------------------
   12. PRESS / TRUST BAR — "AS SEEN ON"
   -------------------------------------------------------------------------- */
.press {
  text-align: center;
  padding-block: var(--space-50);
}
.press__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-20);
  color: var(--text-body);
  margin-bottom: var(--space-30);
}
.press__label::before,
.press__label::after {
  content: "";
  height: 1px;
  width: 120px;
  background: var(--color-charcoal-slate);
  opacity: 0.5;
}
.press__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-40);
}
.press__logos img {
  height: 28px;
  width: auto;
  filter: grayscale(1) contrast(0);
  opacity: 0.8;
}

/* -----------------------------------------------------------------------------
   13. FOOTER — dark
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-nightshade-black);
  color: rgba(255, 255, 255, 0.8);
  padding-block: var(--space-60);
}
.footer a { color: rgba(255, 255, 255, 0.8); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-40);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
  color: #fff;
  margin-bottom: var(--space-14);
}
.footer__col-title {
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-micro);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-15);
}
.footer__links { display: flex; flex-direction: column; gap: var(--space-10); }
.footer__link { font-size: var(--text-body-sm); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-20);
  flex-wrap: wrap;
  margin-top: var(--space-40);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.55);
}

/* -----------------------------------------------------------------------------
   14. FORMS
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: var(--space-8); }
.field__label {
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}
.input,
.select,
.textarea {
  width: 100%;
  font: inherit;
  font-size: var(--text-body-sm);
  color: var(--text-primary);
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-buttons);
  padding: var(--space-14) var(--space-15);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.input::placeholder,
.textarea::placeholder { color: var(--color-concrete); }
.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--color-graphite-ink);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.textarea { resize: vertical; min-height: 120px; }

/* -----------------------------------------------------------------------------
   15. UTILITIES
   -------------------------------------------------------------------------- */
.center { text-align: center; }
.left   { text-align: left; }
.flex   { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: var(--space-8); }
.gap-14 { gap: var(--space-14); }
.gap-24 { gap: var(--space-24); }
.wrap   { flex-wrap: wrap; }

.mt-8  { margin-top: var(--space-8); }
.mt-16 { margin-top: var(--space-15); }
.mt-24 { margin-top: var(--space-24); }
.mt-40 { margin-top: var(--space-40); }
.mb-0  { margin-bottom: 0; }

.surface-card {
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  box-shadow: var(--shadow-md);
}
.rounded    { border-radius: var(--radius-cards); }
.shadow-sm  { box-shadow: var(--shadow-sm); }
.shadow-md  { box-shadow: var(--shadow-md); }
.shadow-xl  { box-shadow: var(--shadow-xl); }

.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;
}

/* -----------------------------------------------------------------------------
   16. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --page-gutter: 28px; --section-gap: 64px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 20px;
    --section-gap: 56px;
    --text-display: 38px;
    --text-heading-lg: 30px;
    --text-heading: 28px;
  }
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .grid--auto { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }

  .hero { padding-block: var(--space-50) var(--space-80); }
  .press__label::before,
  .press__label::after { width: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-30); }
}

@media (max-width: 480px) {
  .grid--auto { grid-template-columns: 1fr; }
  .hero__actions,
  .press__logos { gap: var(--space-15); }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================================================
   AUTH PAGES — login / register / forgot password
   ========================================================================== */
.aura-auth {
  background: #fcf9f7;
  padding: 70px 0 92px;
  font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.aura-auth__container { max-width: 1000px; margin-inline: auto; padding: 0 24px; }
.aura-auth__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: stretch; }

/* Side CTA panel (dark) */
.aura-auth__aside {
  background: #05060b;
  color: #fff;
  border-radius: 26px;
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.aura-auth__aside-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: #c8a45c; margin-bottom: 14px; }
.aura-auth__aside h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; color: #fff; margin: 0 0 12px; }
.aura-auth__aside p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.68); margin: 0 0 24px; }
.aura-auth__aside-btn {
  align-self: center;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4); background: transparent; color: #fff;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.aura-auth__aside-btn:hover { background: #fff; color: #05060b; }

/* Form card */
.aura-auth__card { background: #fff; border: 1px solid #ece7e1; border-radius: 26px; padding: 44px 44px 46px; box-shadow: rgba(0, 0, 0, 0.05) 0px 16px 44px; }
.aura-auth__head { margin-bottom: 26px; }
.aura-auth__eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 12px; }
.aura-auth__title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 8px; }
.aura-auth__sub { font-size: 15px; line-height: 1.6; color: #6a635b; margin: 0; }

.aura-auth__alert { background: rgba(209, 73, 91, 0.08); border: 1px solid rgba(209, 73, 91, 0.25); color: #b53b4d; border-radius: 14px; padding: 14px 18px; font-size: 13.5px; margin-bottom: 22px; }
.aura-auth__alert ul { margin: 0; padding-left: 18px; }

.aura-auth .aura-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.aura-auth__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.aura-auth input[type="text"],
.aura-auth input[type="email"],
.aura-auth input[type="password"],
.aura-auth input[type="number"] {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: #1d1d1d;
  background: #fcf9f7;
  border: 1px solid #e2d8cd;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.aura-auth input::placeholder { color: #a89f94; }
.aura-auth input:focus { outline: none; border-color: #05060b; background: #fff; box-shadow: 0 0 0 3px rgba(5, 6, 11, 0.06); }
.aura-auth label.error { display: block; margin-top: 7px; color: #d1495b; font-size: 12.5px; font-weight: 500; }
.aura-auth input.error { border-color: #d1495b; background: rgba(209, 73, 91, 0.03); }

.aura-auth__field-head { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 6px; }
.aura-auth__forgot { font-size: 13px; color: #9a7b63; text-decoration: none; }
.aura-auth__forgot:hover { color: #05060b; }

.aura-auth__captcha { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.aura-auth__captcha input { flex: 1; min-width: 160px; }
.aura-auth__captcha .captcha-img-container img { border-radius: 8px; display: block; }

.aura-auth__terms { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 6px; font-size: 13.5px; color: #6a635b; line-height: 1.5; cursor: pointer; }
.aura-auth__terms input { margin-top: 3px; flex-shrink: 0; }
.aura-auth__terms a { color: #05060b; font-weight: 600; }

.aura-auth__btn { width: 100%; margin-top: 20px; padding: 15px; border: 0; border-radius: 100px; background: #05060b; color: #fff; font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 160ms ease; }
.aura-auth__btn:hover { background: #000; }

@media (max-width: 860px) {
  .aura-auth__grid { grid-template-columns: 1fr; }
  .aura-auth__aside { order: 2; }
  .aura-auth__card { padding: 32px 24px 34px; }
  .aura-auth__row2 { grid-template-columns: 1fr; }
}

/* =============================================================================
   ORDER STATUS PAGES — success / failed
   ========================================================================== */
.aura-status { background: #fcf9f7; padding: 80px 0 96px; font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
.aura-status__container { max-width: 680px; margin-inline: auto; padding: 0 24px; }
.aura-status__card { background: #fff; border: 1px solid #ece7e1; border-radius: 28px; padding: 54px 48px 48px; text-align: center; box-shadow: rgba(0, 0, 0, 0.05) 0px 16px 44px; }

.aura-status__icon { position: relative; width: 88px; height: 88px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 34px; margin: 0 auto 24px; }
.aura-status__icon::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; }
.aura-status--success .aura-status__icon { background: rgba(31, 157, 99, 0.12); color: #1f9d63; }
.aura-status--success .aura-status__icon::after { border: 1px solid rgba(31, 157, 99, 0.28); }
.aura-status--error .aura-status__icon { background: rgba(209, 73, 91, 0.12); color: #d1495b; }
.aura-status--error .aura-status__icon::after { border: 1px solid rgba(209, 73, 91, 0.28); }

.aura-status__title { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 8px; }
.aura-status__pill { display: inline-flex; align-items: center; gap: 8px; background: #f4ece4; border-radius: 100px; padding: 8px 16px; margin: 12px 0 20px; }
.aura-status__pill .label { color: #9a7b63; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.aura-status__pill .value { color: #1d1d1d; font-weight: 600; font-size: 13px; }
.aura-status__subtitle { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: #d1495b; margin: 0 0 18px; }
.aura-status__lead { font-size: 18px; font-weight: 600; color: #1d1d1d; margin: 0 0 12px; }
.aura-status__desc { font-size: 15px; line-height: 1.7; color: #6a635b; margin: 0 0 24px; }
.aura-status__desc strong { color: #1d1d1d; }

.aura-status__box { display: flex; gap: 14px; text-align: left; background: #fcf9f7; border: 1px solid #ece7e1; border-radius: 16px; padding: 18px 20px; margin-bottom: 24px; }
.aura-status__box .icon { flex-shrink: 0; color: #9a7b63; font-size: 18px; margin-top: 2px; }
.aura-status--error .aura-status__box .icon { color: #d1495b; }
.aura-status__box strong { display: block; color: #1d1d1d; font-size: 14px; margin-bottom: 4px; }
.aura-status__box span,
.aura-status__box li { font-size: 13px; line-height: 1.6; color: #6a635b; }
.aura-status__box ul { margin: 6px 0 0; padding-left: 18px; }

.aura-status__assist { border-top: 1px solid #ece7e1; padding-top: 24px; margin-bottom: 28px; }
.aura-status__assist h5 { font-size: 15px; font-weight: 600; color: #1d1d1d; margin: 0 0 6px; }
.aura-status__assist p { font-size: 14px; color: #6a635b; margin: 0; }
.aura-status__assist a { color: #05060b; font-weight: 600; text-decoration: none; }
.aura-status__assist a:hover { text-decoration: underline; }

.aura-status__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.aura-status__btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-family: inherit; font-size: 14.5px; font-weight: 600; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
.aura-status__btn--primary { background: #05060b; color: #fff; }
.aura-status__btn--primary:hover { background: #000; color: #fff; }
.aura-status__btn--secondary { background: transparent; color: #1d1d1d; border-color: #d1cfcd; }
.aura-status__btn--secondary:hover { border-color: #1d1d1d; background: #fff; }

@media (max-width: 560px) {
  .aura-status__card { padding: 40px 24px; }
  .aura-status__title { font-size: 26px; }
}

/* =============================================================================
   CART / SERVICE CART / CHECKOUT
   ========================================================================== */
.zen-cart-section, .zen-checkout-section { background: #fcf9f7; padding: 56px 0 88px; font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
.zen-cart-section .container, .zen-checkout-section .container { max-width: 1200px; }

/* Cart items */
.zen-cart-items-wrapper { display: flex; flex-direction: column; gap: 16px; }
.zen-cart-item-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid #ece7e1; border-radius: 20px; padding: 16px 20px; transition: box-shadow 200ms ease, border-color 200ms ease; }
.zen-cart-item-card:hover { box-shadow: rgba(0,0,0,0.06) 0px 12px 30px; border-color: #dccfc2; }
.zen-cart-item-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.zen-cart-item-image { width: 84px; height: 84px; border-radius: 14px; object-fit: cover; flex-shrink: 0; background: #f4ece4; }
.zen-cart-item-credits-visual { width: 84px !important; height: 84px !important; border-radius: 14px !important; background: #f4ece4 !important; border: 1px solid #ece7e1 !important; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; color: #c8a45c; font-size: 22px; }
.zen-cart-item-credits-visual i { color: #c8a45c !important; }
.zen-cart-item-credits-visual .credits-badge, .zen-cart-item-credits-visual span { font-size: 10px !important; font-weight: 700; color: #1d1d1d !important; margin-top: 4px; }
.zen-cart-item-details { min-width: 0; }
.zen-cart-item-details .item-title { font-size: 16px; font-weight: 600; color: #1d1d1d; text-decoration: none; letter-spacing: -0.01em; }
.zen-cart-item-details a.item-title:hover { color: #05060b; }
.item-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 6px; }
.item-meta span { font-size: 12.5px; color: #8a8177; }
.zen-cart-item-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.zen-cart-item-price { font-size: 15px; font-weight: 700; color: #1d1d1d; white-space: nowrap; }
.zen-cart-item-price i { color: #c8a45c; }
.zen-cart-item-delete { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #b7ada2; background: #fcf9f7; border: 1px solid #ece7e1; text-decoration: none; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
.zen-cart-item-delete:hover { background: #d1495b; color: #fff; border-color: #d1495b; }

/* Summary card */
.zen-cart-summary-card { background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 30px; box-shadow: rgba(0,0,0,0.05) 0px 16px 40px; position: sticky; top: 120px; }
.summary-card-title { font-size: 20px; font-weight: 700; color: #1d1d1d; margin: 0 0 20px; letter-spacing: -0.01em; }
.zen-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; }
.zen-summary-row .label { font-size: 14px; color: #6a635b; }
.zen-summary-row .value { font-size: 15px; font-weight: 600; color: #1d1d1d; }
.zen-summary-row.total .label { font-size: 15px; font-weight: 600; color: #1d1d1d; }
.zen-summary-row.total .value { font-size: 20px; font-weight: 700; color: #05060b; }
.zen-summary-row.total .value i { color: #c8a45c; }

/* Buttons */
.btn-checkout { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 18px; padding: 15px; border: 0; border-radius: 100px; background: #05060b; color: #fff; font-family: inherit; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 160ms ease; }
.btn-checkout:hover { background: #000; color: #fff; }
.btn-checkout.disabled, .btn-checkout:disabled { background: #c9bcae; cursor: not-allowed; }
.btn-return { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; margin-top: 12px; padding: 13px; border-radius: 100px; background: transparent; border: 1px solid #d1cfcd; color: #1d1d1d; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 160ms ease, border-color 160ms ease; }
.btn-return:hover { border-color: #1d1d1d; background: #fff; color: #1d1d1d; }

/* Empty / gate */
.zen-empty-cart, .zen-gate-card { text-align: center; background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 56px 32px; }
.zen-empty-cart .icon-wrap, .zen-gate-card .icon-wrap { width: 80px; height: 80px; border-radius: 50%; background: #f4ece4; color: #9a7b63; display: flex; align-items: center; justify-content: center; font-size: 34px; margin: 0 auto 20px; }
.empty-title, .gate-title { font-size: 22px; font-weight: 700; color: #1d1d1d; margin: 0 0 8px; }
.empty-desc, .gate-desc { font-size: 15px; color: #6a635b; margin: 0 0 24px; }
.zen-empty-cart .btn-checkout, .zen-gate-card .btn-checkout { width: auto; display: inline-flex; padding-inline: 34px; }

/* Balance card (service cart) */
.zen-balance-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: #05060b; color: #fff; border-radius: 22px; padding: 24px 28px; }
.zen-balance-info { display: flex; align-items: center; gap: 16px; }
.zen-balance-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.1); color: #c8a45c; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.zen-balance-details { display: flex; flex-direction: column; }
.zen-balance-details .label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.zen-balance-details .value { font-size: 22px; font-weight: 700; color: #fff; }
.zen-balance-details .value i { color: #c8a45c; }
.btn-topup-outline { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.35); color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; transition: background 160ms ease, color 160ms ease; }
.btn-topup-outline:hover { background: #fff; color: #05060b; }

/* Status alert (service cart) */
.zen-status-alert { display: flex; gap: 12px; border-radius: 16px; padding: 16px 18px; }
.zen-status-alert .icon { font-size: 20px; margin-top: 1px; }
.zen-status-alert .title { display: block; font-size: 14px; font-weight: 700; }
.zen-status-alert .desc { display: block; font-size: 13px; margin-top: 2px; }
.zen-status-alert.sufficient { background: rgba(31,157,99,0.08); border: 1px solid rgba(31,157,99,0.25); }
.zen-status-alert.sufficient .icon, .zen-status-alert.sufficient .title { color: #1f9d63; }
.zen-status-alert.sufficient .desc { color: #4a7a63; }
.zen-status-alert.insufficient { background: rgba(209,73,91,0.08); border: 1px solid rgba(209,73,91,0.25); }
.zen-status-alert.insufficient .icon, .zen-status-alert.insufficient .title { color: #d1495b; }
.zen-status-alert.insufficient .desc { color: #a05663; }

/* Badges / gold */
.zen-badge .text { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: #9a7b63; }
.zen-card-header { margin-bottom: 20px; }
.text-gold { color: #c8a45c !important; }

/* Checkout cards & form */
.zen-checkout-card { background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 32px; margin-bottom: 24px; box-shadow: rgba(0,0,0,0.04) 0px 12px 34px; }
.checkout-card-title { font-size: 20px; font-weight: 700; color: #1d1d1d; margin: 0; letter-spacing: -0.01em; }
.zen-checkout-section .form-group { margin-bottom: 16px; }
.zen-checkout-section .form-label { display: block; font-size: 13px; font-weight: 600; color: #1d1d1d; margin-bottom: 7px; }
.zen-checkout-section .form-control, .zen-checkout-section .select-field { width: 100%; font: inherit; font-size: 15px; color: #1d1d1d; background: #fcf9f7; border: 1px solid #e2d8cd; border-radius: 12px; padding: 13px 15px; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.zen-checkout-section .form-control::placeholder { color: #a89f94; }
.zen-checkout-section .form-control:focus, .zen-checkout-section .select-field:focus { outline: none; border-color: #05060b; background: #fff; box-shadow: 0 0 0 3px rgba(5,6,11,0.06); }
.zen-checkout-section .form-control.is-invalid { border-color: #d1495b; }
.payment-badges img { height: 24px; }

/* Checkout summary items */
.zen-summary-items-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.zen-summary-item-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.zen-summary-item-details .item-name { font-size: 14px; font-weight: 600; color: #1d1d1d; display: block; }
.item-booking-meta { display: inline-flex; align-items: center; font-size: 11.5px; color: #8a8177; background: #fcf9f7 !important; border: 1px solid #ece7e1 !important; border-radius: 8px; padding: 3px 8px; margin-top: 4px; margin-right: 4px; }
.zen-summary-item-price .points-price { color: #c8a45c !important; }
.zen-summary-divider { height: 1px; background: #ece7e1; margin: 18px 0; }

/* Agreement checkboxes */
.zen-checkout-check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.zen-checkout-check-item { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 9px; font-size: 13px; color: #6a635b; line-height: 1.5; }
.zen-checkout-check-item .form-check-input { margin-top: 3px; flex-shrink: 0; }
.zen-checkout-check-item a { color: #05060b; font-weight: 600; }
/* Validation message drops to its own full-width line below the checkbox */
.zen-checkout-check-item .text-danger { flex: 0 0 100%; margin: 2px 0 0; padding-left: 27px; }

@media (max-width: 991px) {
  .zen-cart-summary-card { position: static; }
  .zen-cart-item-card { flex-wrap: wrap; }
}

/* =============================================================================
   CONTACT PAGE
   ========================================================================== */
            .aura-contact { background: #fcf9f7; padding: 80px 0 96px; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; }
            .aura-contact__container { max-width: 1000px; margin-inline: auto; padding: 0 24px; }

            /* Company details on top */
            .aura-contact__info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
            .aura-contact__info-card {
                background: #ffffff;
                border: 1px solid #ece7e1;
                border-radius: 20px;
                padding: 28px 24px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 12px;
                transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
            }
            .aura-contact__info-card:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.08) 0px 18px 40px; border-color: #dccfc2; }
            .aura-contact__info-icon {
                width: 52px; height: 52px; border-radius: 14px;
                display: flex; align-items: center; justify-content: center;
                background: #f4ece4; color: #05060b; font-size: 20px;
            }
            .aura-contact__info-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #9a7b63; font-weight: 600; }
            .aura-contact__info-value { font-size: 15px; color: #1d1d1d; font-weight: 500; line-height: 1.55; }
            .aura-contact__info-value a { color: #1d1d1d; text-decoration: none; }
            .aura-contact__info-value a:hover { color: #05060b; text-decoration: underline; }

            /* Form card */
            .aura-contact__card {
                background: #ffffff;
                border: 1px solid #ece7e1;
                border-radius: 26px;
                padding: 46px 46px 48px;
                box-shadow: rgba(0,0,0,0.05) 0px 16px 44px;
            }
            .aura-contact__head { text-align: center; margin-bottom: 34px; }
            .aura-contact__eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 12px; }
            .aura-contact__title { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 10px; }
            .aura-contact__sub { font-size: 15px; line-height: 1.6; color: #6a635b; margin: 0; }

            .aura-contact__alert {
                background: rgba(209, 73, 91, 0.08);
                border: 1px solid rgba(209, 73, 91, 0.25);
                color: #b53b4d;
                border-radius: 14px;
                padding: 14px 18px;
                font-size: 13.5px;
                margin-bottom: 24px;
            }
            .aura-contact__alert ul { margin: 0; padding-left: 18px; }

            .aura-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
            .aura-field { display: flex; flex-direction: column; }
            .aura-field--full { grid-column: 1 / -1; }

            .aura-contact input,
            .aura-contact textarea {
                width: 100%;
                font: inherit;
                font-size: 15px;
                color: #1d1d1d;
                background: #fcf9f7;
                border: 1px solid #e2d8cd;
                border-radius: 12px;
                padding: 14px 16px;
                transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
            }
            .aura-contact input::placeholder,
            .aura-contact textarea::placeholder { color: #a89f94; }
            .aura-contact input:focus,
            .aura-contact textarea:focus { outline: none; border-color: #05060b; background: #ffffff; box-shadow: 0 0 0 3px rgba(5,6,11,0.06); }
            .aura-contact textarea { resize: vertical; min-height: 150px; }

            /* Per-field validation message (jQuery Validate inserts label.error after the input) */
            .aura-contact label.error {
                display: block;
                margin-top: 7px;
                color: #d1495b;
                font-size: 12.5px;
                font-weight: 500;
            }
            .aura-contact input.error,
            .aura-contact textarea.error { border-color: #d1495b; background: rgba(209,73,91,0.03); }

            .aura-contact__captcha { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
            .aura-contact__captcha input { flex: 1; min-width: 180px; }

            .aura-contact__btn {
                display: inline-flex;
                align-items: center;
                gap: 9px;
                margin-top: 26px;
                padding: 15px 36px;
                border-radius: 100px;
                background: #05060b;
                color: #ffffff;
                border: 0;
                font-family: inherit;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
                transition: background 160ms ease;
            }
            .aura-contact__btn:hover { background: #000000; }

            @media (max-width: 768px) {
                .aura-contact__info { grid-template-columns: 1fr; }
                .aura-contact__card { padding: 32px 24px 34px; }
                .aura-contact__grid { grid-template-columns: 1fr; }
            }

/* =============================================================================
   USER DASHBOARD
   ========================================================================== */
            .aura-dash { background: #fcf9f7; padding: 56px 0 88px; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; }
            .aura-dash__container { max-width: 1100px; margin-inline: auto; padding: 0 24px; }

            /* Top: profile + wallet */
            .aura-dash__top { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; margin-bottom: 26px; }
            .aura-dash__profile { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 24px 28px; }
            .aura-dash__avatar { width: 64px; height: 64px; border-radius: 50%; background: #f4ece4; color: #05060b; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700; flex-shrink: 0; }
            .aura-dash__profile-name { font-size: 18px; font-weight: 700; color: #1d1d1d; margin: 0 0 2px; }
            .aura-dash__profile-email { font-size: 13.5px; color: #8a8177; }
            .aura-dash__wallet { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: #05060b; color: #fff; border-radius: 24px; padding: 24px 28px; }
            .aura-dash__wallet::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(200,164,92,0.22), transparent 70%); top: -90px; right: -50px; }
            .aura-dash__wallet-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
            .aura-dash__wallet-label i { color: #c8a45c; }
            .aura-dash__wallet-value { font-size: 32px; font-weight: 700; color: #fff; margin-top: 6px; }
            .aura-dash__wallet-value small { font-size: 14px; font-weight: 500; opacity: 0.6; }
            .aura-dash__recharge { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 100px; background: #c8a45c; color: #05060b; text-decoration: none; font-size: 14px; font-weight: 600; transition: background 160ms ease; }
            .aura-dash__recharge:hover { background: #d8b56c; color: #05060b; }

            /* Tabs */
            .aura-dash__tabs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; background: #fff; border: 1px solid #ece7e1; border-radius: 100px; padding: 6px; margin-bottom: 24px; }
            .aura-dash__tab { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; color: #6a635b; text-decoration: none; cursor: pointer; border: 0; background: transparent; transition: background 160ms ease, color 160ms ease; }
            .aura-dash__tab:hover { color: #1d1d1d; }
            .aura-dash__tab.active { background: #05060b; color: #fff; }
            .aura-dash__tab--logout { margin-left: auto; color: #d1495b; }
            .aura-dash__tab--logout:hover { color: #d1495b; background: rgba(209,73,91,0.08); }

            /* Content card */
            .aura-dash__content { background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 34px 36px; box-shadow: rgba(0,0,0,0.04) 0px 14px 40px; }
            .aura-dash__pane-title { font-size: 22px; font-weight: 700; color: #1d1d1d; margin: 0 0 4px; letter-spacing: -0.01em; }
            .aura-dash__pane-sub { font-size: 14px; color: #8a8177; margin: 0 0 26px; }

            /* Form */
            .aura-dash .form-field { margin-bottom: 18px; max-width: 520px; }
            .aura-dash .zen-form-label { display: block; font-size: 13px; font-weight: 600; color: #1d1d1d; margin-bottom: 7px; }
            .aura-dash .zen-form-input, .aura-dash .form-control { width: 100%; font: inherit; font-size: 15px; color: #1d1d1d; background: #fcf9f7; border: 1px solid #e2d8cd; border-radius: 12px; padding: 13px 15px; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
            .aura-dash .zen-form-input:focus, .aura-dash .form-control:focus { outline: none; border-color: #05060b; background: #fff; box-shadow: 0 0 0 3px rgba(5,6,11,0.06); }
            .aura-dash label.error { display: block; margin-top: 6px; color: #d1495b; font-size: 12.5px; font-weight: 500; }
            .aura-dash .zen-form-input.error, .aura-dash input.error { border-color: #d1495b; }
            .aura-dash__btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px; background: #05060b; color: #fff; border: 0; font-family: inherit; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 160ms ease; }
            .aura-dash__btn:hover { background: #000; color: #fff; }

            /* Change-password two-column: form + illustrated panel */
            .aura-dash__pw { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px; align-items: stretch; }
            .aura-dash__pw-form .form-field { max-width: none; }
            .aura-dash__pw-media { position: relative; border-radius: 18px; overflow: hidden; min-height: 340px; background: #f6eef0; }
            .aura-dash__pw-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
            .aura-dash__pw-overlay { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; background: linear-gradient(to top, rgba(30,20,28,0.62) 0%, rgba(30,20,28,0.12) 55%, transparent 100%); }
            .aura-dash__pw-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: #e8d3b0; margin-bottom: 10px; }
            .aura-dash__pw-overlay h3 { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
            .aura-dash__pw-overlay p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.88); margin: 0; }
            @media (max-width: 768px) {
                .aura-dash__pw { grid-template-columns: 1fr; gap: 24px; }
                .aura-dash__pw-media { min-height: 220px; order: -1; }
            }

            /* Table */
            .aura-dash__table { width: 100%; border-collapse: collapse; }
            .aura-dash__table thead th { text-align: left; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #8a8177; font-weight: 600; padding: 0 14px 14px; border-bottom: 1px solid #ece7e1; white-space: nowrap; }
            .aura-dash__table tbody td { padding: 16px 14px; font-size: 14px; color: #4a443d; border-bottom: 1px solid #f2ece5; vertical-align: middle; }
            .aura-dash__table tbody tr:last-child td { border-bottom: 0; }
            .status-pill { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; text-transform: capitalize; }
            .status-pill.completed { background: rgba(31,157,99,0.12); color: #1f7a52; }
            .status-pill.pending { background: rgba(200,164,92,0.16); color: #8a6a2f; }
            .btn-view-order { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: #05060b; text-decoration: none; }
            .btn-view-order:hover { color: #000; }
            .aura-dash .text-indigo { color: #05060b !important; }
            .aura-dash .text-success { color: #1f9d63 !important; }
            .aura-dash .text-danger { color: #d1495b !important; }

            /* Empty state */
            .empty-state-icon { width: 72px; height: 72px; border-radius: 50%; background: #f4ece4; color: #9a7b63; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }

            @media (max-width: 768px) {
                .aura-dash__top { grid-template-columns: 1fr; }
                .aura-dash__content { padding: 26px 20px; }
                .aura-dash__tabs { border-radius: 20px; }
                .aura-dash__tab--logout { margin-left: 0; }
            }

/* =============================================================================
   ORDER DETAIL
   ========================================================================== */
            .aura-order { background: #fcf9f7; padding: 48px 0 88px; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; }
            .aura-order__container { max-width: 1000px; margin-inline: auto; padding: 0 24px; }

            .aura-order__actions { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
            .aura-order__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 100px; font-family: inherit; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
            .aura-order__btn--ghost { background: transparent; border-color: #d1cfcd; color: #1d1d1d; }
            .aura-order__btn--ghost:hover { border-color: #1d1d1d; background: #fff; }
            .aura-order__btn--solid { background: #05060b; color: #fff; }
            .aura-order__btn--solid:hover { background: #000; color: #fff; }

            /* Dark status panel */
            .aura-order__panel { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: #05060b; color: #fff; border-radius: 24px; padding: 30px 34px; margin-bottom: 28px; }
            .aura-order__panel::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(200,164,92,0.20), transparent 70%); top: -110px; right: -60px; }
            .aura-order__panel > div { position: relative; z-index: 2; }
            .aura-order__panel-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
            .aura-order__panel-value { font-size: 26px; font-weight: 700; color: #fff; margin: 6px 0; letter-spacing: -0.01em; }
            .aura-order__panel-date { font-size: 13px; color: rgba(255,255,255,0.6); }
            .aura-order__panel-right { text-align: right; }
            .aura-order__status { display: inline-block; font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 100px; }
            .aura-order__status.completed { background: rgba(31,157,99,0.2); color: #7bd6a8; }
            .aura-order__status.pending { background: rgba(200,164,92,0.22); color: #e8d3b0; }
            .aura-order__total-label { display: block; font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 14px; }
            .aura-order__total-value { font-size: 24px; font-weight: 700; color: #fff; }

            /* Detail cards */
            .aura-order__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
            .aura-order__card { background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 30px; box-shadow: rgba(0,0,0,0.04) 0px 14px 40px; }
            .aura-order__card-title { font-size: 17px; font-weight: 700; color: #1d1d1d; margin: 0 0 22px; letter-spacing: -0.01em; }
            .aura-order__row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; }
            .aura-order__row .label { font-size: 13.5px; color: #8a8177; }
            .aura-order__row .value { font-size: 14px; font-weight: 600; color: #1d1d1d; text-align: right; word-break: break-word; }
            .aura-order__row .value.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 500; font-size: 13px; }
            .aura-order__divider { height: 1px; background: #f2ece5; margin: 8px 0; }
            .aura-order .text-success { color: #1f9d63 !important; }

            /* Treatment items */
            .aura-order__treat { background: #fcf9f7; border: 1px solid #ece7e1; border-radius: 16px; padding: 16px 18px; margin-bottom: 12px; }
            .aura-order__treat:last-child { margin-bottom: 0; }
            .aura-order__treat-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
            .aura-order__treat-title { font-size: 15px; font-weight: 600; color: #1d1d1d; margin: 0; }
            .aura-order__treat-qty { font-size: 12px; font-weight: 600; color: #8a8177; background: #fff; border: 1px solid #ece7e1; border-radius: 100px; padding: 3px 10px; white-space: nowrap; }
            .aura-order__treat-meta { display: flex; flex-direction: column; gap: 6px; }
            .aura-order__meta-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6a635b; }
            .aura-order__meta-line i { color: #c8a45c; width: 14px; text-align: center; }
            .aura-order__empty { text-align: center; color: #8a8177; padding: 24px 0; font-size: 14px; }

            @media (max-width: 768px) {
                .aura-order__grid { grid-template-columns: 1fr; }
                .aura-order__panel-right { text-align: left; }
            }

/* =============================================================================
   HOMEPAGE — HERO
   ========================================================================== */
				.aura-hero { position: relative; overflow: hidden; background: #f2e9e2; }
				.aura-hero__track { display: flex; transition: transform 750ms cubic-bezier(0.5, 0, 0.1, 1); }
				.aura-hero__slide { min-width: 100%; }
				.aura-hero__inner {
					max-width: 1200px;
					margin-inline: auto;
					display: grid;
					grid-template-columns: 1fr 1fr;
					align-items: center;
					gap: 48px;
					padding: 132px 24px 84px;
					min-height: 640px;
				}
				.aura-hero__text { max-width: 520px; }
				.aura-hero__eyebrow {
					display: block;
					font-family: 'Rochester', cursive;
					font-size: 27px;
					color: #9a7b63;
					margin-bottom: 8px;
				}
				.aura-hero__title {
					font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, sans-serif;
					font-size: 52px;
					line-height: 1.08;
					font-weight: 700;
					letter-spacing: -0.02em;
					color: #1d1d1d;
					margin: 0 0 20px;
				}
				.aura-hero__title em { font-style: normal; color: #05060b; }
				.aura-hero__desc { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0 0 26px; }
				.aura-hero__reviews { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
				.aura-hero__stars { color: #c8a45c; font-size: 14px; letter-spacing: 2px; }
				.aura-hero__reviews-text strong { display: block; font-size: 15px; color: #1d1d1d; font-weight: 600; }
				.aura-hero__reviews-text span { font-size: 13px; color: #8a8177; }
				.aura-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
				.aura-hero__btn {
					display: inline-flex;
					align-items: center;
					justify-content: center;
					padding: 14px 28px;
					border-radius: 100px;
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 15px;
					font-weight: 600;
					text-decoration: none;
					border: 1px solid transparent;
					cursor: pointer;
					transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
				}
				.aura-hero__btn--solid { background: #05060b; color: #ffffff; }
				.aura-hero__btn--solid:hover { background: #000000; color: #ffffff; }
				.aura-hero__btn--ghost { background: transparent; color: #1d1d1d; border-color: #c9bcae; }
				.aura-hero__btn--ghost:hover { background: #ffffff; border-color: #1d1d1d; }
				.aura-hero__media { display: flex; justify-content: center; }
				.aura-hero__media img {
					width: 100%;
					max-width: 470px;
					aspect-ratio: 1 / 1;
					object-fit: cover;
					border-radius: 28px;
					box-shadow: rgba(0, 0, 0, 0.14) 0px 24px 60px;
				}
				.aura-hero__dots {
					position: absolute;
					bottom: 26px;
					left: 50%;
					transform: translateX(-50%);
					display: flex;
					gap: 8px;
					z-index: 5;
				}
				.aura-hero__dots button {
					width: 8px; height: 8px;
					border-radius: 50%;
					border: 0;
					background: rgba(29, 29, 29, 0.25);
					cursor: pointer;
					padding: 0;
					transition: width 220ms ease, background 220ms ease, border-radius 220ms ease;
				}
				.aura-hero__dots button.is-active { width: 26px; border-radius: 5px; background: #05060b; }
				@media (max-width: 900px) {
					.aura-hero__inner {
						grid-template-columns: 1fr;
						gap: 30px;
						padding: 116px 20px 72px;
						min-height: 0;
						text-align: center;
					}
					.aura-hero__text { max-width: none; order: 2; }
					.aura-hero__media { order: 1; }
					.aura-hero__reviews, .aura-hero__actions { justify-content: center; }
					.aura-hero__title { font-size: 36px; }
					.aura-hero__media img { max-width: 340px; }
				}

/* =============================================================================
   HOMEPAGE — ABOUT / WHAT WE DO
   ========================================================================== */
				.aura-about { background: #fcf9f7; padding: 92px 0; }
				.aura-about__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }
				.aura-about__head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
				.aura-about__eyebrow {
					display: inline-block;
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 12px;
					font-weight: 600;
					letter-spacing: 0.34em;
					text-transform: uppercase;
					color: #9a7b63;
					margin-bottom: 14px;
				}
				.aura-about__title {
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 38px;
					line-height: 1.15;
					font-weight: 700;
					letter-spacing: -0.02em;
					color: #1d1d1d;
					margin: 0 0 14px;
				}
				.aura-about__lead { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0; }

				.aura-about__grid {
					display: grid;
					grid-template-columns: repeat(3, 1fr);
					gap: 24px;
				}
				.aura-card {
					position: relative;
					background: #ffffff;
					border: 1px solid #ece7e1;
					border-radius: 24px;
					overflow: hidden;
					transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
				}
				.aura-card:hover {
					transform: translateY(-6px);
					box-shadow: rgba(0, 0, 0, 0.10) 0px 22px 46px;
					border-color: #dccfc2;
				}
				/* Warm cursor-following spotlight (theme colour, not dark) */
				.aura-card__glow {
					position: absolute;
					inset: 0;
					border-radius: inherit;
					pointer-events: none;
					opacity: 0;
					transition: opacity 260ms ease;
					background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(200, 164, 92, 0.18), rgba(154, 123, 99, 0.06) 40%, transparent 65%);
				}
				.aura-card:hover .aura-card__glow { opacity: 1; }
				.aura-card__body { position: relative; z-index: 1; padding: 32px 28px 34px; }
				.aura-card__icon {
					display: inline-flex;
					align-items: center;
					justify-content: center;
					width: 56px;
					height: 56px;
					border-radius: 16px;
					background: #f4ece4;
					color: #05060b;
					font-size: 22px;
					margin-bottom: 20px;
					transition: background 260ms ease, color 260ms ease, transform 260ms ease;
				}
				.aura-card:hover .aura-card__icon { background: #05060b; color: #ffffff; transform: scale(1.05); }
				.aura-card__title { font-size: 19px; font-weight: 600; color: #1d1d1d; margin: 0 0 10px; letter-spacing: -0.01em; }
				.aura-card__text { font-size: 14.5px; line-height: 1.65; color: #6a635b; margin: 0; }
				.aura-card__link {
					display: inline-flex;
					align-items: center;
					gap: 7px;
					margin-top: 18px;
					font-size: 14px;
					font-weight: 600;
					color: #05060b;
					text-decoration: none;
					opacity: 0;
					transform: translateX(-6px);
					transition: opacity 260ms ease, transform 260ms ease;
				}
				.aura-card:hover .aura-card__link { opacity: 1; transform: translateX(0); }

				.aura-about__cta { text-align: center; margin-top: 48px; }
				.aura-about__btn {
					display: inline-flex;
					align-items: center;
					gap: 8px;
					padding: 15px 32px;
					border-radius: 100px;
					background: #05060b;
					color: #ffffff;
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 15px;
					font-weight: 600;
					text-decoration: none;
					transition: background 160ms ease;
				}
				.aura-about__btn:hover { background: #000000; color: #ffffff; }

				@media (max-width: 900px) {
					.aura-about__grid { grid-template-columns: 1fr 1fr; }
				}
				@media (max-width: 600px) {
					.aura-about { padding: 64px 0; }
					.aura-about__title { font-size: 30px; }
					.aura-about__grid { grid-template-columns: 1fr; }
				}

/* =============================================================================
   HOMEPAGE — CATEGORIES
   ========================================================================== */
				.aura-cats { background: #f5efe9; padding: 92px 0; }
				.aura-cats__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }
				.aura-cats__head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
				.aura-cats__eyebrow {
					display: inline-block;
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 12px;
					font-weight: 600;
					letter-spacing: 0.34em;
					text-transform: uppercase;
					color: #9a7b63;
					margin-bottom: 14px;
				}
				.aura-cats__title {
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 38px;
					line-height: 1.15;
					font-weight: 700;
					letter-spacing: -0.02em;
					color: #1d1d1d;
					margin: 0 0 14px;
				}
				.aura-cats__lead { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0; }

				.aura-cats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
				.aura-cat-card {
					display: flex;
					background: #ffffff;
					border: 1px solid #ece7e1;
					border-radius: 24px;
					overflow: hidden;
					text-decoration: none;
					transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
				}
				.aura-cat-card:hover {
					transform: translateY(-5px);
					box-shadow: rgba(0, 0, 0, 0.10) 0px 22px 46px;
					border-color: #dccfc2;
				}
				.aura-cat-card__media {
					position: relative;
					flex: 0 0 42%;
					min-height: 220px;
					overflow: hidden;
					background: #f4ece4;
				}
				.aura-cat-card__media img {
					position: absolute;
					inset: 0;
					width: 100%;
					height: 100%;
					object-fit: cover;
					transition: transform 420ms ease;
				}
				.aura-cat-card:hover .aura-cat-card__media img { transform: scale(1.06); }
				.aura-cat-card__body {
					flex: 1;
					display: flex;
					flex-direction: column;
					padding: 26px 28px;
				}
				.aura-cat-card__title {
					font-size: 20px;
					font-weight: 600;
					color: #1d1d1d;
					letter-spacing: -0.01em;
					margin: 0 0 10px;
				}
				.aura-cat-card__text {
					font-size: 14px;
					line-height: 1.6;
					color: #6a635b;
					margin: 0;
					display: -webkit-box;
					-webkit-line-clamp: 3;
					line-clamp: 3;
					-webkit-box-orient: vertical;
					overflow: hidden;
				}
				.aura-cat-card__link {
					margin-top: auto;
					padding-top: 16px;
					display: inline-flex;
					align-items: center;
					gap: 7px;
					font-size: 14px;
					font-weight: 600;
					color: #05060b;
				}
				.aura-cat-card__link i { transition: transform 200ms ease; }
				.aura-cat-card:hover .aura-cat-card__link i { transform: translateX(4px); }

				@media (max-width: 900px) {
					.aura-cats__grid { grid-template-columns: 1fr; }
				}
				@media (max-width: 560px) {
					.aura-cats { padding: 64px 0; }
					.aura-cats__title { font-size: 30px; }
					.aura-cat-card { flex-direction: column; }
					.aura-cat-card__media { flex-basis: auto; height: 200px; min-height: 0; }
				}

/* =============================================================================
   HOMEPAGE — WHY CHOOSE US
   ========================================================================== */
				.aura-why { background: #fcf9f7; padding: 96px 0; }
				.aura-why__container {
					max-width: 1200px;
					margin-inline: auto;
					padding: 0 24px;
					display: grid;
					grid-template-columns: 0.9fr 1.1fr;
					gap: 60px;
					align-items: center;
				}
				.aura-why__media { position: relative; }
				.aura-why__media img {
					width: 100%;
					aspect-ratio: 4 / 5;
					object-fit: cover;
					border-radius: 28px;
					box-shadow: rgba(0, 0, 0, 0.14) 0px 24px 60px;
				}
				.aura-why__badge {
					position: absolute;
					left: -18px;
					bottom: 30px;
					display: flex;
					align-items: center;
					gap: 14px;
					background: #ffffff;
					border: 1px solid #ece7e1;
					border-radius: 18px;
					padding: 16px 20px;
					box-shadow: rgba(0, 0, 0, 0.12) 0px 16px 36px;
				}
				.aura-why__badge-num { font-size: 24px; font-weight: 700; color: #1d1d1d; line-height: 1; }
				.aura-why__badge-stars { color: #c8a45c; font-size: 12px; letter-spacing: 1px; display: block; margin-bottom: 3px; }
				.aura-why__badge-sub { font-size: 12px; color: #8a8177; }

				.aura-why__eyebrow {
					display: inline-block;
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 12px;
					font-weight: 600;
					letter-spacing: 0.34em;
					text-transform: uppercase;
					color: #9a7b63;
					margin-bottom: 14px;
				}
				.aura-why__title {
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 40px;
					line-height: 1.12;
					font-weight: 700;
					letter-spacing: -0.02em;
					color: #1d1d1d;
					margin: 0 0 16px;
				}
				.aura-why__lead { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0; max-width: 520px; }

				.aura-why__list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 22px; }
				.aura-why__item { display: flex; gap: 16px; }
				.aura-why__icon {
					flex-shrink: 0;
					width: 50px;
					height: 50px;
					border-radius: 14px;
					background: #f4ece4;
					color: #05060b;
					display: flex;
					align-items: center;
					justify-content: center;
					font-size: 19px;
					transition: background 220ms ease, color 220ms ease;
				}
				.aura-why__item:hover .aura-why__icon { background: #05060b; color: #ffffff; }
				.aura-why__item h3 { font-size: 17px; font-weight: 600; color: #1d1d1d; margin: 0 0 5px; letter-spacing: -0.01em; }
				.aura-why__item p { font-size: 14px; line-height: 1.6; color: #6a635b; margin: 0; }

				.aura-why__actions { margin-top: 36px; }
				.aura-why__btn {
					display: inline-flex;
					align-items: center;
					gap: 8px;
					padding: 15px 32px;
					border-radius: 100px;
					background: #05060b;
					color: #ffffff;
					font-family: 'Hanken Grotesk', 'Inter', sans-serif;
					font-size: 15px;
					font-weight: 600;
					text-decoration: none;
					transition: background 160ms ease;
				}
				.aura-why__btn:hover { background: #000000; color: #ffffff; }

				@media (max-width: 900px) {
					.aura-why__container { grid-template-columns: 1fr; gap: 40px; }
					.aura-why__media { max-width: 460px; margin-inline: auto; }
					.aura-why__badge { left: 12px; }
				}
				@media (max-width: 560px) {
					.aura-why { padding: 64px 0; }
					.aura-why__title { font-size: 30px; }
					.aura-why__list { grid-template-columns: 1fr; }
				}

/* =============================================================================
   HOMEPAGE — PRICING / CALCULATOR
   ========================================================================== */
				.aura-pricing { background: #f5efe9; padding: 96px 0; }
				.aura-pricing__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }
				.aura-pricing__head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
				.aura-pricing__eyebrow { display: inline-block; font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 14px; }
				.aura-pricing__title { font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 38px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 14px; }
				.aura-pricing__lead { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0; }

				.aura-pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
				.aura-plan {
					position: relative;
					display: flex;
					flex-direction: column;
					background: #ffffff;
					border: 1px solid #ece7e1;
					border-radius: 22px;
					padding: 30px 24px 26px;
					cursor: pointer;
					transition: transform 260ms cubic-bezier(0.22,0.61,0.36,1), box-shadow 260ms ease, border-color 260ms ease;
				}
				.aura-plan:hover { transform: translateY(-6px); box-shadow: rgba(0,0,0,0.10) 0px 22px 46px; border-color: #dccfc2; }
				.aura-plan--featured {
					background: #05060b;
					border-color: #05060b;
					color: #ffffff;
					box-shadow: rgba(0,0,0,0.28) 0px 26px 54px;
					transform: translateY(-10px);
				}
				.aura-plan--featured:hover { transform: translateY(-16px); }
				.aura-plan__ribbon {
					position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
					background: #c8a45c; color: #05060b; font-size: 11px; font-weight: 700;
					letter-spacing: 0.04em; padding: 6px 16px; border-radius: 100px; white-space: nowrap;
				}
				.aura-plan__badge {
					align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
					padding: 5px 12px; border-radius: 100px; background: #f4ece4; color: #7a5c44; margin-bottom: 16px;
				}
				.aura-plan--featured .aura-plan__badge { background: #c8a45c; color: #05060b; }
				.aura-plan__icon {
					width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
					background: #f4ece4; color: #05060b; font-size: 19px; margin-bottom: 16px;
				}
				.aura-plan--featured .aura-plan__icon { background: rgba(255,255,255,0.12); color: #ffffff; }
				.aura-plan__name { font-size: 18px; font-weight: 600; margin: 0 0 6px; color: inherit; }
				.aura-plan__price { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 18px; color: inherit; }
				.aura-plan__price small { font-size: 12px; font-weight: 500; opacity: 0.55; }
				.aura-plan__features { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
				.aura-plan__features li { display: flex; gap: 9px; font-size: 13px; line-height: 1.45; color: #6a635b; }
				.aura-plan__features i { color: #1f9d63; font-size: 12px; margin-top: 3px; flex-shrink: 0; }
				.aura-plan--featured .aura-plan__features li { color: rgba(255,255,255,0.82); }
				.aura-plan--featured .aura-plan__features i { color: #c8a45c; }
				.aura-plan__select {
					margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
					padding: 12px 16px; border-radius: 100px; background: #05060b; color: #ffffff;
					font-size: 13px; font-weight: 600; transition: background 160ms ease;
				}
				.aura-plan:hover .aura-plan__select { background: #000000; }
				.aura-plan--featured .aura-plan__select { background: #ffffff; color: #05060b; }
				.aura-plan--featured:hover .aura-plan__select { background: #e0e0e0; color: #05060b; }

				/* Calculator */
				.aura-calc {
					max-width: 560px; margin: 52px auto 0;
					background: #ffffff; border: 1px solid #ece7e1; border-radius: 24px;
					padding: 34px 34px 36px; box-shadow: rgba(0,0,0,0.06) 0px 14px 36px;
				}
				.aura-calc__title { font-size: 20px; font-weight: 600; color: #1d1d1d; margin: 0 0 20px; text-align: center; }
				.aura-calc__label { display: block; font-size: 14px; font-weight: 500; color: #1d1d1d; margin-bottom: 8px; }
				.aura-calc__input { display: flex; align-items: center; border: 1px solid #ded4c8; border-radius: 12px; overflow: hidden; background: #fcf9f7; }
				.aura-calc__input span { padding: 0 14px; font-weight: 600; color: #5c554e; }
				.aura-calc__input input { flex: 1; border: 0; background: transparent; padding: 14px 14px 14px 0; font-size: 16px; color: #1d1d1d; outline: none; }
				.aura-calc__preview { text-align: center; background: #f5efe9; border-radius: 16px; padding: 20px; margin: 20px 0; }
				.aura-calc__preview .label { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #9a7b63; margin-bottom: 6px; }
				.aura-calc__preview h3 { font-size: 28px; font-weight: 700; color: #05060b; margin: 0; }
				.aura-calc__preview .badge { display: inline-block; margin-top: 8px; background: #05060b; color: #fff; font-size: 12px; padding: 4px 12px; border-radius: 100px; }
				.aura-calc__btn {
					width: 100%; padding: 15px; border: 0; border-radius: 100px; background: #05060b; color: #fff;
					font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 15px; font-weight: 600; cursor: pointer;
					display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background 160ms ease;
				}
				.aura-calc__btn:hover { background: #000000; }

				@media (max-width: 992px) { .aura-pricing__grid { grid-template-columns: repeat(2, 1fr); } .aura-plan--featured { transform: none; } .aura-plan--featured:hover { transform: translateY(-6px); } }
				@media (max-width: 560px) { .aura-pricing { padding: 64px 0; } .aura-pricing__title { font-size: 30px; } .aura-pricing__grid { grid-template-columns: 1fr; } }

/* =============================================================================
   HOMEPAGE — PRODUCTS CAROUSEL
   ========================================================================== */
				.aura-products { background: #fcf9f7; padding: 92px 0; overflow: hidden; }
				.aura-products__head { max-width: 660px; margin: 0 auto 48px; padding: 0 24px; text-align: center; }
				.aura-products__eyebrow { display: inline-block; font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 14px; }
				.aura-products__title { font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 38px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 14px; }
				.aura-products__lead { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0; }

				.aura-products__viewport {
					overflow: hidden;
					-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
					mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
				}
				.aura-products__track {
					display: flex;
					align-items: flex-start;
					gap: 24px;
					width: max-content;
					padding: 10px 24px;
					animation: aura-marquee 45s linear infinite;
				}
				.aura-products__viewport:hover .aura-products__track { animation-play-state: paused; }
				@keyframes aura-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

				.aura-product {
					flex: 0 0 auto;
					width: 280px;
					background: #ffffff;
					border: 1px solid #ece7e1;
					border-radius: 22px;
					overflow: hidden;
					text-decoration: none;
					transition: transform 260ms cubic-bezier(0.22,0.61,0.36,1), box-shadow 260ms ease, border-color 260ms ease;
				}
				.aura-product:hover { transform: translateY(-6px); box-shadow: rgba(0,0,0,0.10) 0px 22px 46px; border-color: #dccfc2; }
				.aura-product__media { position: relative; height: 240px; overflow: hidden; background: #f4ece4; }
				.aura-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
				.aura-product:hover .aura-product__media img { transform: scale(1.07); }
				.aura-product__body { padding: 20px 22px 22px; }
				.aura-product__title { font-size: 18px; font-weight: 600; color: #1d1d1d; letter-spacing: -0.01em; margin: 0; line-height: 1.3; }
				.aura-product__summary {
					font-size: 13.5px;
					line-height: 1.6;
					color: #6a635b;
					margin: 0;
					max-height: 0;
					opacity: 0;
					overflow: hidden;
					transition: max-height 360ms ease, opacity 300ms ease, margin-top 300ms ease;
					display: -webkit-box;
					-webkit-line-clamp: 3;
					line-clamp: 3;
					-webkit-box-orient: vertical;
				}
				.aura-product:hover .aura-product__summary { max-height: 90px; opacity: 1; margin-top: 10px; }

				@media (max-width: 560px) {
					.aura-products { padding: 64px 0; }
					.aura-products__title { font-size: 30px; }
					.aura-product { width: 240px; }
					.aura-product__media { height: 210px; }
				}

/* =============================================================================
   HOMEPAGE — VIDEO CTA
   ========================================================================== */
				.aura-video {
					position: relative;
					width: 100%;
					min-height: 540px;
					display: flex;
					align-items: center;
					justify-content: center;
					text-align: center;
					overflow: hidden;
				}
				.aura-video__bg {
					position: absolute;
					inset: 0;
					width: 100%;
					height: 100%;
					object-fit: cover;
					z-index: 0;
				}
				.aura-video__overlay {
					position: absolute;
					inset: 0;
					z-index: 1;
					background: linear-gradient(180deg, rgba(5,6,11,0.55) 0%, rgba(5,6,11,0.68) 100%);
				}
				.aura-video__content {
					position: relative;
					z-index: 2;
					max-width: 700px;
					padding: 96px 24px;
					color: #ffffff;
				}
				.aura-video__eyebrow {
					display: inline-block;
					font-family: 'Rochester', cursive;
					font-size: 27px;
					color: #e8d3b0;
					margin-bottom: 8px;
				}
				.aura-video__title {
					font-family: 'Hanken Grotesk','Inter',sans-serif;
					font-size: 46px;
					line-height: 1.12;
					font-weight: 700;
					letter-spacing: -0.02em;
					color: #ffffff;
					margin: 0 0 18px;
				}
				.aura-video__desc {
					font-size: 17px;
					line-height: 1.7;
					color: rgba(255,255,255,0.82);
					margin: 0 auto 30px;
					max-width: 560px;
				}
				.aura-video__btn {
					display: inline-flex;
					align-items: center;
					gap: 9px;
					padding: 16px 36px;
					border-radius: 100px;
					background: #fcf9f7;
					color: #05060b;
					font-family: 'Hanken Grotesk','Inter',sans-serif;
					font-size: 16px;
					font-weight: 600;
					text-decoration: none;
					transition: transform 200ms ease, background 200ms ease;
				}
				.aura-video__btn:hover { background: #ffffff; transform: translateY(-2px); color: #05060b; }

				@media (max-width: 560px) {
					.aura-video { min-height: 440px; }
					.aura-video__content { padding: 72px 20px; }
					.aura-video__title { font-size: 32px; }
					.aura-video__desc { font-size: 15px; }
				}

/* ===== BREADCRUMB ===== */
        .aura-breadcrumb {
            position: relative;
            overflow: hidden;
            text-align: center;
            padding: 176px 24px 76px; /* 72px original + 104px spacer */
            margin-top: -104px;
            background: radial-gradient(70% 130% at 50% 0%, #f3e9e1 0%, #fcf9f7 62%);
            font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        }
        /* Soft decorative glow orbs (pure CSS overlays — no images) */
        .aura-breadcrumb__orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            pointer-events: none;
            z-index: 0;
        }
        .aura-breadcrumb__orb--1 { width: 300px; height: 300px; background: rgba(232, 211, 176, 0.55); top: -140px; left: -70px; }
        .aura-breadcrumb__orb--2 { width: 240px; height: 240px; background: rgba(200, 164, 92, 0.28); bottom: -150px; right: -50px; }
        /* Fine hairline that fades the banner into the page below */
        .aura-breadcrumb::after {
            content: "";
            position: absolute;
            left: 0; right: 0; bottom: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(154, 123, 99, 0.28), transparent);
            z-index: 1;
        }

        .aura-breadcrumb__inner {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin-inline: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }
        .aura-breadcrumb__badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #9a7b63;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(154, 123, 99, 0.2);
            border-radius: 100px;
            padding: 7px 16px;
            backdrop-filter: blur(4px);
        }
        .aura-breadcrumb__title {
            margin: 0;
            font-size: 44px;
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: capitalize;
            color: #1d1d1d;
        }
        .aura-breadcrumb__trail {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 4px;
            font-size: 14px;
        }
        .aura-breadcrumb__trail a {
            color: #8a8177;
            text-decoration: none;
            transition: color 160ms ease;
        }
        .aura-breadcrumb__trail a:hover { color: #05060b; }
        .aura-breadcrumb__trail .separator { color: #c9bcae; font-size: 12px; }
        .aura-breadcrumb__trail .current { color: #1d1d1d; font-weight: 600; }

        @media (max-width: 991px) {
            .aura-breadcrumb {
                margin-top: -84px;
                padding-top: 156px; /* 72px + 84px */
            }
        }
        @media (max-width: 560px) {
            .aura-breadcrumb { padding: 140px 20px 58px; /* 56px + 84px */ }
            .aura-breadcrumb__title { font-size: 32px; }
        }

/* ===== COOKIE CONSENT ===== */
    .aura-cookie {
        position: fixed;
        left: 24px;
        bottom: 24px;
        z-index: 1200;
        width: 380px;
        max-width: calc(100vw - 48px);
        background: #ffffff;
        border: 1px solid #d1cfcd;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.10) 0px 12px 40px 0px, rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;
        padding: 24px;
        font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        opacity: 0;
        transform: translateY(16px) scale(0.98);
        transition: opacity 380ms cubic-bezier(0.22, 0.61, 0.36, 1),
                    transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .aura-cookie.is-visible { opacity: 1; transform: translateY(0) scale(1); }
    .aura-cookie[hidden] { display: none; }

    .aura-cookie__icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fcf9f7;
        border: 1px solid #d1cfcd;
        color: #05060b;
        font-size: 20px;
        margin-bottom: 16px;
    }
    .aura-cookie__title {
        font-size: 18px;
        font-weight: 600;
        color: #000000;
        letter-spacing: -0.01em;
        margin: 0 0 8px;
    }
    .aura-cookie__text {
        margin: 0 0 20px;
        font-size: 14px;
        line-height: 1.6;
        color: #575757;
    }
    .aura-cookie__text a {
        color: #000000;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .aura-cookie__actions {
        display: flex;
        gap: 10px;
    }
    .aura-cookie__btn {
        flex: 1;
        font-family: inherit;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        padding: 13px 18px;
        border-radius: 12px;
        border: 1px solid transparent;
        cursor: pointer;
        white-space: nowrap;
        transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
    }
    .aura-cookie__btn--ghost {
        background: transparent;
        color: #1d1d1d;
        border-color: #d1cfcd;
    }
    .aura-cookie__btn--ghost:hover { border-color: #1d1d1d; background: #fcf9f7; }
    .aura-cookie__btn--solid {
        background: #05060b;
        color: #ffffff;
    }
    .aura-cookie__btn--solid:hover { background: #000000; }

    @media (max-width: 520px) {
        .aura-cookie {
            left: 16px;
            right: 16px;
            bottom: 16px;
            width: auto;
            max-width: none;
            padding: 20px;
        }
    }

/* ===== NOTIFICATION ===== */
        .zen-notification-toast {
            position: fixed;
            top: 100px;                 /* sits just below the fixed header */
            left: 50%;
            z-index: 2000;
            width: 440px;
            max-width: calc(100vw - 40px);
            background: #ffffff;
            border: 1px solid #ece7e1;
            border-radius: 16px;
            box-shadow: rgba(0, 0, 0, 0.12) 0px 16px 44px 0px, rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;
            overflow: hidden;
            font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            /* centred horizontally (translateX) + slides down from the top (translateY) */
            transform: translateX(-50%) translateY(-24px);
            opacity: 0;
            transition: transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 480ms ease;
        }
        .zen-notification-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
        .zen-notification-toast.hide-toast { transform: translateX(-50%) translateY(-24px); opacity: 0; }

        .zen-notification-toast .notification-accent {
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
        }
        .zen-notification-toast .notification-body {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 18px 18px 22px;
        }
        .zen-notification-toast .notification-icon-wrap {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
        }
        .zen-notification-toast.success .notification-icon-wrap { background: rgba(31, 157, 99, 0.12); }
        .zen-notification-toast.error .notification-icon-wrap { background: rgba(209, 73, 91, 0.12); }
        .zen-notification-toast .notification-content { flex: 1; min-width: 0; }
        .zen-notification-toast .notification-message {
            margin: 0;
            font-size: 14.5px;
            line-height: 1.5;
            color: #1d1d1d;
            font-weight: 500;
        }
        .zen-notification-toast .notification-close-btn {
            flex-shrink: 0;
            background: none;
            border: 0;
            font-size: 22px;
            line-height: 1;
            color: #989695;
            cursor: pointer;
            padding: 0 2px;
            transition: color 160ms ease;
        }
        .zen-notification-toast .notification-close-btn:hover { color: #1d1d1d; }
        .zen-notification-toast .notification-progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 100%;
            transform-origin: left;
            animation: zen-progress 4.5s linear forwards;
        }
        @keyframes zen-progress { from { transform: scaleX(1); } to { transform: scaleX(0); } }

        @media (max-width: 991px) {
            .zen-notification-toast { top: 84px; }
        }
        @media (max-width: 480px) {
            .zen-notification-toast { top: 78px; width: auto; left: 16px; right: 16px; transform: translateY(-24px); }
            .zen-notification-toast.show { transform: translateY(0); }
            .zen-notification-toast.hide-toast { transform: translateY(-24px); }
        }

/* ===== PRODUCT LIST ===== */
            .aura-shop { background: #fcf9f7; padding: 62px 0 96px; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; }
            .aura-shop__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }

            /* Category hero (shown on category pages) */
            .aura-shop__cathero { display: grid; grid-template-columns: 500px 1fr; gap: 48px; align-items: center; background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 32px; margin-bottom: 46px; }
            .aura-shop__cathero-media { border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 9; background: #f4ece4; }
            .aura-shop__cathero-media img { width: 100%; height: 100%; object-fit: cover; }
            .aura-shop__cathero-title { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 8px 0 12px; line-height: 1.12; }
            .aura-shop__cathero-summary { font-size: 15px; line-height: 1.7; color: #5c554e; margin: 0; }
            @media (max-width: 768px) { .aura-shop__cathero { grid-template-columns: 1fr; gap: 20px; padding: 18px; } .aura-shop__cathero-title { font-size: 26px; } }

            /* Product grid — vertical cards: image, title, price */
            .aura-shop__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
            .aura-shop__card { display: flex; flex-direction: column; text-decoration: none; }
            .aura-shop__media { position: relative; aspect-ratio: 1 / 1; border-radius: 20px; overflow: hidden; background: #f4ece4; }
            .aura-shop__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
            .aura-shop__card:hover .aura-shop__media img { transform: scale(1.06); }
            .aura-shop__title { font-size: 16px; font-weight: 600; color: #1d1d1d; margin: 16px 0 6px; line-height: 1.35; letter-spacing: -0.01em; transition: color 160ms ease; }
            .aura-shop__card:hover .aura-shop__title { color: #05060b; }
            .aura-shop__price { font-size: 14px; font-weight: 600; color: #9a7b63; display: inline-flex; align-items: center; gap: 6px; }
            .aura-shop__price i { font-size: 12px; }
            .aura-shop__empty { grid-column: 1 / -1; text-align: center; color: #8a8177; font-size: 15px; padding: 40px 0; }

            /* Categories row (at the end) — image + title, one row */
            .aura-shop__cats-head { text-align: center; margin: 84px 0 36px; }
            .aura-shop__eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 10px; }
            .aura-shop__cats-title { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0; }
            .aura-shop__cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
            .aura-shop__cat {
                display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
                text-decoration: none; padding: 24px 14px;
                background: #fff; border: 1px solid #ece7e1; border-radius: 20px;
                transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
            }
            .aura-shop__cat:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.08) 0px 16px 36px; border-color: #dccfc2; }
            .aura-shop__cat-media { width: 92px; height: 92px; border-radius: 50%; overflow: hidden; background: #f4ece4; }
            .aura-shop__cat-media img { width: 100%; height: 100%; object-fit: cover; }
            .aura-shop__cat-title { font-size: 14px; font-weight: 600; color: #1d1d1d; line-height: 1.3; }

            @media (max-width: 992px) {
                .aura-shop__grid { grid-template-columns: repeat(3, 1fr); }
                .aura-shop__cats { grid-template-columns: repeat(3, 1fr); }
            }
            @media (max-width: 640px) {
                .aura-shop__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
                .aura-shop__cats { grid-template-columns: repeat(2, 1fr); }
                .aura-shop__cats-title { font-size: 26px; }
            }

/* ===== PRODUCT DETAIL ===== */
    .zen-detail-section { background: #fcf9f7 !important; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,sans-serif; }
    .zen-detail-section .container { max-width: 1200px; }

    /* Gallery */
    .zen-main-image-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: rgba(0,0,0,0.10) 0px 20px 50px; background: #f4ece4; }
    .zen-main-image { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
    .zen-gallery-overlay { position: absolute; inset: 0; pointer-events: none; }
    .zen-thumbnails-strip { display: flex; gap: 12px; flex-wrap: wrap; }
    .zen-thumb-wrap { width: 70px; height: 70px; border-radius: 12px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 160ms ease; }
    .zen-thumb-wrap.active { border-color: #05060b; }
    .zen-thumb-img { width: 100%; height: 100%; object-fit: cover; }

    /* Editorial details */
    .zen-category-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: #9a7b63; margin-bottom: 10px; }
    .zen-details-title { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0; line-height: 1.15; }
    .zen-summary-box { background: #fff; border: 1px solid #ece7e1; border-left: 3px solid #c8a45c; border-radius: 14px; padding: 18px 20px; }
    .zen-summary-box p { margin: 0; font-size: 15px; line-height: 1.7; color: #5c554e; }
    .zen-section-title { font-size: 18px; font-weight: 600; color: #1d1d1d; margin: 0 0 12px; }
    .zen-description-body { font-size: 15px; line-height: 1.8; color: #6a635b; }
    .zen-description-body p { margin: 0 0 12px; }

    /* Booking card */
    .zen-booking-card { background: #fff; border: 1px solid #ece7e1; border-radius: 26px; padding: 34px; box-shadow: rgba(0,0,0,0.05) 0px 16px 44px; position: sticky; top: 120px; }
    .zen-card-subtitle { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: #9a7b63; margin-bottom: 8px; }
    .zen-card-title { font-size: 24px; font-weight: 700; color: #1d1d1d; margin: 0 0 8px; letter-spacing: -0.01em; }
    .zen-card-desc { font-size: 14.5px; line-height: 1.6; color: #6a635b; }
    .zen-booking-meta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
    .zen-meta-item { font-size: 14px; color: #1d1d1d; }
    .text-gold { color: #c8a45c !important; }

    .zen-booking-divider { height: 1px; background: #ece7e1; margin: 8px 0 20px; }
    .zen-step-header { display: flex; align-items: center; gap: 10px; }
    .zen-step-badge { width: 26px; height: 26px; border-radius: 50%; background: #f4ece4; color: #05060b; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
    .zen-step-badge.completed { background: #05060b; color: #fff; }
    .zen-step-label { font-size: 15px; font-weight: 600; color: #1d1d1d; }

    /* Region buttons */
    .zen-region-selector { display: flex; gap: 10px; }
    .zen-region-btn { flex: 1; padding: 12px; border: 1px solid #ded4c8; border-radius: 12px; background: #fcf9f7; color: #1d1d1d; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
    .zen-region-btn:hover { border-color: #05060b; }
    .zen-region-btn.active { background: #05060b; color: #fff; border-color: #05060b; }

    /* Custom store select */
    .zen-custom-select { position: relative; }
    .zen-select-trigger { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; border: 1px solid #ded4c8; border-radius: 12px; background: #fcf9f7; cursor: pointer; }
    .zen-custom-select.active .zen-select-trigger { border-color: #05060b; }
    .selected-value-text { font-size: 14px; color: #1d1d1d; display: flex; flex-direction: column; gap: 2px; }
    .store-placeholder { color: #a89f94; }
    .select-arrow-icon { color: #9a7b63; font-size: 12px; transition: transform 200ms ease; }
    .zen-custom-select.active .select-arrow-icon { transform: rotate(180deg); }
    .zen-select-options-menu { display: none; margin-top: 8px; border: 1px solid #ece7e1; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: rgba(0,0,0,0.08) 0px 12px 30px; }
    .zen-select-option { padding: 12px 16px; cursor: pointer; display: flex; flex-direction: column; gap: 2px; transition: background 140ms ease; }
    .zen-select-option:hover { background: #fcf9f7; }
    .zen-select-option.selected { background: #f4ece4; }
    .zen-select-option.zen-hidden { display: none; }
    .opt-store-name, .store-name { font-size: 14px; font-weight: 600; color: #1d1d1d; }
    .opt-store-address, .store-address { font-size: 12.5px; color: #8a8177; }

    /* Time slots */
    .zen-selected-date-text { color: #9a7b63; font-weight: 600; }
    .zen-timeslots-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .zen-timeslots-grid li { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border: 1px solid #ded4c8; border-radius: 12px; cursor: pointer; background: #fcf9f7; transition: background 160ms ease, border-color 160ms ease; }
    .zen-timeslots-grid li:hover { border-color: #05060b; }
    .zen-timeslots-grid li.active { background: #05060b; border-color: #05060b; }
    .zen-timeslots-grid li.active .slot-time, .zen-timeslots-grid li.active .slot-status { color: #fff; }
    .zen-timeslots-grid li.booked { opacity: 0.5; cursor: not-allowed; background: #f0ebe5; }
    .slot-time { font-size: 14px; font-weight: 600; color: #1d1d1d; }
    .slot-status { font-size: 11px; color: #8a8177; text-transform: uppercase; letter-spacing: 0.05em; }

    /* Submit */
    .zen-btn-submit { border: 0; border-radius: 100px; background: #05060b; color: #fff; font-family: inherit; font-size: 15px; font-weight: 600; padding: 15px; cursor: pointer; transition: background 160ms ease; }
    .zen-btn-submit:hover { background: #000; }

    /* FullCalendar theming */
    .fc .fc-toolbar-title { font-size: 17px; font-weight: 600; color: #1d1d1d; }
    .fc .fc-button-primary { background: #fcf9f7; border: 1px solid #ded4c8; color: #1d1d1d; }
    .fc .fc-button-primary:hover { background: #f4ece4; color: #05060b; }
    .fc .fc-button-primary:not(:disabled):active, .fc .fc-button-primary:focus { background: #05060b; color: #fff; border-color: #05060b; box-shadow: none; }
    .fc-daygrid-day { cursor: pointer; }
    .fc .fc-daygrid-day.zen-selected-day { background: #05060b; border-radius: 8px; }
    .fc .zen-selected-day .fc-daygrid-day-number { color: #fff; }
    .fc-day-today { background: #f4ece4 !important; }

    @media (max-width: 991px) { .zen-booking-card { position: static; } }

/* ===== STORE LOCATOR ===== */
            .aura-stores { background: #fcf9f7; padding: 70px 0 92px; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; }
            .aura-stores__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }
            .aura-stores__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
            .aura-stores__eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 14px; }
            .aura-stores__title { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 14px; line-height: 1.14; }
            .aura-stores__intro { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0; }

            .aura-stores__tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
            .aura-stores__tab { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 100px; border: 1px solid #ded4c8; background: #fff; color: #1d1d1d; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
            .aura-stores__tab:hover { border-color: #05060b; }
            .aura-stores__tab.is-active { background: #05060b; color: #fff; border-color: #05060b; }

            .aura-stores__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
            .aura-store { background: #fff; border: 1px solid #ece7e1; border-radius: 24px; overflow: hidden; transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
            .aura-store:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.08) 0px 20px 44px; border-color: #dccfc2; }
            .aura-store__map { height: 240px; background: #f4ece4; }
            .aura-store__map iframe { width: 100%; height: 100%; border: 0; display: block; }
            .aura-store__body { padding: 26px 28px 28px; }
            .aura-store__badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
            .aura-store__badge.japan { background: rgba(200,164,92,0.16); color: #8a6a2f; }
            .aura-store__badge.hongkong { background: rgba(31,157,99,0.12); color: #1f7a52; }
            .aura-store__name { font-size: 22px; font-weight: 700; color: #1d1d1d; margin: 14px 0 16px; letter-spacing: -0.01em; }
            .aura-store__meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
            .aura-store__meta-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #6a635b; line-height: 1.5; }
            .aura-store__meta-item i { color: #c8a45c; width: 16px; margin-top: 3px; flex-shrink: 0; }
            .aura-store__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 100px; background: #05060b; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; transition: background 160ms ease; }
            .aura-store__btn:hover { background: #000; color: #fff; }
            .aura-store.is-hidden { display: none; }

            @media (max-width: 768px) {
                .aura-stores__grid { grid-template-columns: 1fr; }
                .aura-stores__title { font-size: 30px; }
            }

/* ===== TOPUP PAGE ===== */
            .aura-pricing { background: #f5efe9; padding: 80px 0 96px; }
            .aura-pricing__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }
            .aura-pricing__head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
            .aura-pricing__eyebrow { display: inline-block; font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 14px; }
            .aura-pricing__title { font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 38px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 14px; }
            .aura-pricing__lead { font-size: 16px; line-height: 1.7; color: #5c554e; margin: 0; }

            .aura-pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
            .aura-plan { position: relative; display: flex; flex-direction: column; background: #ffffff; border: 1px solid #ece7e1; border-radius: 22px; padding: 30px 24px 26px; cursor: pointer; transition: transform 260ms cubic-bezier(0.22,0.61,0.36,1), box-shadow 260ms ease, border-color 260ms ease; }
            .aura-plan:hover { transform: translateY(-6px); box-shadow: rgba(0,0,0,0.10) 0px 22px 46px; border-color: #dccfc2; }
            .aura-plan--featured { background: #05060b; border-color: #05060b; color: #ffffff; box-shadow: rgba(0,0,0,0.28) 0px 26px 54px; transform: translateY(-10px); }
            .aura-plan--featured:hover { transform: translateY(-16px); }
            .aura-plan__ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #c8a45c; color: #05060b; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
            .aura-plan__badge { align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 0.03em; padding: 5px 12px; border-radius: 100px; background: #f4ece4; color: #7a5c44; margin-bottom: 16px; }
            .aura-plan--featured .aura-plan__badge { background: #c8a45c; color: #05060b; }
            .aura-plan__icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: #f4ece4; color: #05060b; font-size: 19px; margin-bottom: 16px; }
            .aura-plan--featured .aura-plan__icon { background: rgba(255,255,255,0.12); color: #ffffff; }
            .aura-plan__name { font-size: 18px; font-weight: 600; margin: 0 0 6px; color: inherit; }
            .aura-plan__price { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 18px; color: inherit; }
            .aura-plan__price small { font-size: 12px; font-weight: 500; opacity: 0.55; }
            .aura-plan__features { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
            .aura-plan__features li { display: flex; gap: 9px; font-size: 13px; line-height: 1.45; color: #6a635b; }
            .aura-plan__features i { color: #1f9d63; font-size: 12px; margin-top: 3px; flex-shrink: 0; }
            .aura-plan--featured .aura-plan__features li { color: rgba(255,255,255,0.82); }
            .aura-plan--featured .aura-plan__features i { color: #c8a45c; }
            .aura-plan__select { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 100px; background: #05060b; color: #ffffff; font-size: 13px; font-weight: 600; transition: background 160ms ease; }
            .aura-plan:hover .aura-plan__select { background: #000000; }
            .aura-plan--featured .aura-plan__select { background: #ffffff; color: #05060b; }
            .aura-plan--featured:hover .aura-plan__select { background: #e0e0e0; color: #05060b; }

            /* Calculator */
            .aura-calc { max-width: 560px; margin: 52px auto 0; background: #ffffff; border: 1px solid #ece7e1; border-radius: 24px; padding: 34px 34px 36px; box-shadow: rgba(0,0,0,0.06) 0px 14px 36px; }
            .aura-calc__title { font-size: 20px; font-weight: 600; color: #1d1d1d; margin: 0 0 20px; text-align: center; }
            .aura-calc__label { display: block; font-size: 14px; font-weight: 500; color: #1d1d1d; margin-bottom: 8px; }
            .aura-calc__input { display: flex; align-items: center; border: 1px solid #ded4c8; border-radius: 12px; overflow: hidden; background: #fcf9f7; }
            .aura-calc__input span { padding: 0 14px; font-weight: 600; color: #5c554e; }
            .aura-calc__input input { flex: 1; border: 0; background: transparent; padding: 14px 14px 14px 0; font-size: 16px; color: #1d1d1d; outline: none; }
            .aura-calc__preview { text-align: center; background: #f5efe9; border-radius: 16px; padding: 20px; margin: 20px 0; }
            .aura-calc__preview .label { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #9a7b63; margin-bottom: 6px; }
            .aura-calc__preview h3 { font-size: 28px; font-weight: 700; color: #05060b; margin: 0; }
            .aura-calc__preview .badge { display: inline-block; margin-top: 8px; background: #05060b; color: #fff; font-size: 12px; padding: 4px 12px; border-radius: 100px; }
            .aura-calc__btn { width: 100%; padding: 15px; border: 0; border-radius: 100px; background: #05060b; color: #fff; font-family: 'Hanken Grotesk','Inter',sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background 160ms ease; }
            .aura-calc__btn:hover { background: #000000; }

            @media (max-width: 992px) { .aura-pricing__grid { grid-template-columns: repeat(2, 1fr); } .aura-plan--featured { transform: none; } .aura-plan--featured:hover { transform: translateY(-6px); } }
            @media (max-width: 560px) { .aura-pricing { padding: 56px 0; } .aura-pricing__title { font-size: 30px; } .aura-pricing__grid { grid-template-columns: 1fr; } }

/* ===== HEADER ===== */
    :root {
        --aura-canvas: #fcf9f7;
        --aura-card: #ffffff;
        --aura-ink: #000000;
        --aura-black: #05060b;
        --aura-body: #1d1d1d;
        --aura-muted: #575757;
        --aura-faint: #717171;
        --aura-border: #d1cfcd;
        --aura-border-strong: #1d1d1d;
        --aura-font: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        --aura-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
        --aura-fast: 160ms var(--aura-ease);
        --aura-base: 240ms var(--aura-ease);
        --aura-radius-btn: 12px;
        --aura-radius-md: 16px;
        --aura-shadow-xl: rgba(0, 0, 0, 0.08) 0px 8px 30px 0px, rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;
    }

    /* ---- Preloader ------------------------------------------------------- */
    #zen-preloader {
        position: fixed;
        inset: 0;
        z-index: 3000;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--aura-canvas);
        transition: opacity 600ms var(--aura-ease), visibility 600ms var(--aura-ease);
    }
    #zen-preloader.fade-out { opacity: 0; visibility: hidden; }
    .preloader-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        padding: 24px;
        animation: aura-rise 700ms var(--aura-ease) both;
    }
    .preloader-mark {
        width: 78px;
        height: 78px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--aura-card);
        border: 1px solid var(--aura-border);
        box-shadow: var(--aura-shadow-xl);
        color: var(--aura-ink);
        font-size: 30px;
        position: relative;
        animation: aura-breathe 2.6s var(--aura-ease) infinite;
    }
    .preloader-mark::after {
        content: "";
        position: absolute;
        inset: -7px;
        border-radius: 50%;
        border: 1px solid var(--aura-border);
        opacity: 0.7;
        animation: aura-ring 2.6s var(--aura-ease) infinite;
    }
    .preloader-brand {
        font-family: var(--aura-font);
        font-size: 26px;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: var(--aura-ink);
        line-height: 1;
    }
    .preloader-motto {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.34em;
        text-transform: uppercase;
        color: var(--aura-faint);
    }
    .preloader-loader {
        width: 160px;
        height: 2px;
        margin-top: 6px;
        background: var(--aura-border);
        border-radius: 2px;
        overflow: hidden;
    }
    .loader-line {
        width: 40%;
        height: 100%;
        background: var(--aura-black);
        border-radius: 2px;
        animation: aura-loader 1.25s var(--aura-ease) infinite;
    }
    @keyframes aura-loader { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }
    @keyframes aura-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
    @keyframes aura-ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.35); opacity: 0; } }
    @keyframes aura-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* ---- Floating centered nav bar (overlays the page behind it) --------- */
    .aura-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        box-sizing: border-box;
        font-family: var(--aura-font);
        padding: 16px 16px 0;              /* space above the bar + side gutters */
        transition: padding var(--aura-base);
    }
    .aura-header.is-scrolled { padding-top: 12px; }
    /* The visible bar — a rounded card centered horizontally. */
    .aura-header__bar {
        max-width: 1180px;
        margin-inline: auto;               /* centers the whole header */
        background: var(--aura-canvas);
        border: 1px solid var(--aura-border);
        border-radius: 16px;
        box-shadow: var(--aura-shadow-xl);
        transition: background var(--aura-base), box-shadow var(--aura-base);
    }
    .aura-header.is-scrolled .aura-header__bar {
        background: rgba(252, 249, 247, 0.96);
        -webkit-backdrop-filter: saturate(160%) blur(12px);
        backdrop-filter: saturate(160%) blur(12px);
    }
    /* Grid: brand | nav | actions — the 1fr side columns keep the nav dead-center. */
    .aura-header__inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 20px;
        height: 72px;
        padding-inline: 24px;
        transition: height var(--aura-base);
    }
    .aura-header.is-scrolled .aura-header__inner { height: 62px; }

    /* ---- Brand ------------------------------------------------------------ */
    .aura-header__brand { display: inline-flex; align-items: center; flex-shrink: 0; justify-self: start; }
    .aura-header__logo { height: 40px; width: auto; transition: height var(--aura-base); }
    .aura-header.is-scrolled .aura-header__logo { height: 34px; }

    /* ---- Desktop nav ------------------------------------------------------ */
    .aura-nav { display: flex; justify-self: center; }
    .aura-nav__list { display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
    .aura-nav__item { position: relative; }
    .aura-nav__link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: 0;
        padding: 10px 14px;
        border-radius: var(--aura-radius-btn);
        font-family: var(--aura-font);
        font-size: 16px;
        font-weight: 500;
        color: var(--aura-body);
        line-height: 1;
        white-space: nowrap;
        text-decoration: none;
        cursor: pointer;
        transition: background var(--aura-fast), color var(--aura-fast);
    }
    .aura-nav__link:hover,
    .aura-nav__item:focus-within > .aura-nav__link { background: var(--aura-canvas); color: var(--aura-ink); }
    .aura-header.is-scrolled .aura-nav__link:hover { background: rgba(209, 207, 205, 0.4); }
    .aura-nav__chev { font-size: 11px; transition: transform var(--aura-fast); }
    .aura-has-dropdown:hover .aura-nav__chev,
    .aura-has-dropdown:focus-within .aura-nav__chev { transform: rotate(180deg); }

    /* Desktop dropdown (CSS hover / focus) */
    .aura-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 220px;
        background: var(--aura-card);
        border: 1px solid var(--aura-border);
        border-radius: var(--aura-radius-md);
        box-shadow: var(--aura-shadow-xl);
        padding: 8px;
        margin: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity var(--aura-fast), transform var(--aura-fast), visibility var(--aura-fast);
        z-index: 1040;
    }
    .aura-has-dropdown:hover > .aura-dropdown,
    .aura-has-dropdown:focus-within > .aura-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .aura-dropdown__link {
        display: block;
        padding: 10px 14px;
        border-radius: var(--aura-radius-btn);
        font-size: 16px;
        color: var(--aura-body);
        text-decoration: none;
        white-space: nowrap;
    }
    .aura-dropdown__link:hover { background: var(--aura-canvas); color: var(--aura-ink); }

    /* ---- Right-hand actions ---------------------------------------------- */
    .aura-header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; justify-self: end; }
    .aura-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 40px;
        min-width: 40px;
        padding-inline: 12px;
        border: 1px solid var(--aura-border);
        border-radius: 100px;
        background: var(--aura-card);
        color: var(--aura-body);
        font-family: var(--aura-font);
        font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
        text-decoration: none;
        cursor: pointer;
        transition: border-color var(--aura-fast), color var(--aura-fast), background var(--aura-fast);
    }
    .aura-action:hover { border-color: var(--aura-border-strong); color: var(--aura-ink); }

    /* Icon-only action (cart) with a corner count badge */
    .aura-action--icon { position: relative; width: 42px; min-width: 42px; padding-inline: 0; }
    .aura-cart-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        background: var(--aura-black);
        border: 2px solid var(--aura-canvas);
        border-radius: 999px;
    }

    /* Currency / language selectors — self-contained CSS dropdown (no JS dependency) */
    .aura-select { position: relative; }
    .aura-select__menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 170px;
        background: var(--aura-card);
        border: 1px solid var(--aura-border);
        border-radius: var(--aura-radius-md);
        box-shadow: var(--aura-shadow-xl);
        padding: 8px;
        margin: 0;
        list-style: none;
        max-height: 320px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity var(--aura-fast), transform var(--aura-fast), visibility var(--aura-fast);
        z-index: 1040;
    }
    .aura-select:hover .aura-select__menu,
    .aura-select:focus-within .aura-select__menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .aura-select:hover .aura-action,
    .aura-select:focus-within .aura-action { border-color: var(--aura-border-strong); color: var(--aura-ink); }
    /* Transparent bridge over the 8px gap so moving cursor to the menu keeps it open */
    .aura-select__menu::before,
    .aura-dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
    .aura-select__link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: var(--aura-radius-btn);
        font-size: 15px;
        color: var(--aura-body);
        text-decoration: none;
        white-space: nowrap;
    }
    .aura-select__link:hover { background: var(--aura-canvas); color: var(--aura-ink); }
    .aura-action__count {
        min-width: 18px; height: 18px; padding: 0 5px;
        display: inline-flex; align-items: center; justify-content: center;
        font-size: 11px; font-weight: 600; line-height: 1;
        background: var(--aura-black); color: #fff; border-radius: 999px;
    }
    .aura-action__flag { width: 20px; height: auto; border-radius: 2px; }

    /* Bootstrap dropdown menus inside the header, re-themed */
    .aura-header .dropdown-menu {
        border: 1px solid var(--aura-border);
        border-radius: var(--aura-radius-md);
        box-shadow: var(--aura-shadow-xl);
        padding: 8px;
        font-family: var(--aura-font);
    }
    .aura-header .dropdown-item {
        border-radius: var(--aura-radius-btn);
        font-size: 15px;
        padding: 8px 12px;
        color: var(--aura-body);
    }
    .aura-header .dropdown-item:hover,
    .aura-header .dropdown-item:focus { background: var(--aura-canvas); color: var(--aura-ink); }

    /* ---- Burger (mobile) — morphing menu/close icon ---------------------- */
    .aura-burger {
        display: none;
        align-items: center;
        justify-content: center;
        width: 42px; height: 42px;
        border: 1px solid var(--aura-border);
        border-radius: var(--aura-radius-btn);
        background: var(--aura-card);
        color: var(--aura-ink);
        cursor: pointer;
    }
    .aura-burger__icon { width: 22px; height: 22px; transition: transform 300ms var(--aura-ease); }
    .aura-burger__top {
        stroke-dasharray: 12 63;
        transition: stroke-dasharray 300ms var(--aura-ease), stroke-dashoffset 300ms var(--aura-ease);
    }
    .aura-header.is-open .aura-burger__icon { transform: rotate(-45deg); }
    .aura-header.is-open .aura-burger__top { stroke-dasharray: 20 300; stroke-dashoffset: -32.42px; }

    /* ---- Mobile slide-down panel ----------------------------------------- */
    .aura-mobile {
        position: fixed;
        inset: 72px 0 0 0;
        z-index: 1020;
        background: var(--aura-canvas);
        border-top: 1px solid var(--aura-border);
        padding: 24px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--aura-base), transform var(--aura-base), visibility var(--aura-base);
    }
    .aura-header.is-open .aura-mobile { opacity: 1; visibility: visible; transform: translateY(0); }
    .aura-mobile__group { display: flex; flex-direction: column; gap: 4px; }
    .aura-mobile__label {
        font-size: 12px;
        letter-spacing: 0.444em;
        text-transform: uppercase;
        color: var(--aura-faint);
        padding: 8px 14px;
    }
    .aura-mobile__link {
        display: flex; align-items: center; gap: 10px;
        padding: 14px;
        border-radius: var(--aura-radius-btn);
        font-size: 18px;
        font-weight: 500;
        color: var(--aura-ink);
        text-decoration: none;
    }
    .aura-mobile__link:hover { background: var(--aura-canvas); }
    .aura-mobile__link--sub { font-size: 16px; font-weight: 400; color: var(--aura-body); padding-left: 24px; }
    .aura-mobile__divider { height: 1px; background: var(--aura-border); margin-block: 8px; }

    /* Spacer height ≈ header height (padding-top + bar) for inner pages */
    .aura-header-spacer { height: 104px; }

    /* ---- Responsive visibility ------------------------------------------- */
    .aura-only-mobile { display: none; }
    @media (min-width: 992px) {
        .aura-mobile { display: none; }
    }
    @media (max-width: 991px) {
        .aura-nav,
        .aura-only-desktop { display: none !important; }
        .aura-burger { display: inline-flex; }
        .aura-only-mobile { display: flex; }
        .aura-header { padding: 12px 12px 0; }
        .aura-header__inner { height: 60px; padding-inline: 16px; }
        .aura-header.is-scrolled .aura-header__inner { height: 56px; }
        /* Panel starts just below the floating pill (12 top + ~60 bar). */
        .aura-mobile { inset-block-start: 84px; }
        .aura-header-spacer { height: 84px; }
    }

/* ===== SIDE CART ===== */
		.aura-cart { width: 400px !important; background: #ffffff; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; }
		.aura-cart__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid #ece7e1; }
		.aura-cart__title { font-size: 18px; font-weight: 700; color: #1d1d1d; margin: 0; letter-spacing: -0.01em; }
		.aura-cart__close { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ece7e1; background: #fcf9f7; color: #8a8177; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
		.aura-cart__close:hover { background: #1d1d1d; color: #fff; border-color: #1d1d1d; }
		.aura-cart__body { flex: 1; display: flex; flex-direction: column; overflow: hidden; padding: 0; }
		.aura-cart__list { flex: 1; overflow-y: auto; padding: 18px 22px; display: flex; flex-direction: column; gap: 16px; }
		.aura-cart__item { display: flex; gap: 14px; align-items: flex-start; }
		.aura-cart__thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: #f4ece4; }
		.aura-cart__credits { width: 64px; height: 64px; border-radius: 12px; background: #f4ece4; border: 1px solid #ece7e1; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; color: #c8a45c; }
		.aura-cart__credits i { font-size: 18px; }
		.aura-cart__credits span { font-size: 9px; font-weight: 700; color: #1d1d1d; margin-top: 3px; }
		.aura-cart__info { flex: 1; min-width: 0; }
		.aura-cart__item-title { font-size: 14px; font-weight: 600; color: #1d1d1d; margin: 0 0 5px; line-height: 1.35; }
		.aura-cart__item-title a { color: inherit; text-decoration: none; }
		.aura-cart__item-title a:hover { color: #05060b; }
		.aura-cart__meta { font-size: 12px; color: #8a8177; display: flex; flex-wrap: wrap; gap: 4px 8px; margin-bottom: 6px; line-height: 1.4; }
		.aura-cart__meta i { color: #c8a45c; }
		.aura-cart__price { font-size: 13.5px; font-weight: 700; color: #1d1d1d; }
		.aura-cart__price .cred { color: #c8a45c; }
		.aura-cart__del { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #b7ada2; text-decoration: none; font-size: 16px; line-height: 1; transition: background 160ms ease, color 160ms ease; }
		.aura-cart__del:hover { background: #d1495b; color: #fff; }
		.aura-cart__footer { border-top: 1px solid #ece7e1; padding: 18px 22px 22px; background: #fcf9f7; }
		.aura-cart__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
		.aura-cart__row .label { font-size: 13.5px; color: #6a635b; }
		.aura-cart__row .amount { font-size: 15px; font-weight: 700; color: #1d1d1d; }
		.aura-cart__row.cred .label, .aura-cart__row.cred .amount { color: #c8a45c; }
		.aura-cart__actions { display: flex; gap: 10px; margin-top: 14px; }
		.aura-cart__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 46px; border-radius: 100px; font-family: inherit; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
		.aura-cart__btn--solid { background: #05060b; color: #fff; border: 0; }
		.aura-cart__btn--solid:hover { background: #000; color: #fff; }
		.aura-cart__btn--ghost { background: #fff; color: #1d1d1d; border-color: #d1cfcd; }
		.aura-cart__btn--ghost:hover { border-color: #1d1d1d; }
		.aura-cart__btn.disabled { opacity: 0.6; pointer-events: none; }
		.aura-cart__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
		.aura-cart__empty-icon { width: 80px; height: 80px; border-radius: 50%; background: #f4ece4; color: #9a7b63; display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 18px; }
		.aura-cart__empty p { color: #8a8177; font-size: 15px; margin: 0 0 20px; }
		@media (max-width: 480px) { .aura-cart { width: 100% !important; } }

/* ===== FOOTER ===== */
    .aura-footer {
        background: #05060b;
        color: rgba(255, 255, 255, 0.72);
        font-family: 'Hanken Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        padding: 72px 0 0;
    }
    .aura-footer__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }

    /* Top CTA + image */
    .aura-footer__cta {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
        align-items: center;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }
    .aura-footer__cta-title {
        font-size: 36px;
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: #ffffff;
        margin: 0 0 14px;
    }
    .aura-footer__cta-desc {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 26px;
        max-width: 460px;
    }
    .aura-footer__form { display: flex; gap: 10px; max-width: 520px; flex-wrap: wrap; }
    .aura-footer__form input[type="email"] {
        flex: 1;
        min-width: 200px;
        height: 52px;
        padding: 0 18px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        font: inherit;
        font-size: 15px;
    }
    .aura-footer__form input::placeholder { color: rgba(255, 255, 255, 0.45); }
    .aura-footer__form input:focus { outline: none; border-color: rgba(255, 255, 255, 0.5); }
    .aura-footer__subscribe {
        height: 52px;
        padding: 0 26px;
        border-radius: 12px;
        border: 0;
        background: #fcf9f7;
        color: #05060b;
        font: inherit;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: background 160ms ease;
    }
    .aura-footer__subscribe:hover { background: #ffffff; }
    .aura-footer .success_message { display: none; margin-top: 14px; color: #7bd6a8; font-size: 14px; }
    .aura-footer .success_message.show { display: block; }
    .aura-footer__disclaimer { display: block; margin-top: 14px; font-size: 12.5px; color: rgba(255, 255, 255, 0.4); }
    .aura-footer__cta-media img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 50px;
        transform: rotate(1.5deg);
    }

    /* Columns */
    .aura-footer__grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 40px;
        padding: 56px 0;
    }
    .aura-footer__brand-logo img { height: 46px; width: auto; margin-bottom: 18px; filter: invert(1); }
    .aura-footer__manifesto {
        font-size: 14.5px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 22px;
        max-width: 300px;
    }
    .aura-footer__social { display: flex; gap: 10px; }
    .aura-footer__social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        text-decoration: none;
        transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
    }
    .aura-footer__social a:hover { background: #ffffff; color: #05060b; border-color: #ffffff; }
    .aura-footer__col-title { font-size: 15px; font-weight: 600; color: #ffffff; margin: 0 0 18px; }
    .aura-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
    .aura-footer__links a { color: rgba(255, 255, 255, 0.62); text-decoration: none; font-size: 14.5px; transition: color 160ms ease; }
    .aura-footer__links a:hover { color: #ffffff; }
    .aura-footer__contact { margin-top: 20px; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); line-height: 1.7; }
    .aura-footer__contact i { width: 16px; color: rgba(255, 255, 255, 0.45); }
    .aura-footer__contact a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
    .aura-footer__contact a:hover { color: #ffffff; }

    /* Bottom bar */
    .aura-footer__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        padding: 22px 0 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }
    .aura-footer__copyright { font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }
    .aura-footer__copyright a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
    .aura-footer__payment {
        display: inline-flex;
        align-items: center;
        background: #ffffff;
        padding: 8px 14px;
        border-radius: 10px;
    }
    .aura-footer__payment img { height: 24px; width: auto; display: block; }

    /* Back to top */
    .back-to-top {
        position: fixed;
        right: 24px;
        bottom: 24px;
        z-index: 1100;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 0;
        background: #05060b;
        color: #fff;
        font-size: 15px;
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.25) 0 8px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
    }
    .back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

    @media (max-width: 900px) {
        .aura-footer__cta { grid-template-columns: 1fr; gap: 32px; }
        .aura-footer__cta-media { order: -1; }
        .aura-footer__cta-media img { transform: none; }
        .aura-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 560px) {
        .aura-footer { padding-top: 48px; }
        .aura-footer__cta-title { font-size: 28px; }
        .aura-footer__grid { grid-template-columns: 1fr; }
        .aura-footer__bottom { flex-direction: column; align-items: flex-start; }
    }

/* ===== ABOUT US PAGE ===== */
        .aura-ab { font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; color: #1d1d1d; }
        .aura-ab__container { max-width: 1200px; margin-inline: auto; padding: 0 24px; }
        .aura-ab__eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: #9a7b63; margin-bottom: 14px; }
        .aura-ab__title { font-size: 38px; line-height: 1.14; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 18px; }
        .aura-ab__text { font-size: 16px; line-height: 1.75; color: #5c554e; margin: 0 0 16px; }

        /* Two-column split section */
        .aura-ab__split { padding: 92px 0; }
        .aura-ab__split .aura-ab__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .aura-ab__media { position: relative; }
        .aura-ab__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 28px; box-shadow: rgba(0,0,0,0.14) 0px 24px 60px; }
        .aura-ab__media--tag::after {
            content: attr(data-tag);
            position: absolute; left: -16px; bottom: 28px;
            background: #ffffff; border: 1px solid #ece7e1; border-radius: 16px;
            padding: 14px 20px; font-size: 13px; font-weight: 600; color: #1d1d1d;
            box-shadow: rgba(0,0,0,0.12) 0px 16px 36px;
        }

        /* Values list */
        .aura-ab__list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
        .aura-ab__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #4a443d; line-height: 1.5; }
        .aura-ab__list i { color: #1f9d63; font-size: 13px; margin-top: 3px; }

        /* Values cards */
        .aura-ab__values { background: #f5efe9; padding: 92px 0; }
        .aura-ab__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
        .aura-ab__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .aura-ab__card { background: #fff; border: 1px solid #ece7e1; border-radius: 24px; padding: 34px 30px; transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease; }
        .aura-ab__card:hover { transform: translateY(-6px); box-shadow: rgba(0,0,0,0.10) 0px 22px 46px; border-color: #dccfc2; }
        .aura-ab__card-icon { width: 56px; height: 56px; border-radius: 16px; background: #f4ece4; color: #05060b; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; transition: background 260ms ease, color 260ms ease; }
        .aura-ab__card:hover .aura-ab__card-icon { background: #05060b; color: #fff; }
        .aura-ab__card h3 { font-size: 20px; font-weight: 600; color: #1d1d1d; margin: 0 0 10px; }
        .aura-ab__card p { font-size: 14.5px; line-height: 1.65; color: #6a635b; margin: 0; }

        /* CTA band */
        .aura-ab__cta { position: relative; overflow: hidden; }
        .aura-ab__cta-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 480px; }
        .aura-ab__cta-media { position: relative; }
        .aura-ab__cta-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        .aura-ab__cta-body { background: #fcf9f7; display: flex; flex-direction: column; justify-content: center; padding: 72px 60px; }
        .aura-ab__cta-body .aura-ab__title { font-size: 34px; }
        .aura-ab__btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; padding: 15px 32px; border-radius: 100px; background: #05060b; color: #fff; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 160ms ease; margin-top: 8px; }
        .aura-ab__btn:hover { background: #000; color: #fff; }

        @media (max-width: 900px) {
            .aura-ab__split .aura-ab__grid { grid-template-columns: 1fr; gap: 36px; }
            .aura-ab__split--rev .aura-ab__media { order: -1; }
            .aura-ab__media { max-width: 460px; margin-inline: auto; }
            .aura-ab__cards { grid-template-columns: 1fr; }
            .aura-ab__cta-grid { grid-template-columns: 1fr; }
            .aura-ab__cta-media { min-height: 340px; }
        }
        @media (max-width: 560px) {
            .aura-ab__split { padding: 60px 0; }
            .aura-ab__title { font-size: 30px; }
            .aura-ab__list { grid-template-columns: 1fr; }
            .aura-ab__cta-body { padding: 48px 28px; }
        }

/* ===== GENERIC PAGE ===== */
            .aura-page { background: #fcf9f7; padding: 70px 0 92px; font-family: 'Hanken Grotesk','Inter',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; }
            .aura-page__container { max-width: 900px; margin-inline: auto; padding: 0 24px; }
            .aura-page__card { background: #fff; border: 1px solid #ece7e1; border-radius: 26px; padding: 52px 56px; box-shadow: rgba(0,0,0,0.04) 0px 16px 44px; }
            .aura-page__title { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; color: #1d1d1d; margin: 0 0 12px; line-height: 1.15; }
            .aura-page__rule { width: 56px; height: 3px; background: #c8a45c; border-radius: 2px; margin-bottom: 30px; }

            .aura-page__content { font-size: 16px; line-height: 1.85; color: #5c554e; }
            .aura-page__content h1, .aura-page__content h2 { font-size: 24px; font-weight: 700; color: #1d1d1d; margin: 32px 0 12px; letter-spacing: -0.01em; }
            .aura-page__content h3, .aura-page__content h4 { font-size: 19px; font-weight: 600; color: #1d1d1d; margin: 26px 0 10px; }
            .aura-page__content p { margin: 0 0 16px; }
            .aura-page__content ul, .aura-page__content ol { margin: 0 0 16px; padding-left: 24px; }
            .aura-page__content ul { list-style: disc; }
            .aura-page__content ol { list-style: decimal; }
            .aura-page__content ul ul { list-style: circle; }
            .aura-page__content li { margin-bottom: 8px; display: list-item; }
            .aura-page__content li::marker { color: #c8a45c; }
            .aura-page__content a { color: #05060b; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
            .aura-page__content strong, .aura-page__content b { color: #1d1d1d; }
            .aura-page__content img { max-width: 100%; height: auto; border-radius: 14px; }
            .aura-page__content table { width: 100%; border-collapse: collapse; margin: 0 0 16px; }
            .aura-page__content th, .aura-page__content td { border: 1px solid #ece7e1; padding: 10px 12px; text-align: left; font-size: 14.5px; }
            .aura-page__content blockquote { border-left: 3px solid #c8a45c; margin: 0 0 16px; padding: 6px 18px; color: #6a635b; background: #fcf9f7; border-radius: 8px; }

            @media (max-width: 560px) {
                .aura-page__card { padding: 34px 24px; }
                .aura-page__title { font-size: 28px; }
            }

/* ===== ORDER INDEX ===== */
      div.dataTables_wrapper div.dataTables_paginate{
          display: none;
      }
