/** Shopify CDN: Minification failed

Line 672:0 Unexpected "@media"

**/
/* ============================================================
   BaystorySupply — Design Tokens (Direction A — Bellroy/Away)
   Source: BaystorySupply Homepage Redesign-A-print.html
   ============================================================ */

:root {
  /* Typography stacks */
  --bay-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --bay-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --bay-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "Menlo", monospace;

  /* Warm neutral palette */
  --bay-ink:    #1a1a1a;
  --bay-ink-2:  #3a3a3a;
  --bay-ink-3:  #6b6b6b;
  --bay-ink-4:  #9c9a95;
  --bay-paper:  #ffffff;
  --bay-paper-2: #f7f5f1;
  --bay-paper-3: #ecebe5;
  --bay-line:   #e3e1db;

  /* Accent — warm terracotta */
  --bay-accent:      #c85a2e;
  --bay-accent-dark: #9a4522;

  /* Spacing scale (multiples of 4px) */
  --bay-gap-xs:  8px;
  --bay-gap-sm:  16px;
  --bay-gap-md:  24px;
  --bay-gap-lg:  40px;
  --bay-gap-xl:  64px;
  --bay-gap-2xl: 96px;

  /* Section horizontal padding */
  --bay-pad-x:   56px;

  /* Container max width — matches design @ 1440px */
  --bay-max-w:   1440px;

  /* Radii — very flat */
  --bay-radius-sm: 2px;
  --bay-radius-md: 4px;
}

/* Mobile spacing overrides */
@media screen and (max-width: 749px) {
  :root {
    --bay-pad-x: 20px;
    --bay-gap-xl: 40px;
    --bay-gap-2xl: 56px;
  }
}

/* ============================================================
   Container helper — full-bleed section with capped inner width
   Usage:
     <section class="bay-section">
       <div class="bay-container">...</div>
     </section>
   ============================================================ */

.bay-section {
  font-family: var(--bay-font-sans);
  color: var(--bay-ink);
  background: var(--bay-paper);
}

.bay-container {
  max-width: var(--bay-max-w);
  margin: 0 auto;
  padding: 0 var(--bay-pad-x);
  box-sizing: border-box;
}

/* ============================================================
   Typography primitives
   ============================================================ */

.bay-display {
  font-family: var(--bay-font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--bay-ink);
  margin: 0;
}

.bay-display--xl { font-size: 68px; }
.bay-display--lg { font-size: 56px; }
.bay-display--md { font-size: 40px; }
.bay-display--sm { font-size: 34px; letter-spacing: -0.012em; }
.bay-display--xs { font-size: 28px; letter-spacing: -0.010em; }

@media screen and (max-width: 989px) {
  .bay-display--xl { font-size: 48px; }
  .bay-display--lg { font-size: 40px; }
  .bay-display--md { font-size: 32px; }
  .bay-display--sm { font-size: 28px; }
}

@media screen and (max-width: 749px) {
  .bay-display--xl { font-size: 36px; }
  .bay-display--lg { font-size: 32px; }
  .bay-display--md { font-size: 26px; }
  .bay-display--sm { font-size: 22px; }
  .bay-display--xs { font-size: 20px; }
}

.bay-italic {
  font-style: italic;
  font-weight: 400;
}

.bay-body {
  font-family: var(--bay-font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--bay-ink-2);
  margin: 0;
}

.bay-body--sm { font-size: 15px; }
.bay-body--xs { font-size: 13px; color: var(--bay-ink-3); }

.bay-eyebrow {
  font-family: var(--bay-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bay-ink-3);
  text-transform: uppercase;
  margin: 0;
}

.bay-meta-label {
  font-family: var(--bay-font-sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--bay-ink-3);
  text-transform: uppercase;
}

.bay-mono {
  font-family: var(--bay-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* ============================================================
   Buttons
   ============================================================ */

.bay-btn {
  font-family: var(--bay-font-sans);
  font-weight: 500;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.05em;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.bay-btn--sm { font-size: 12px; padding: 8px 14px;  border-radius: var(--bay-radius-sm); }
.bay-btn--md { font-size: 13px; padding: 12px 20px; border-radius: var(--bay-radius-sm); }
.bay-btn--lg { font-size: 14px; padding: 16px 28px; border-radius: var(--bay-radius-sm); }

.bay-btn--primary { background: var(--bay-ink); color: var(--bay-paper); }
.bay-btn--primary:hover { background: var(--bay-ink-2); }

.bay-btn--accent { background: var(--bay-accent); color: #fff; }
.bay-btn--accent:hover { background: var(--bay-accent-dark); }

.bay-btn--ghost {
  background: transparent;
  color: var(--bay-ink);
  border: 1px solid var(--bay-ink);
}
.bay-btn--ghost:hover { background: var(--bay-ink); color: #fff; }

.bay-btn--light {
  background: var(--bay-paper);
  color: var(--bay-ink);
  border: 1px solid var(--bay-line);
}
.bay-btn--light:hover { border-color: var(--bay-ink); }

.bay-btn--on-dark {
  background: #fff;
  color: var(--bay-ink);
}
.bay-btn--on-dark:hover { background: var(--bay-paper-2); }

/* Arrow icon inside buttons */
.bay-btn__arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
}

/* ============================================================
   Tag / badge
   ============================================================ */

.bay-tag {
  font-family: var(--bay-font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--bay-paper-2);
  color: var(--bay-ink);
  border-radius: var(--bay-radius-sm);
  display: inline-block;
}
.bay-tag--on-dark {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.bay-tag--on-paper {
  background: var(--bay-paper);
  color: var(--bay-ink);
}

/* ============================================================
   ProductPlaceholder — striped SVG-like fallback
   (for sections that haven't been wired to real images yet)
   ============================================================ */

.bay-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      #edeae3 0 14px,
      #e3e0d8 14px 28px
    );
}
.bay-placeholder--dark {
  background:
    repeating-linear-gradient(
      135deg,
      #2a2d33 0 14px,
      #32353c 14px 28px
    );
}
.bay-placeholder--1-1  { aspect-ratio: 1 / 1; }
.bay-placeholder--4-5  { aspect-ratio: 4 / 5; }
.bay-placeholder--16-9 { aspect-ratio: 16 / 9; }

.bay-placeholder__label {
  font-family: var(--bay-font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(40,35,28,0.5);
  padding: 4px 10px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--bay-radius-sm);
}

.bay-placeholder--dark .bay-placeholder__label {
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.3);
}

/* ============================================================
   Dawn overrides — make header/footer/announcement bar match
   the BaystorySupply redesign (Direction A).
   ============================================================ */

/* Global: apply Inter to everything (Dawn's body/display are overridden) */
body,
.header,
.header__menu-item,
.footer,
.footer-block__details-content,
.announcement-bar__message,
.predictive-search,
.cart-drawer,
.header__search,
.menu-drawer {
  font-family: var(--bay-font-sans) !important;
}

/* Display headings use Fraunces inside Dawn's native sections when .bay-display isn't available */
.h0, .h1, .h2, h1, h2 {
  font-family: var(--bay-font-display);
  letter-spacing: -0.01em;
}

/* Header — tighter, more editorial */
.header {
  padding-top: 22px;
  padding-bottom: 22px;
}
.header__menu-item {
  font-size: 13px;
  color: var(--bay-ink-2);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.header__menu-item:hover { color: var(--bay-ink); }

/* Footer — warm cream background */
.footer {
  background: var(--bay-paper-2);
  color: var(--bay-ink-2);
  border-top: 0;
}
.footer a, .footer-block__heading {
  color: var(--bay-ink-2) !important;
}
.footer-block__heading {
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bay-ink-3) !important;
}

/* Body base style on homepage */
body.template-index {
  background: var(--bay-paper);
  color: var(--bay-ink);
}

/* ============================================================
   Header width — match bay sections (1440px with 56px padding)
   ============================================================ */

.shopify-section-group-header-group .header.page-width,
.shopify-section-group-header-group .header-wrapper .page-width,
.shopify-section-group-header-group .header {
  max-width: var(--bay-max-w) !important;
  padding-left: var(--bay-pad-x) !important;
  padding-right: var(--bay-pad-x) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* The header wrapper (full-width background container) stays unbounded,
   but its inner .page-width child is capped at 1440. */
.shopify-section-group-header-group .header-wrapper {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* ============================================================
   Universal page-width override — every Dawn .page-width
   container is pinned to the bay grid (1440px max + 56px padding)
   so footer, customization-pricing, related-products, blog,
   cart, search, collection-list etc. all line up with the
   header and bay-* sections.

   Excludes .page-width--narrow (Dawn's reading-width container
   used by article body, page templates) so long-form text
   stays readable.
   ============================================================ */

.page-width:not(.page-width--narrow),
product-recommendations.related-products {
  max-width: var(--bay-max-w) !important;
  padding-left: var(--bay-pad-x) !important;
  padding-right: var(--bay-pad-x) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* .page-width--narrow (article body, About/Contact, FAQs) keeps
   Dawn's defaults: max-width ~72.6rem, padding:0, centered via
   margin:0 auto. No override needed — narrow content stays
   readable and is naturally centered inside our 1440 grid. */

/* ============================================================
   Announcement bars — scheme-aware (two bars with different vibes)
   - color-scheme-4 (top)    → black + mono + uppercase (info bar)
   - color-scheme-2 (bottom) → cream + mono + uppercase (CTA with link)
   ============================================================ */

/* Reset any inherited background on the inner containers so the
   scheme-specific rules below can take over cleanly */
.shopify-section-group-header-group .announcement-bar-section {
  background: transparent !important;
  border: 0 !important;
}
.shopify-section-group-header-group .utility-bar,
.shopify-section-group-header-group .announcement-bar {
  background: transparent !important;
  border: 0 !important;
}

/* Kill Dawn's top/bottom border add-ons */
.shopify-section-group-header-group .utility-bar--bottom-border,
.shopify-section-group-header-group .announcement-bar.show-line-separator {
  border: 0 !important;
}

/* Layout: center message, kill 3-col grid empty cells */
.shopify-section-group-header-group .utility-bar__grid,
.shopify-section-group-header-group .utility-bar__grid--1-col,
.shopify-section-group-header-group .utility-bar__grid--2-col,
.shopify-section-group-header-group .utility-bar__grid--3-col {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  grid-template-columns: none !important;
  max-width: none !important;
}
.shopify-section-group-header-group .localization-wrapper,
.shopify-section-group-header-group .utility-bar__grid > div:empty {
  display: none !important;
}

/* --- TOP BAR (scheme-4 = black info bar) --- */
.shopify-section-group-header-group .utility-bar.color-scheme-4 {
  background: var(--bay-ink) !important;
  color: var(--bay-paper) !important;
}
.shopify-section-group-header-group .utility-bar.color-scheme-4 .announcement-bar__message {
  font-family: var(--bay-font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  color: var(--bay-paper) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  text-align: center !important;
}
.shopify-section-group-header-group .utility-bar.color-scheme-4 .announcement-bar__link,
.shopify-section-group-header-group .utility-bar.color-scheme-4 .announcement-bar__link * {
  color: var(--bay-paper) !important;
}
.shopify-section-group-header-group .utility-bar.color-scheme-4 .announcement-bar__link .icon-arrow {
  display: none !important;
}

/* --- BOTTOM BAR (scheme-2 = cream CTA bar with link) --- */
.shopify-section-group-header-group .utility-bar.color-scheme-2 {
  background: var(--bay-paper-2) !important;
  color: var(--bay-ink-2) !important;
  border: 0 !important;
}
.shopify-section-group-header-group .utility-bar.color-scheme-2 .announcement-bar__message {
  font-family: var(--bay-font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  color: var(--bay-ink-2) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  text-align: center !important;
}
.shopify-section-group-header-group .utility-bar.color-scheme-2 .announcement-bar__link,
.shopify-section-group-header-group .utility-bar.color-scheme-2 .announcement-bar__link .announcement-bar__message {
  color: var(--bay-ink-2) !important;
  transition: color 0.15s ease;
}
.shopify-section-group-header-group .utility-bar.color-scheme-2 .announcement-bar__link:hover,
.shopify-section-group-header-group .utility-bar.color-scheme-2 .announcement-bar__link:hover .announcement-bar__message {
  color: var(--bay-ink) !important;
}
.shopify-section-group-header-group .utility-bar.color-scheme-2 .announcement-bar__link .icon-arrow {
  color: var(--bay-ink-2) !important;
  width: 12px !important;
  height: 10px !important;
  display: inline-block !important;
  margin-left: 6px;
}

/* Fix: vertical centering of announcement bar message
   Override Dawn's h5 class margins and ensure flex center alignment */
.shopify-section-group-header-group .utility-bar {
  display: flex !important;
  align-items: stretch !important;
  min-height: 0 !important;
}
.shopify-section-group-header-group .utility-bar__grid {
  width: 100% !important;
  min-height: 0 !important;
}
.shopify-section-group-header-group .announcement-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}
.shopify-section-group-header-group .announcement-bar__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.shopify-section-group-header-group .announcement-bar__message.h5,
.shopify-section-group-header-group .announcement-bar__message {
  margin: 0 !important;
  padding: 11px 20px !important;
  line-height: 1.2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
}
.shopify-section-group-header-group .announcement-bar__message span,
.shopify-section-group-header-group .announcement-bar__message .icon-arrow {
  display: inline-flex;
  align-items: center;
}



/* Layout: header__heading becomes a flex container so pills sit inline with logo */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* Shared pill base */
/* Solid variant — MOQ badge */
/* Ghost variant — Wholesale CTA */
/* Desktop visibility */
@media screen and (min-width: 990px) {
  }

/* On narrower desktops (990-1199px), only show the MOQ pill to save space */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  }



/* Layout: make header__heading a flex container so pills sit inline with logo */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* Shared pill base — larger, bolder than before */
/* Solid variant — MOQ black pill */
/* CTA variant — TERRACOTTA accent, attention-grabbing */
/* Desktop visibility */
@media screen and (min-width: 990px) {
  }

/* On narrower desktops (990-1199px), only show the MOQ pill */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  }



/* Layout: header__heading becomes flex so tag-stack sits inline with logo */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* Vertical stack wrapper */
@media screen and (min-width: 990px) {
  }

/* Shared pill base */
/* Solid — MOQ badge */
/* Terracotta — Wholesale CTA */
/* Logo + tags cluster — flush LEFT of its grid cell, not centered */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: center !important;
  justify-self: start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;   /* push nav/icons to the right */
  gap: 0;
  flex-wrap: nowrap;
}

/* Logo link: no auto-margin that could shift it */
.shopify-section-group-header-group .header__heading .header__heading-link,
.shopify-section-group-header-group .header__heading-link {
  margin-left: -0.75rem !important;   /* restore Dawn's padding-compensation */
  margin-right: 0 !important;
}

/* Tag stack container — left-aligned column */
@media screen and (min-width: 990px) {
  }

/* Shared pill base */
/* Solid — MOQ badge */
/* Terracotta — Wholesale CTA */



/* Logo + info cluster — flush LEFT of its grid cell */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: center !important;
  justify-self: start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  gap: 0;
  flex-wrap: nowrap;
}

/* Info wrapper — horizontal, vertically centered with logo */
@media screen and (min-width: 990px) {
  }

/* Each item — text + vertical divider on the LEFT */
/* First item — no left divider */
/* CTA emphasis — terracotta accent on the clickable one */
/* On narrower desktops (990–1199px), hide the CTA to save space */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  }



/* Accent dot before each item — visual anchor */
/* CTA emphasis — terracotta dot, terracotta text, underline */
/* On narrower desktops (990–1199px), hide the CTA to save space */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  }



/* Logo cluster — flush LEFT of its grid cell */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: center !important;
  justify-self: start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Shared pill base — solid black */
/* First pill has extra left margin from the logo */
.shopify-section-group-header-group .header__heading > /* CTA pill — same black but subtly interactive */
/* Desktop visibility */
@media screen and (min-width: 990px) {
  }

/* On narrower desktops (990–1199px), only show MOQ pill */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  }



/* Logo cluster — flex-end so children align to the BOTTOM edge */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: flex-end !important;        /* bottom-align children */
  justify-self: start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  gap: 20px;
  flex-wrap: nowrap;
  padding-bottom: 0 !important;
}

/* The combined black pill */
/* Internal divider — subtle vertical line between MOQ and CTA */
/* Arrow icon */
/* Desktop visibility */
@media screen and (min-width: 990px) {
  }


/* ============================================================
   Header pills — two pills next to logo
   LEFT: MOQ badge in terracotta (brand accent)
   RIGHT: Wholesale CTA in black (clickable → WhatsApp)
   Bottom-aligned with the logo wordmark baseline.
   ============================================================ */

/* Logo cluster — flex-end so children align to BOTTOM edge */
.shopify-section-group-header-group .header__heading {
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-self: start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Shared pill base */
.bay-header-pill {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--bay-font-sans);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 2px;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  color: var(--bay-paper);
  margin-bottom: 4px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

/* First pill — add margin from logo */
.shopify-section-group-header-group .header__heading > .bay-header-pill:first-of-type {
  margin-left: 20px;
}

/* MOQ pill — terracotta accent */
.bay-header-pill--accent {
  background: var(--bay-accent);
  border: 1px solid var(--bay-accent);
  color: var(--bay-paper);
}

/* CTA pill — black */
.bay-header-pill--cta {
  background: var(--bay-ink);
  border: 1px solid var(--bay-ink);
  color: var(--bay-paper);
}
.bay-header-pill--cta:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}
.bay-header-pill--cta:hover .bay-header-pill__arrow {
  transform: translateX(3px);
}

.bay-header-pill__arrow {
  width: 11px;
  height: 8px;
  display: inline-block;
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform 0.15s ease;
}

@media screen and (min-width: 990px) {
  .bay-header-pill { display: inline-flex; }
}

/* Narrow desktops — hide CTA to save space */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  .bay-header-pill--cta { display: none; }
}
