/** Shopify CDN: Minification failed

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

**/
/* =====================================================================
   BARELYHUMAN — brand tokens
   Single source of truth for colour, type, and spacing.
   Reference these via var(--bh-*) in every section/snippet.
   ===================================================================== */
:root {
  /* Primary palette */
  --bh-black:      #1A1A1A;
  --bh-charcoal:   #333333;
  /* Stone darkened from #A39E93 to pass WCAG AA (4.5:1) against off-white.
     Original brand stone is preserved as --bh-stone-decorative for the few
     non-text uses (decorative dividers, swatch borders). */
  --bh-stone:      #6B6760;
  --bh-stone-decorative: #A39E93;
  --bh-off-white:  #F5F3EF;

  /* Seasonal accents — use sparingly, max 10% of composition */
  --bh-slate:      #64748B;
  --bh-warm-grey:  #9CA3AF;
  --bh-sage:       #7C8C6E;
  --bh-rust:       #A0522D;

  /* Semantic aliases */
  --bh-bg:         var(--bh-off-white);
  --bh-fg:         var(--bh-black);
  --bh-muted:      var(--bh-stone);
  --bh-rule:       rgba(26, 26, 26, 0.12);

  /* Type — neo-grotesque stack, fall back gracefully */
  --bh-font-sans: "Helvetica Neue", "Suisse Int'l", "Akkurat",
                  -apple-system, BlinkMacSystemFont, "Inter", system-ui,
                  sans-serif;
  --bh-weight-body:    400;
  --bh-weight-heading: 500;

  --bh-size-body:    16px;
  --bh-line-body:    1.6;
  --bh-tracking:     0.005em;
  --bh-tracking-tight: -0.01em;

  /* Spacing scale */
  --bh-space-1: 4px;
  --bh-space-2: 8px;
  --bh-space-3: 16px;
  --bh-space-4: 24px;
  --bh-space-5: 40px;
  --bh-space-6: 64px;
  --bh-space-7: 96px;

  /* Layout */
  --bh-max-width: 1440px;
  --bh-gutter:    24px;
}

/* =====================================================================
   Base resets — keep light, do not aggressively override theme
   ===================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bh-bg);
  color: var(--bh-fg);
  font-family: var(--bh-font-sans);
  font-weight: var(--bh-weight-body);
  font-size: var(--bh-size-body);
  line-height: var(--bh-line-body);
  letter-spacing: var(--bh-tracking);
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Headings — sentence case enforced via CSS, medium weight, never bold */
h1, h2, h3, h4, h5, h6,
.bh-heading {
  font-family: var(--bh-font-sans);
  font-weight: var(--bh-weight-heading);
  letter-spacing: var(--bh-tracking-tight);
  line-height: 1.15;
  color: var(--bh-fg);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Reserve ALL CAPS for the brand mark only */
.bh-brand {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--bh-weight-heading);
}

p { max-width: 65ch; }

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
a:hover { border-bottom-color: currentColor; }

img { display: block; max-width: 100%; height: auto; }

hr {
  border: 0;
  border-top: 1px solid var(--bh-rule);
  margin: var(--bh-space-5) 0;
}

/* Container */
.bh-container {
  max-width: var(--bh-max-width);
  margin: 0 auto;
  padding: 0 var(--bh-gutter);
}

/* Buttons — minimal, sentence case, square corners */
.bh-btn,
.btns,
.btns-primary,
.btns-secondary {
  display: inline-block;
  font-family: var(--bh-font-sans);
  font-weight: var(--bh-weight-heading);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 14px 28px;
  border: 1px solid var(--bh-fg);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
}
.bh-btn,
.btns-primary {
  background: var(--bh-fg);
  color: var(--bh-bg);
}
.bh-btn:hover,
.btns-primary:hover {
  background: transparent;
  color: var(--bh-fg);
}
.btns-secondary {
  background: transparent;
  color: var(--bh-fg);
}
.btns-secondary:hover {
  background: var(--bh-fg);
  color: var(--bh-bg);
}

/* =====================================================================
   Legacy theme rules — preserved
   ===================================================================== */
svg {
  width: 25px;
  height: 25px;
  stroke: black;
}

i { font-size: 17px; }

::-webkit-scrollbar { display: none; }

#menuSidebar,
#quickAddSlider {
  transition: left ease-in-out 0.7s;
}

#currency__dropdown select {
  border: none;
  outline: none;
  padding: 0 10px;
  background-color: black;
  color: white;
}

#search__popup {
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  top: -80px;
  right: 0;
  transition: top 0.7s;
}

#product__details__modal {
  transition: all 0.7s !important;
}
