/** Shopify CDN: Minification failed

Line 395:1 Expected "}" to go with "{"

**/
/* ==========================================================================
   WHY NOT — brand overrides on top of Dawn.
   Loaded after base.css so these declarations win the cascade.
   Guarantees Archivo/Inter render correctly even if Shopify's font_picker
   settings (type_header_font / type_body_font) don't resolve as expected.
   ========================================================================== */

:root {
  --font-heading-family: 'Archivo', 'Century Gothic', sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 700;

  --font-body-family: 'Inter', sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

/* Expanded width on the big display sizes only (hero/section headlines) —
   holds up in the outlined hero treatment. Card/component titles (h3 down)
   stay normal width so small uppercase UI text doesn't feel bloated. */
h1, h2, .h0, .h1, .h2 {
  font-stretch: 125%;
}

.announcement-bar-text,
.header__menu-item,
.button,
button.button,
.product-form__submit {
  letter-spacing: 0.04em;
}

/* Sharp corners throughout, matching the brand's high-contrast, no-frills mark */
.button,
.field__input,
.select__select,
.product-form__input input[type='radio'] + label,
.card,
.card__inner,
.price,
.badge {
  border-radius: 0 !important;
}

/* Badges (Sale / Pre-Order / Sold out) can stay pill-shaped — matches the
   static site's badge treatment even though other corners are sharp */
.badge {
  border-radius: 40px !important;
}

.site-header,
.footer {
  border-color: rgba(247, 247, 242, 0.16);
}

/* ---------- Motion ---------- */

/* Native cross-page fade (Chromium 126+). Pure progressive enhancement —
   browsers without support just do a normal navigation, no fallback needed. */
@view-transition {
  navigation: auto;
}
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation-duration: 220ms; }
  ::view-transition-new(root) { animation-duration: 280ms; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) {
    animation: none !important;
  }
}

/* Staggered fade-up for above-the-fold content on load (hero, image+text) */
@keyframes why-not-entrance-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.why-not-entrance > * {
  opacity: 0;
  animation: why-not-entrance-fade-up 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.why-not-entrance > *:nth-child(1) { animation-delay: 100ms; }
.why-not-entrance > *:nth-child(2) { animation-delay: 220ms; }
.why-not-entrance > *:nth-child(3) { animation-delay: 340ms; }
.why-not-entrance > *:nth-child(4) { animation-delay: 460ms; }
.why-not-entrance > *:nth-child(n+5) { animation-delay: 460ms; }
@media (prefers-reduced-motion: reduce) {
  .why-not-entrance > * { opacity: 1; animation: none; }
}

/* Fade + scale entrance for a hero/split image, slightly after the text */
@keyframes why-not-entrance-fade-scale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.why-not-entrance-media {
  opacity: 0;
  animation: why-not-entrance-fade-scale 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 260ms;
}
@media (prefers-reduced-motion: reduce) {
  .why-not-entrance-media { opacity: 1; animation: none; }
}

/* Logo micro-interaction */
.header__heading-logo-wrapper,
.header__heading-link {
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.header__heading-link:hover .header__heading-logo-wrapper { transform: scale(1.06) rotate(-3deg); }
@media (prefers-reduced-motion: reduce) {
  .header__heading-link:hover .header__heading-logo-wrapper { transform: none; }
}

/* Primary button sheen sweep on hover (secondary/outline buttons stay plain) */
.button:not(.button--secondary):not(.button--tertiary) {
  position: relative;
  overflow: hidden;
}
.button:not(.button--secondary):not(.button--tertiary)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-120%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .button:not(.button--secondary):not(.button--tertiary):hover::before {
    transition: transform 650ms ease-out;
    transform: translateX(120%);
  }
}

/* Nav link + card link color/underline on hover */
.header__menu-item {
  transition: color 180ms ease-out;
}
.header__menu-item:hover {
  color: rgb(var(--color-foreground));
}

/* Dawn's scroll-trigger entrance animation ends on transform: translateY(0)
   with fill-mode: forwards, which can outrank a plain :hover transform rule
   on the same element. Drop the finished entrance animation on hover so our
   own hover lift (why-not-card, defined in why-not-lineup.liquid) applies. */
.why-not-card.scroll-trigger:hover {
  .why-not-card:hover {
  transform: translateY(-6px) !important;
}
@media (prefers-reduced-motion: reduce) {
  .why-not-card:hover {
    transform: none !important;
  }
}

/* ---------- Page ground ---------- */
/* Dawn gives <body> the first colour scheme, which here is the light cream
   scheme-1. That inverts the brand: the landing page is black with occasional
   full-width light bands, not the reverse. Sections still paint their own
   scheme, so this only governs the ground behind and between them. */
/* body.gradient is needed: Dawn puts .gradient on <body>, and that class
   (0,1,0) outranks a bare `body` rule (0,0,1), repainting the light ground on
   any page without its own colour scheme — the collections index, search,
   blog, customer account pages. */
body,
body.gradient {
  background: #0a0a0a;
  color: rgba(247, 247, 242, 0.75);
}

/* ---------- Product cards ---------- */
/* Same lift the landing page's cards use on hover. */
.card-wrapper .card {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.card-wrapper:hover .card {
  transform: translateY(-6px);
}
@media (prefers-reduced-motion: reduce) {
  .card-wrapper:hover .card { transform: none; }
}

/* ---------- Navigation ---------- */
/* Matches the landing page: uppercase Archivo, wide-ish tracking, and a 2px
   bar that grows from the left on hover. Replaces Dawn's lowercase links and
   its plain text-decoration underline. */
.header__inline-menu .list-menu--inline {
  gap: 3.2rem; /* = the landing page's 32px */
}
.header__inline-menu .header__menu-item {
  position: relative;
  padding: 0.4rem 0;
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.75);
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.header__inline-menu .header__menu-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgb(var(--color-foreground));
  transition: width 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.header__inline-menu .header__menu-item:hover::after,
.header__inline-menu .header__menu-item:has(.header__active-menu-item)::after {
  width: 100%;
}
.header__inline-menu .header__menu-item:hover,
.header__inline-menu .header__menu-item:has(.header__active-menu-item) {
  color: rgb(var(--color-foreground));
}
/* Drop Dawn's own underline so only the animated bar shows */
.header__inline-menu .header__menu-item:hover span,
.header__inline-menu .header__active-menu-item {
  text-decoration: none;
}
/* Colour fallback for browsers without :has() — the active link still reads
   as active, just without the bar. */
.header__inline-menu .header__active-menu-item {
  color: rgb(var(--color-foreground));
}
@media (prefers-reduced-motion: reduce) {
  .header__inline-menu .header__menu-item::after { transition: none; }
}

/* Mobile drawer menu picks up the same uppercase treatment */
.menu-drawer__menu-item {
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Header CTA button ---------- */
/* Mirrors the landing page's solid white Pre-Order button, which stock Dawn
   has no equivalent for. Sits alongside the search/account/cart icons. */
.why-not-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.2rem;
  padding: 1.1rem 2rem;
  border: 2px solid rgb(var(--color-foreground));
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1),
              color 180ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.why-not-header-cta:hover {
  background: transparent;
  color: rgb(var(--color-foreground));
  transform: translateY(-2px);
}
.why-not-header-cta:active { transform: translateY(0) scale(0.97); }
.why-not-header-cta:focus-visible {
  outline: 3px solid rgb(var(--color-foreground));
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .why-not-header-cta:hover,
  .why-not-header-cta:active { transform: none; }
}

/* ---------- Premium refinements ---------- */

/* Fluid page gutters — phones stay compact, large screens get real breathing
   room. Dawn's own max-width still governs the content column. */
.page-width {
  padding-left: clamp(1.5rem, 0.5rem + 3vw, 4rem);
  padding-right: clamp(1.5rem, 0.5rem + 3vw, 4rem);
}

/* Anchor links land clear of the sticky header instead of scrolling their
   heading up underneath it. */
[id] { scroll-margin-top: clamp(5rem, 4rem + 3vw, 7rem); }

/* Hairline edge fades in on gallery tiles on hover — frames the tile without
   a permanent border cluttering the grid. */
.why-not-gallery__item { position: relative; }
.why-not-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(247, 247, 242, 0);
  transition: box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.why-not-gallery__item:hover::after { box-shadow: inset 0 0 0 1px rgba(247, 247, 242, 0.34); }

/* Active form fields read as active. Additive only — Dawn's own focus
   outline still applies for keyboard users. */
.field__input:focus,
.select__select:focus,
textarea.text-area:focus {
  box-shadow: 0 0 0 3px rgba(247, 247, 242, 0.12);
  transition: box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Footer + social link polish */
.footer-block__details-content a,
.list-menu__item--link {
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.list-social__link {
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.list-social__link:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .list-social__link:hover { transform: none; }
}

/* Scroll progress bar */
.why-not-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1000;
  pointer-events: none;
}
.why-not-progress__bar {
  position: relative;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(247, 247, 242, 0.45) 0%, rgba(247, 247, 242, 0.8) 60%, #ffffff 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.55), 0 0 18px rgba(255, 255, 255, 0.28);
  transition: width 80ms linear;
}
.why-not-progress__bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 6px;
  border-radius: 6px;
  background: #ffffff;
  filter: blur(4px);
  opacity: 0.85;
  pointer-events: none;
}
.why-not-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.2rem;
  padding: 1.1rem 2rem;
  border: 2px solid rgb(var(--color-foreground));
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1),
              color 180ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.why-not-header-cta:hover {
  background: transparent;
  color: rgb(var(--color-foreground));
  transform: translateY(-2px);
}