/** Shopify CDN: Minification failed

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

**/
/** Critical CSS for the theme. This file is included on every page. */

/* Satoshi — body/nav font (same as Povison) */
@font-face {
  font-family: 'Satoshi';
  src: url('https://cdn.fontshare.com/wf/ZALDQUPVQZ7UADJPWZ2S2ZXGMGBC3MOJ/I4YS5WR4G6HFHEAEFHIICXW6QC76VXBV/6SOSFTPMQLMB2FP52HMC6QBSTFMAQNLP.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('https://cdn.fontshare.com/wf/ZALDQUPVQZ7UADJPWZ2S2ZXGMGBC3MOJ/CTQF32FUPMKJ24FEGMJXOG3VBBMVDXQP/3FSQNTQCNZBMRPWRCNJ7RSMFGSQAHQGT.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Marcellus — heading font (same as Povison, regular NOT SC) */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child+ :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6)+ :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** ========================================
 *  TYPOGRAPHY — matched to Povison.com
 *  Body/Nav: Satoshi-Regular 16px/14px
 *  Headings: Marcellus-Regular
 *  ======================================== */

body {
  font-family: 'Satoshi', var(--font-primary--family), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--color-background);
  color: var(--color-foreground);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  font-size: 40px;
  line-height: 50px;
}

h2 {
  font-size: 40px;
  line-height: 50px;
}

h3 {
  font-size: 24px;
  line-height: 32px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

h5 {
  font-size: 16px;
  line-height: 22px;
}

h6 {
  font-size: 14px;
  line-height: 20px;
}

/** Layout Utilities */
.page-width {
  max-width: var(--page-width, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-margin, 20px);
  width: 100%;
}

/** Section layout utilities */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 */
.shopify-section {
  position: relative;
  width: 100%;
  display: block;
}

/**
 * Global vertical rhythm — apply to every homepage section
 * Desktop: each section 2.5rem top+bottom → combined gap = 5rem (80px)
 * Mobile:  each section 1.75rem top+bottom → combined gap = 3.5rem (56px)
 */
.section-spacing {
  padding: 2.5rem 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 1.75rem 0;
  }
}

/** Components */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn--primary {
  background-color: var(--color-brand-main);
  color: #FFFFFF;
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--secondary {
  background-color: var(--color-brand-secondary);
  color: var(--color-foreground);
}

.btn--secondary:hover {
  opacity: 0.9;
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 175px;
  right: 10px;
  width: 54px;
  height: 54px;
  background: var(--color-background);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.3s ease, width 0.25s ease, height 0.25s ease, border-radius 0.25s ease;
  z-index: 999;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #111;
  padding: 0;
}

#back-to-top span {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.2s ease 0.1s, max-height 0.2s ease 0.1s;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top:hover {
  width: 56px;
  height: 64px;
  border-radius: 16px;
}

#back-to-top:hover span {
  opacity: 1;
  max-height: 20px;
}

@media (max-width: 768px) {
  #back-to-top {
    bottom: 165px;
    right: 10px;
  }
}