/** Shopify CDN: Minification failed

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

**/
/* ==========================================================
   SCREENIX DESIGN SYSTEM
   Premium architectural living brand — Global CSS Layer
   Loaded after base.css, overrides with specificity.
   ========================================================== */

/* ----------------------------------------------------------
   1. DESIGN TOKENS (Custom Properties)
   ---------------------------------------------------------- */
:root {
  /* --- Colour Palette (RGB triplets for rgba() usage) --- */
  --sx-charcoal:       16, 18, 17;        /* #101211 */
  --sx-graphite:       43, 46, 44;        /* #2B2E2C */
  --sx-natural-gray:   168, 172, 169;     /* #A8ACA9 */
  --sx-warm-white:     247, 245, 241;     /* #F7F5F1 */
  --sx-white:          255, 255, 255;
  --sx-sage:           156, 175, 151;     /* #9CAF97 */
  --sx-forest:         47, 79, 62;        /* #2F4F3E */
  --sx-accent:         74, 107, 79;       /* #4A6B4F — CTA / accent only */

  /* --- Solid colour shortcuts --- */
  --sx-c-charcoal:     rgb(var(--sx-charcoal));
  --sx-c-graphite:     rgb(var(--sx-graphite));
  --sx-c-natural-gray: rgb(var(--sx-natural-gray));
  --sx-c-warm-white:   rgb(var(--sx-warm-white));
  --sx-c-white:        rgb(var(--sx-white));
  --sx-c-sage:         rgb(var(--sx-sage));
  --sx-c-forest:       rgb(var(--sx-forest));
  --sx-c-accent:       rgb(var(--sx-accent));

  /* --- Typography --- */
  --sx-font-heading: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --sx-font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* --- Fluid type scale --- */
  --sx-text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --sx-text-sm:   clamp(0.875rem, 0.8rem  + 0.375vw, 1rem);
  --sx-text-base: clamp(1rem,     0.9rem  + 0.5vw,   1.125rem);
  --sx-text-lg:   clamp(1.25rem,  1.1rem  + 0.75vw,  1.5rem);
  --sx-text-2xl:  clamp(1.75rem,  1.3rem  + 2vw,     2.5rem);
  --sx-text-4xl:  clamp(2.5rem,   1.8rem  + 3.5vw,   5rem);
  --sx-text-hero: clamp(3rem,     2rem    + 6vw,      8rem);

  /* --- Spacing (8pt grid with luxury breathing room) --- */
  --sx-space-1:   0.5rem;
  --sx-space-2:   1rem;
  --sx-space-3:   1.5rem;
  --sx-space-4:   2rem;
  --sx-space-6:   4rem;
  --sx-space-8:   6rem;
  --sx-space-10:  8rem;
  --sx-space-12:  12rem;

  /* --- Motion --- */
  --sx-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --sx-ease-in-expo:  cubic-bezier(0.7,  0, 0.84, 0);
  --sx-ease-smooth:   cubic-bezier(0.4,  0, 0.2,  1);
  --sx-dur-fast:      0.25s;
  --sx-dur-normal:    0.5s;
  --sx-dur-slow:      0.9s;

  /* --- Layout --- */
  --sx-max-width:    1440px;
  --sx-content-max:  1200px;
  --sx-gutter:       clamp(1.5rem, 5vw, 5rem);

  /* --- Borders / Radii --- */
  --sx-radius-sm:   0px;
  --sx-radius-md:   0px;
  --sx-radius-lg:   0px;

  /* --- Elevation --- */
  --sx-shadow-card: 0 2px 12px rgba(var(--sx-charcoal), 0.07), 0 1px 4px rgba(var(--sx-charcoal), 0.04);
  --sx-shadow-hover: 0 8px 28px rgba(var(--sx-charcoal), 0.12);
  --sx-shadow-modal: 0 24px 64px rgba(var(--sx-charcoal), 0.25);

  /* --- Component: Button --- */
  --sx-btn-bg:         rgb(var(--sx-charcoal));
  --sx-btn-color:      rgb(var(--sx-warm-white));
  --sx-btn-bg-hover:   rgb(var(--sx-graphite));
  --sx-btn-accent-bg:  rgb(var(--sx-accent));
  --sx-btn-h:          44px;
  --sx-btn-px:         1.75rem;
  --sx-btn-font-size:  0.8125rem;
  --sx-btn-tracking:   0.08em;

  /* --- Google Font preload flag --- */
  --sx-font-loaded: 0;
}


/* ----------------------------------------------------------
   2. GOOGLE FONTS IMPORT (Inter & Archivo)
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Archivo:wght@400;500;600;700&display=swap');


/* ----------------------------------------------------------
   3. GLOBAL BODY / TYPOGRAPHY OVERRIDES
   ---------------------------------------------------------- */
body {
  font-family: var(--sx-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--sx-font-heading);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: none;
  line-height: 1.15;
}

/* Headings fluid sizes */
h1, .h1 { font-size: var(--sx-text-4xl); }
h2, .h2 { font-size: var(--sx-text-2xl); }
h3, .h3 { font-size: var(--sx-text-lg); }
h4, .h4 { font-size: var(--sx-text-base); }

p {
  line-height: 1.65;
  font-size: var(--sx-text-base);
}

a {
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}


/* ----------------------------------------------------------
   4. UTILITY CLASSES
   ---------------------------------------------------------- */

/* Layout helpers */
.sx-container {
  width: 100%;
  max-width: var(--sx-content-max);
  margin-inline: auto;
  padding-inline: var(--sx-gutter);
  box-sizing: border-box;
}

.sx-container--wide {
  max-width: var(--sx-max-width);
}

.sx-container--narrow {
  max-width: 800px;
}

/* Visibility */
.sx-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Overline / eyebrow text */
.sx-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(var(--sx-charcoal));
}

/* Section padding utility */
.sx-section {
  padding-block: clamp(120px, 10vw, 160px);
}

.sx-section--compact {
  padding-block: var(--sx-space-6);
}

.sx-section--flush {
  padding-block: 0;
}

/* Divider */
.sx-divider {
  border: none;
  border-top: 1px solid rgba(var(--sx-charcoal), 0.1);
  margin: 0;
}


/* ----------------------------------------------------------
   5. BUTTON SYSTEM
   ---------------------------------------------------------- */

/* Base button */
.sx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: auto;
  padding: 1rem 2rem;
  background: var(--sx-btn-bg);
  color: var(--sx-btn-color);
  font-family: var(--sx-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition:
    background var(--sx-dur-fast) var(--sx-ease-smooth),
    transform var(--sx-dur-fast) var(--sx-ease-smooth),
    box-shadow var(--sx-dur-fast) var(--sx-ease-smooth);
}

.sx-btn:hover {
  background: var(--sx-btn-bg-hover);
  transform: translateY(-1px);
  box-shadow: var(--sx-shadow-hover);
}

.sx-btn:focus-visible {
  outline: 2px solid rgb(var(--sx-accent));
  outline-offset: 3px;
}

/* Accent/CTA button */
.sx-btn--accent {
  background: var(--sx-btn-accent-bg);
}

.sx-btn--accent:hover {
  background: rgb(var(--sx-forest));
}

/* Ghost button */
.sx-btn--ghost {
  background: transparent;
  color: rgb(var(--sx-charcoal));
  border: 1px solid rgb(var(--sx-charcoal));
}

.sx-btn--ghost:hover {
  background: rgba(var(--sx-charcoal), 0.05);
  transform: translateY(-1px);
}

/* Ghost on dark background */
.sx-btn--ghost-light {
  background: transparent;
  color: rgb(var(--sx-warm-white));
  border: 1px solid rgba(var(--sx-warm-white), 0.35);
}

.sx-btn--ghost-light:hover {
  background: rgba(var(--sx-warm-white), 0.1);
  border-color: rgba(var(--sx-warm-white), 0.6);
  transform: translateY(-1px);
}

/* Text link button (arrow) */
.sx-btn--text {
  background: transparent;
  color: rgb(var(--sx-charcoal));
  height: auto;
  padding: 0;
  border-radius: 0;
  gap: 0.375rem;
  font-size: var(--sx-text-sm);
  border-bottom: 1px solid rgba(var(--sx-charcoal), 0.3);
  transition:
    gap var(--sx-dur-fast) var(--sx-ease-smooth),
    border-color var(--sx-dur-fast) var(--sx-ease-smooth);
}

.sx-btn--text:hover {
  gap: 0.625rem;
  border-color: rgb(var(--sx-charcoal));
  transform: none;
  box-shadow: none;
  background: transparent;
}

/* Large button */
.sx-btn--lg {
  height: 52px;
  padding-inline: 2.5rem;
  font-size: 0.875rem;
}

/* Icon slot in button */
.sx-btn__icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  transition: transform var(--sx-dur-fast) var(--sx-ease-smooth);
}

.sx-btn:hover .sx-btn__icon {
  transform: translateX(3px);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .sx-btn,
  .sx-btn:hover {
    transition: none;
    transform: none;
  }
}


/* ----------------------------------------------------------
   6. CARD SYSTEM (shared by section cards)
   ---------------------------------------------------------- */

.sx-card {
  background: rgb(var(--sx-white));
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition:
    transform var(--sx-dur-fast) var(--sx-ease-smooth),
    box-shadow var(--sx-dur-fast) var(--sx-ease-smooth);
}

.sx-card:hover {
  transform: none;
  box-shadow: none;
}

.sx-card__media {
  position: relative;
  overflow: hidden;
}

.sx-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--sx-dur-normal) var(--sx-ease-smooth);
}

.sx-card:hover .sx-card__media img {
  transform: scale(1.04);
}

.sx-card__body {
  padding: 1.25rem 1.5rem;
}

.sx-card__tag {
  display: inline-block;
  font-size: var(--sx-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--sx-accent));
  margin-bottom: 0.5rem;
}

.sx-card__title {
  font-size: var(--sx-text-lg);
  font-weight: 600;
  color: rgb(var(--sx-charcoal));
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.sx-card__text {
  font-size: var(--sx-text-sm);
  color: rgb(var(--sx-graphite));
  line-height: 1.6;
  margin: 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .sx-card,
  .sx-card__media img {
    transition: none;
  }
  .sx-card:hover {
    transform: none;
  }
}


/* ----------------------------------------------------------
   7. SECTION HEADING PATTERN
   ---------------------------------------------------------- */

.sx-section-header {
  margin-bottom: var(--sx-space-6);
}

.sx-section-header--centered {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sx-space-6);
}

.sx-section-title {
  font-size: var(--sx-text-4xl);
  font-weight: 500;
  color: rgb(var(--sx-charcoal));
  letter-spacing: -0.04em;
  text-transform: none;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.sx-section-subtitle {
  font-size: var(--sx-text-base);
  color: rgb(var(--sx-graphite));
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

.sx-section-header--centered .sx-section-subtitle {
  margin-inline: auto;
}


/* ----------------------------------------------------------
   8. SCROLL REVEAL ANIMATION (Intersection Observer)
   ---------------------------------------------------------- */

.sx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--sx-dur-slow) var(--sx-ease-out-expo),
    transform var(--sx-dur-slow) var(--sx-ease-out-expo);
}

.sx-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sx-reveal--delay-1 { transition-delay: 0.1s; }
.sx-reveal--delay-2 { transition-delay: 0.2s; }
.sx-reveal--delay-3 { transition-delay: 0.3s; }
.sx-reveal--delay-4 { transition-delay: 0.4s; }
.sx-reveal--delay-5 { transition-delay: 0.5s; }

/* Stagger children */
.sx-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--sx-ease-out-expo),
    transform 0.6s var(--sx-ease-out-expo);
}

.sx-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.sx-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.sx-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.sx-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.sx-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.sx-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .sx-reveal,
  .sx-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ----------------------------------------------------------
   9. HEADER OVERRIDES — SCREENIX STYLE
   ---------------------------------------------------------- */

/* Header base */
.section-header .header {
  transition:
    background-color var(--sx-dur-fast) var(--sx-ease-smooth),
    backdrop-filter var(--sx-dur-fast) var(--sx-ease-smooth),
    box-shadow var(--sx-dur-fast) var(--sx-ease-smooth);
}

/* Transparent mode (hero pages) */
.sx-header-transparent .section-header .header {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

/* Solid after scroll */
.sx-header-scrolled .section-header .header,
.section-header .header:not(.sx-transparent) {
  background: rgba(var(--sx-warm-white), 0.97);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(var(--sx-charcoal), 0.08);
}

/* CTA button in header */
.sx-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: auto;
  padding: 1rem 2rem;
  background: rgb(var(--sx-charcoal));
  color: rgb(var(--sx-warm-white));
  font-family: var(--sx-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
  transition:
    background var(--sx-dur-fast) var(--sx-ease-smooth);
}

.sx-header-cta:hover {
  background: rgb(var(--sx-graphite));
  color: rgb(var(--sx-white));
  text-decoration: none;
}

@media screen and (max-width: 989px) {
  .sx-header-cta {
    display: none;
  }
}


/* ----------------------------------------------------------
   10. ANNOUNCEMENT BAR OVERRIDES — SCREENIX STYLE
   ---------------------------------------------------------- */

.utility-bar.sx-announcement {
  background: rgb(var(--sx-charcoal)) !important;
  color: rgb(var(--sx-warm-white)) !important;
  border-bottom: 1px solid rgba(var(--sx-warm-white), 0.08);
}

.sx-announcement .announcement-bar__message {
  font-family: var(--sx-font-body);
  font-size: var(--sx-text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(var(--sx-warm-white));
}

.sx-announcement a {
  color: rgb(var(--sx-sage));
  text-decoration: none;
}

.sx-announcement a:hover {
  color: rgb(var(--sx-warm-white));
}

/* Dismiss button */
.sx-announcement-dismiss {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(var(--sx-warm-white), 0.6);
  padding: 0.25rem;
  line-height: 1;
  transition: color var(--sx-dur-fast) ease;
}

.sx-announcement-dismiss:hover {
  color: rgb(var(--sx-warm-white));
}


/* ----------------------------------------------------------
   11. COLOUR SCHEME BACKGROUNDS (quick overrides)
   ---------------------------------------------------------- */

/* Dark section — charcoal */
.sx-bg-dark {
  background: rgb(var(--sx-charcoal));
  color: rgb(var(--sx-warm-white));
}

.sx-bg-dark .sx-section-title,
.sx-bg-dark .sx-section-subtitle {
  color: rgb(var(--sx-warm-white));
}

.sx-bg-dark .sx-divider {
  border-color: rgba(var(--sx-warm-white), 0.1);
}

/* Warm white */
.sx-bg-warm {
  background: rgb(var(--sx-warm-white));
}

/* Forest accent panel */
.sx-bg-forest {
  background: rgb(var(--sx-forest));
  color: rgb(var(--sx-warm-white));
}

/* Graphite mid-tone */
.sx-bg-graphite {
  background: rgb(var(--sx-graphite));
  color: rgb(var(--sx-warm-white));
}

/* Off-white tint */
.sx-bg-tint {
  background: #F4F4F2;
}


/* ----------------------------------------------------------
   12. GRID HELPERS
   ---------------------------------------------------------- */

.sx-grid {
  display: grid;
  gap: var(--sx-space-3);
}

.sx-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sx-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media screen and (max-width: 1199px) {
  .sx-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

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

@media screen and (max-width: 749px) {
  .sx-grid--2,
  .sx-grid--3,
  .sx-grid--4 { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------
   13. IMAGE OVERLAY HELPER
   ---------------------------------------------------------- */

.sx-overlay {
  position: relative;
  isolation: isolate;
}

.sx-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--sx-charcoal), 0) 0%,
    rgba(var(--sx-charcoal), var(--sx-overlay-opacity, 0.45)) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.sx-overlay > * {
  position: relative;
  z-index: 2;
}


/* ----------------------------------------------------------
   14. BADGE
   ---------------------------------------------------------- */

.sx-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(var(--sx-accent), 0.1);
  color: rgb(var(--sx-accent));
  border-radius: var(--sx-radius-sm);
  font-size: var(--sx-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sx-badge--dark {
  background: rgba(var(--sx-charcoal), 0.08);
  color: rgb(var(--sx-charcoal));
}

.sx-badge--light {
  background: rgba(var(--sx-warm-white), 0.15);
  color: rgb(var(--sx-warm-white));
  border: 1px solid rgba(var(--sx-warm-white), 0.2);
}


/* ----------------------------------------------------------
   15. TRUST BAR (micro strip below hero)
   ---------------------------------------------------------- */

.sx-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  padding: 0.875rem var(--sx-gutter);
  border-top: 1px solid rgba(var(--sx-charcoal), 0.08);
  background: rgb(var(--sx-warm-white));
}

.sx-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--sx-text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgb(var(--sx-graphite));
  white-space: nowrap;
}

.sx-trust-bar__item svg,
.sx-trust-bar__item .icon {
  width: 14px;
  height: 14px;
  color: rgb(var(--sx-charcoal));
  flex-shrink: 0;
}

.sx-trust-bar__sep {
  width: 1px;
  height: 14px;
  background: rgba(var(--sx-charcoal), 0.12);
}

@media screen and (max-width: 749px) {
  .sx-trust-bar {
    gap: 0.5rem 1.25rem;
  }

  .sx-trust-bar__sep {
    display: none;
  }
}


/* ----------------------------------------------------------
   16. FOCUS VISIBLE (WCAG 2.2 AA)
   ---------------------------------------------------------- */

:focus-visible {
  outline: 2px solid rgb(var(--sx-accent));
  outline-offset: 3px;
  border-radius: 2px;
}


/* ----------------------------------------------------------
   17. SCROLLBAR (subtle)
   ---------------------------------------------------------- */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(var(--sx-charcoal), 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--sx-charcoal), 0.4);
}


/* ----------------------------------------------------------
   18. SHOPIFY REFRESH BUTTON RESET (align with SCREENIX style)
   ---------------------------------------------------------- */

.button,
.shopify-payment-button__button--unbranded {
  font-family: var(--sx-font-body) !important;
  letter-spacing: 0.06em !important;
}

/* Primary button (overrides scheme colours to SCREENIX style) */
.button--primary {
  background: rgb(var(--sx-charcoal)) !important;
  color: rgb(var(--sx-warm-white)) !important;
  border-color: rgb(var(--sx-charcoal)) !important;
}

.button--primary:hover {
  background: rgb(var(--sx-graphite)) !important;
}

/* ----------------------------------------------------------
   19. MEGA MENU OVERRIDES (SCREENIX Redesign)
   ---------------------------------------------------------- */
.sx-mega-menu {
  border: none;
  box-shadow: none;
  padding-block: var(--sx-space-6);
  background: rgb(var(--sx-warm-white)) !important;
}

.sx-mega-menu__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sx-space-6);
}

.sx-mega-menu__intro {
  max-width: 320px;
}

.sx-mega-menu__intro .sx-eyebrow {
  margin-bottom: var(--sx-space-3);
  color: rgb(var(--sx-natural-gray));
}

.sx-mega-menu__heading {
  font-size: var(--sx-text-4xl);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgb(var(--sx-charcoal));
  margin: 0;
  line-height: 1.1;
}

.sx-mega-menu__list {
  display: flex;
  gap: var(--sx-space-6);
}

.sx-mega-menu__list > li {
  flex: 1;
}

.sx-mega-menu__link {
  font-family: var(--sx-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(var(--sx-natural-gray));
  margin-bottom: var(--sx-space-2);
  display: block;
}

.sx-mega-menu__list .list-unstyled li a {
  font-size: var(--sx-text-sm);
  color: rgb(var(--sx-charcoal));
  padding-block: 0.5rem;
  display: block;
  text-decoration: none;
  transition: color var(--sx-dur-fast) ease;
}

.sx-mega-menu__list .list-unstyled li a:hover {
  color: rgb(var(--sx-sage));
}

/* Active Nav Link (Sage) */
.header__inline-menu details[open] > summary.header__menu-item,
.header__inline-menu summary.header__menu-item:hover,
.header__inline-menu .header__menu-item:hover {
  color: rgb(var(--sx-sage));
}

/* ----------------------------------------------------------
   X. HEADER & MEGA MENU (REDESIGN)
   ---------------------------------------------------------- */
/* Transparent header over hero */
/* Transparent header over hero (Index Only) */
.template-index .shopify-section-group-header-group {
  position: relative;
  z-index: 100;
}

/* Allow Dawn's sticky behavior to override our relative positioning */
.template-index .shopify-section-group-header-group.shopify-section-header-sticky {
  position: sticky !important;
}

.template-index #MainContent {
  margin-top: calc(-1 * var(--header-height, 80px)) !important;
}

.template-index .shopify-section-group-header-group,
.template-index #shopify-section-header,
.template-index sticky-header,
.template-index .header-wrapper,
.template-index .header,
.template-index .sx-header-transparent {
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: none !important;
}

.template-index sticky-header:not(.scrolled-past-header) .header__heading-link,
.template-index sticky-header:not(.scrolled-past-header) .header__menu-item,
.template-index sticky-header:not(.scrolled-past-header) .header__icon,
.template-index sticky-header:not(.scrolled-past-header) .header__heading-logo-wrapper {
  color: rgb(var(--sx-white)) !important;
}

.template-index sticky-header:not(.scrolled-past-header) .header__menu-item:hover,
.template-index sticky-header:not(.scrolled-past-header) .header__icon:hover {
  color: rgba(var(--sx-white), 0.7) !important;
}

/* Scrolled state or Mega menu open state */
sticky-header.shopify-section-header-sticky,
sticky-header.shopify-section-header-sticky .header-wrapper,
sticky-header.shopify-section-header-sticky .header,
.scrolled-past-header sticky-header,
.scrolled-past-header sticky-header .header-wrapper,
.scrolled-past-header sticky-header .header,
sticky-header:has(details[open]),
sticky-header:has(details[open]) .header-wrapper,
sticky-header:has(details[open]) .header {
  background-color: rgb(var(--sx-white)) !important;
}

sticky-header.shopify-section-header-sticky,
.scrolled-past-header sticky-header,
sticky-header:has(details[open]) {
  border-bottom: 1px solid rgba(var(--sx-charcoal), 0.1) !important;
}

.template-index sticky-header.shopify-section-header-sticky .sx-header-transparent .header__heading-link,
.template-index sticky-header.shopify-section-header-sticky .sx-header-transparent .header__menu-item,
.template-index sticky-header.shopify-section-header-sticky .sx-header-transparent .header__icon,
.template-index sticky-header.shopify-section-header-sticky .sx-header-transparent .header__heading-logo-wrapper,
.template-index sticky-header:has(details[open]) .sx-header-transparent .header__heading-link,
.template-index sticky-header:has(details[open]) .sx-header-transparent .header__menu-item,
.template-index sticky-header:has(details[open]) .sx-header-transparent .header__icon,
.template-index sticky-header:has(details[open]) .sx-header-transparent .header__heading-logo-wrapper,
.template-index sticky-header.shopify-section-header-sticky .header__heading-link,
.template-index sticky-header.shopify-section-header-sticky .header__menu-item,
.template-index sticky-header.shopify-section-header-sticky .header__icon,
.template-index sticky-header.shopify-section-header-sticky .header__heading-logo-wrapper,
.template-index .scrolled-past-header sticky-header .header__heading-link,
.template-index .scrolled-past-header sticky-header .header__menu-item,
.template-index .scrolled-past-header sticky-header .header__icon,
.template-index .scrolled-past-header sticky-header .header__heading-logo-wrapper,
.template-index sticky-header:has(details[open]) .header__heading-link,
.template-index sticky-header:has(details[open]) .header__menu-item,
.template-index sticky-header:has(details[open]) .header__icon,
.template-index sticky-header:has(details[open]) .header__heading-logo-wrapper {
  color: rgb(var(--sx-charcoal)) !important;
}

/* Full width header override */
.sx-header-full-width {
  max-width: none !important;
  padding-left: clamp(20px, 4vw, 60px) !important;
  padding-right: clamp(20px, 4vw, 60px) !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.sx-header-full-width .header__inline-menu {
  display: flex;
  justify-content: center;
}
.sx-header-full-width .header__icons {
  justify-content: flex-end;
}

/* Mega Menu Dropdown */
.header__inline-menu,
.header__inline-menu > ul,
.header__inline-menu > ul > li,
details.mega-menu {
  position: static !important;
}

.sx-mega-menu {
  position: absolute;
  top: 100%;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: max-content !important;
  max-width: 95vw !important;
  background: rgb(var(--sx-white));
  border: 1px solid rgba(var(--sx-charcoal), 0.05);
  box-shadow: var(--sx-shadow-modal);
  padding: var(--sx-space-6) 0;
  border-radius: var(--sx-radius-lg) !important;
}

.sx-mega-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sx-space-12);
  padding: 0 var(--sx-space-8) !important;
}

.sx-mega-menu-promo {
  flex: 0 1 300px;
}

.sx-mega-menu-promo h3 {
  font-family: var(--sx-font-heading);
  font-size: var(--sx-text-2xl) !important;
  font-weight: 400 !important;
  line-height: 1.2;
  margin-top: var(--sx-space-2);
  color: rgb(var(--sx-charcoal));
}

.sx-mega-menu-columns {
  display: flex;
  gap: var(--sx-space-8);
}

.sx-mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sx-mega-menu-list-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(var(--sx-natural-gray));
  margin-bottom: var(--sx-space-3);
}

.sx-mega-menu-link {
  display: block;
  font-family: var(--sx-font-body);
  font-size: var(--sx-text-base);
  color: rgb(var(--sx-charcoal));
  text-decoration: none;
  padding-bottom: var(--sx-space-1);
  margin-bottom: var(--sx-space-1);
  transition: color var(--sx-dur-fast) ease;
}

.sx-mega-menu-link:hover {
  color: rgb(var(--sx-accent));
}

/* Mobile Menu Full Screen & White Background */
.menu-drawer {
  width: 100vw !important;
  max-width: 100vw !important;
  background-color: rgb(var(--sx-white)) !important;
}
.menu-drawer__navigation, .menu-drawer__inner-container, .menu-drawer__submenu {
  background-color: rgb(var(--sx-white)) !important;
}
.sx-bg-white {
  background-color: rgb(var(--sx-white)) !important;
}
.menu-drawer__menu-item, .menu-drawer__menu-item * {
  color: rgb(var(--sx-charcoal)) !important;
}

/* Smooth Transitions for Header */
.shopify-section-group-header-group,
#shopify-section-header,
sticky-header,
.header-wrapper,
.header,
.header__heading-link,
.header__menu-item,
.header__icon {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease !important;
}

/* ----------------------------------------------------------
   XI. SEARCH MODAL REDESIGN
   ---------------------------------------------------------- */
.search-modal.modal__content {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(var(--sx-white), 0.7) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding-top: 15vh !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

details[open] > .search-modal.modal__content {
  opacity: 1;
  visibility: visible;
}

.search-modal__content {
  background: transparent !important;
  width: 100% !important;
  max-width: 700px !important;
  padding: 0 20px !important;
  position: relative !important;
  top: auto !important;
  transform: none !important;
  box-shadow: none !important;
}

.search-modal__form .field {
  border-bottom: 1px solid rgba(var(--sx-charcoal), 0.3) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.search-modal__form .field::before,
.search-modal__form .field::after {
  display: none !important;
}

.search-modal__form .search__input {
  font-family: var(--sx-font-body) !important;
  font-size: 24px !important;
  color: rgb(var(--sx-charcoal)) !important;
  padding: 20px 0 !important;
  box-shadow: none !important;
}

.search-modal__close-button {
  position: fixed !important;
  top: 30px !important;
  right: 30px !important;
  background: transparent !important;
  border: none !important;
  color: rgb(var(--sx-charcoal)) !important;
  cursor: pointer !important;
  transform: scale(1.5) !important;
}

.predictive-search {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-top: 30px !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-height: 60vh !important;
  overflow-y: auto !important;
}

