/** Shopify CDN: Minification failed

Line 397:19 Unexpected "*"

**/
/* ==========================================================================
   boo! — Base Stylesheet
   Foundation layer: brand palette, typography, global overrides.
   Loaded AFTER Dawn's base.css so boo! variables and resets take precedence.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. Brand Palette (fixed across the whole site)
   --------------------------------------------------------------------------- */
:root {
  --boo-cream: #f7f5ef;
  --boo-black: #1a1a1a;
  --boo-ink: #2c2c2c;
  --boo-accent: #6b1f1f;

  /* Per-product palette — defaults to brand palette, overridden on PDP
     via inline style from product metafields */
  --product-color-1: var(--boo-black);
  --product-color-2: var(--boo-cream);
  --product-color-3: var(--boo-black);
  --product-color-4: var(--boo-cream);
}

/* ---------------------------------------------------------------------------
   2. Typography
   Editorial New (display) from Pangram Pangram + Inter (body) from Google Fonts.
   Variables are named generically so swapping to GT Alpina / Söhne later
   requires changing only the font-family value here.
   --------------------------------------------------------------------------- */

/* Editorial New @font-face declarations live in layout/theme.liquid
   (requires Liquid asset_url filter for Shopify CDN paths) */

:root {
  --font-display: 'Editorial New', 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------------------------------------------------------------------------
   3. Typographic Scale
   Sizes are set in clamp() for fluid scaling between mobile and desktop.
   Used by boo! sections via var(--boo-text-*) — Dawn's own type scale
   stays intact for any Dawn sections that still render.
   --------------------------------------------------------------------------- */
:root {
  /* Display — manifesto, hero overlay, section titles */
  --boo-text-display: clamp(2.5rem, 5vw + 1rem, 4.5rem);

  /* Headline — product names, section headings */
  --boo-text-headline: clamp(1.75rem, 3vw + 0.5rem, 3rem);

  /* Subhead — edition numbers, labels */
  --boo-text-subhead: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);

  /* Body — founder story, product story, general prose */
  --boo-text-body: clamp(1rem, 0.5vw + 0.75rem, 1.25rem);

  /* Caption — image captions, legal, small labels */
  --boo-text-caption: clamp(0.75rem, 0.25vw + 0.625rem, 0.875rem);
}

/* ---------------------------------------------------------------------------
   4. Global Resets & Overrides
   Override Dawn defaults that conflict with the boo! aesthetic.
   --------------------------------------------------------------------------- */

/* Background: warm cream instead of white */
body {
  background-color: var(--boo-cream);
  color: var(--boo-ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override Dawn's rgb()-based color scheme background */
body,
body.gradient {
  background-color: var(--boo-cream);
  background-image: none;
  color: var(--boo-ink);
}

/* Headings: display font, warm black */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-display);
  color: var(--boo-black);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Links: accent color, no underline by default */
a {
  color: var(--boo-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--boo-accent);
}

/* Focus styles: subtle, warm */
:focus-visible {
  outline: 2px solid var(--boo-accent);
  outline-offset: 3px;
}

/* Remove Dawn's letter-spacing on body (too wide for Inter) */
body {
  letter-spacing: -0.01em;
}

/* Visually hidden — accessible to screen readers and search engines */
.boo-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;
}

/* ---------------------------------------------------------------------------
   5. Utility Classes
   Shared across boo! sections.
   --------------------------------------------------------------------------- */

/* Full-bleed: breaks out of any container to fill viewport width */
.boo-full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Narrow column: for reading-length text (founder story, product story) */
.boo-narrow {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Page container: standard content width */
.boo-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------------------------------------------------------------------------
   6. Selection & Scrollbar
   --------------------------------------------------------------------------- */

::selection {
  background-color: var(--boo-accent);
  color: var(--boo-cream);
}

/* Hide scrollbar on horizontal scroll elements but keep scrolling */
.boo-hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.boo-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ---------------------------------------------------------------------------
   7. Dawn Overrides — Header
   Fixed, transparent-to-cream scroll-aware header.
   Wordmark left, cart right. Everything else hidden.
   --------------------------------------------------------------------------- */

/* Hide elements we don't need in the header */
.header__search,
.header__menu-item,
.header__icon--search,
.header__icon--account,
.header__icon--menu,
.menu-drawer-container,
.header-wrapper .announcement-bar-section,
.header__inline-menu,
.header__icons .icon-hamburger,
.utility-bar,
.announcement-bar,
.desktop-localization-wrapper,
.header-localization,
.cart-count-bubble {
  display: none !important;
}

/* Fixed header overlaying content */
.section-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
  margin-bottom: 0 !important;
  transition: background-color 0.3s ease;
}

.section-header.boo-scrolled {
  background-color: transparent;
}

.header-wrapper {
  background-color: transparent !important;
  border-bottom: none;
  box-shadow: none;
}

.section-header.boo-scrolled .header-wrapper {
  background-color: transparent !important;
}

/* Header layout: centered wordmark, cart icon absolute-right */
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 2rem 4vw;
  max-width: 100%;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .header {
    padding: 2.5rem 4vw;
  }
}

/* Wordmark — centered in the header */
.header__heading {
  margin: 0;
}

.header__heading-link {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.section-header.boo-scrolled .header__heading-link {
  color: var(--boo-ink);
}

.header__heading-link .h2,
.header__heading-link h2,
.header__heading-link h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  color: inherit;
  line-height: 1;
}

/* Icons container — positioned absolute right so wordmark stays centered */
.header__icons {
  position: absolute;
  right: 2.5vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0;
}

/* Cart text link — white by default, ink when scrolled */
.boo-cart-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw + 0.2rem, 2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
  line-height: 1;
}

.section-header.boo-scrolled .boo-cart-text {
  color: var(--boo-ink);
}

.boo-cart-text:hover {
  color: var(--boo-accent);
}

/* No-hero pages: ink text from the start */
body.no-hero .header__heading-link {
  color: var(--boo-ink);
}

body.no-hero .boo-cart-text {
  color: var(--boo-ink);
}

/* Kill Dawn's header border/separator and any stray lines */
.header-wrapper--border-bottom {
  border-bottom: none !important;
}

.header-wrapper::after,
.header-wrapper::before {
  display: none !important;
}

/* Ensure nothing pushes content below the fixed header */
html, body {
  margin: 0;
  padding: 0;
}

.shopify-section-group-header-group,
.section-header {
  border: none !important;
  outline: none !important;
}

/* Override Dawn's sticky header — we use fixed instead */
.shopify-section-header-sticky {
  position: fixed !important;
  top: 0 !important;
}

.shopify-section-header-hidden {
  top: 0 !important;
}

/* The header group wrapper must not take up flow space */
.shopify-section-group-header-group {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Remove the space Dawn reserves for the header since ours is fixed/overlapping */
.content-for-layout {
  margin-top: 0 !important;
}

/* On non-homepage pages, push content below the fixed header */
body.no-hero .content-for-layout {
  padding-top: 6rem !important;
}

/* Story page: no header, no top padding — hero image sits flush at viewport top */
body.no-header .content-for-layout {
  padding-top: 0 !important;
}

/* ---------------------------------------------------------------------------
   8. Dawn Overrides — Footer Hide
   We'll replace Dawn's footer with boo-footer.liquid.
   Hide the default footer section group entirely.
   --------------------------------------------------------------------------- */

/* Dawn footer hidden — boo-footer.liquid replaces it */
.footer,
.section-footer {
  display: none !important;
}

/* ---------------------------------------------------------------------------
   9. Dawn Overrides — Misc Cleanup
   --------------------------------------------------------------------------- */

/* Remove Dawn's section spacing system — boo! sections control their own spacing */
.section-template--* + .section-template--* {
  margin-top: 0;
}

/* Remove Dawn badge styles (we handle sold-out differently) */
.badge {
  display: none;
}

/* Simplify Dawn's button base for boo! contexts */
.boo-btn {
  font-family: var(--font-body);
  font-size: var(--boo-text-caption);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--boo-black);
  color: var(--boo-cream);
  border: none;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.boo-btn:hover {
  background: var(--boo-accent);
  color: var(--boo-cream);
}

/* Waitlist input base */
.boo-input {
  font-family: var(--font-body);
  font-size: var(--boo-text-body);
  background: transparent;
  border: 1px solid var(--boo-black);
  color: var(--boo-ink);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease;
}

.boo-input::placeholder {
  color: var(--boo-ink);
  opacity: 0.4;
}

.boo-input:focus {
  border-color: var(--boo-accent);
  outline: none;
}

/* Inverted variants (for dark backgrounds like waitlist CTA) */
.boo-inverted {
  --boo-local-bg: var(--boo-black);
  --boo-local-text: var(--boo-cream);
  background-color: var(--boo-local-bg);
  color: var(--boo-local-text);
}

.boo-inverted .boo-btn {
  background: var(--boo-cream);
  color: var(--boo-black);
}

.boo-inverted .boo-btn:hover {
  background: var(--boo-accent);
  color: var(--boo-cream);
}

.boo-inverted .boo-input {
  border-color: var(--boo-cream);
  color: var(--boo-cream);
}

.boo-inverted .boo-input::placeholder {
  color: var(--boo-cream);
  opacity: 0.4;
}

/* ---------------------------------------------------------------------------
   Klaviyo Form States
   --------------------------------------------------------------------------- */

.boo-form__success {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--boo-ink);
  opacity: 0.7;
  text-align: center;
  padding: 1rem 0;
  margin: 0;
}

.boo-form__error {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(150, 30, 30, 0.8);
  margin-top: 0.5rem;
  font-style: italic;
  min-height: 1.2em;
}
