<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 79:18 Expected identifier but found whitespace
Line 79:20 Unexpected "{"
Line 79:30 Expected ":"
Line 80:20 Expected identifier but found whitespace
Line 80:22 Unexpected "{"
Line 80:32 Expected ":"
Line 81:17 Expected identifier but found whitespace
Line 81:19 Unexpected "{"
Line 81:29 Expected ":"
Line 81:56 Unexpected ","
... and 8 more hidden warnings

**/
/* _base.css  */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea, select {
  font: inherit;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 0;
  margin: 0;
}

:root {
  --color-background: #ebe9e3;
  --color-primary: {{ settings.color_primary }};
  --color-secondary: {{ settings.color_secondary }};
  --font-heading: {{ settings.type_header_font.family }}, {{ settings.type_header_font.fallback_families }};
  --font-body: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
  --font-size-normal: clamp(9px, 0.9vw, 9px);
  --font-size-small: clamp(9px, 0.9vw, 9px);
}

@font-face {
  font-family: "Helvetica Now Var";
  font-weight:350;
  src: url("https://db.onlinewebfonts.com/t/e66905e07608167a84e6ad52f638c3c6.eot");
  src: url("https://db.onlinewebfonts.com/t/e66905e07608167a84e6ad52f638c3c6.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/e66905e07608167a84e6ad52f638c3c6.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/e66905e07608167a84e6ad52f638c3c6.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/e66905e07608167a84e6ad52f638c3c6.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/e66905e07608167a84e6ad52f638c3c6.svg#Helvetica Now Var")format("svg");
}

p,span {
  font-size: var(--font-size-normal);
}

a,button {
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: var(--font-size-normal);
  letter-spacing: 0.1rem;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus {
  outline: none;
}

input[type="email"], input[type="password"], input[type="text"] {
  background-color: transparent;
  border: none;
  border-bottom: 0.7px solid #000;
  width: 100%;
}

input[type="submit"] {
  background-color: transparent;
  border: 0.7px solid #000;
  padding: 0.5rem 1rem;
}

/* HTMX Transitions */
#content {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#content.htmx-swapping {
  opacity: 0;
}

/* Prevent FOUC (Flash of Unstyled Content) */
.htmx-settling #content {
  opacity: 0;
}

.htmx-settling #content.htmx-added {
  opacity: 1;
}</pre></body></html>