/** Shopify CDN: Minification failed

Line 35:17 Expected identifier but found whitespace
Line 35:24 Unexpected ";"

**/
/** Critical CSS — Aru Theme. Loaded on every page. */

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

a,
button,
[role="button"],
summary {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible {
  outline: none;
}

shopify-section-group {
  display: contents;
}


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

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

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

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;
}

/* ─── Base ────────────────────────────────────────────────────────────────── */

body {
  font-family: var(--font-primary);
  font-size: var(--body);
  line-height: 1.5;
  background-color: var(--color-background);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

/* ─── Typography ──────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

.label {
  font-size: var(--accent--small);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

/* ─── Links ───────────────────────────────────────────────────────────────── */

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.45; }

/* ─── Forms ───────────────────────────────────────────────────────────────── */

input,
textarea,
select {
  font: inherit;
  font-size: var(--body);
  border-radius: 0;
  border: var(--border);
  background-color: var(--color-background);
  color: var(--color-foreground);
  padding: var(--sp-2) var(--sp-3);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-foreground);
  outline-offset: -2px;
}

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

/* ─── Button system ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-primary);
  font-size: var(--button);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  text-decoration: none;
  border: var(--border);
  border-radius: 0;
  padding: var(--sp-3) var(--sp-6);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  white-space: nowrap;
  line-height: 1;
}

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

.btn--primary:hover {
  background-color: var(--color-background);
  color: var(--color-foreground);
  opacity: 1;
}

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

.btn--secondary:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  opacity: 1;
}

/* ─── Section layout grid ─────────────────────────────────────────────────── */

/*
 * Each .shopify-section is a full-width 3-column grid:
 *   [margin] [constrained content] [margin]
 *
 * Children default to the center column. Add .full-width to break out.
 *
 * Use .section--full-bleed on the section's root element to opt out entirely:
 * no grid, no margins — the section is fully unconstrained from the start.
 * Apply your own padding (e.g. 2rem) inside the section as needed.
 */
.shopify-section {
  --content-width: min(
    calc(var(--page-width) - var(--page-margin) * 2),
    calc(100% - var(--page-margin) * 2)
  );
  --content-margin: minmax(var(--page-margin), 1fr);
  --content-grid: var(--content-margin) var(--content-width) var(--content-margin);

  position: relative;
  display: grid;
  grid-template-columns: var(--content-grid);
  width: 100%;
}

.shopify-section > * {
  grid-column: 2;
}

.shopify-section > .full-width {
  grid-column: 1 / -1;
}

/*
 * Sections with .section--full-bleed on their root opt out of the grid entirely.
 * Use for hero, full-bleed banners, etc. — no box constraint from the start.
 * Apply internal padding (e.g. 2rem) inside the section as needed.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt out of the grid entirely. Use .section--full-bleed on the section's root
 * element so all content is full-width with no margin constraint from the start.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt-out: sections whose root has .section--full-bleed bypass the grid entirely.
 * Use for hero, full-bleed banners, etc. — no box constraint from the start.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt out of the grid entirely. Use on the section's root element when the
 * section should be full-bleed with no margin constraint from the start.
 * The section handles its own internal padding (e.g. 2rem) as needed.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt out of the grid entirely. Use on the section's root element when the
 * section should be full-bleed from the start (hero, banners, etc.).
 * No margin box — the section controls its own internal padding.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt out of the grid entirely. Use on the section's root element when the
 * whole section should be full-bleed with no side margins. Ideal for hero,
 * full-width banners, marquees, etc. — build without the box from the start.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt-out: sections whose root child has .section--full-bleed use a single
 * full-width column. No grid, no margins — build from scratch.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Sections with .section--full-bleed on their root opt out of the grid entirely.
 * Use for hero, full-bleed banners, etc. — no box constraint, build from scratch.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt out of the grid entirely. Use .section--full-bleed on the section's root
 * element when the section should have no margin/width constraint from the start.
 * All content spans full viewport width; handle internal padding in the section.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Opt out of the grid entirely. Use on the section's root element when the
 * section should be full-bleed with no margin constraint from the start.
 * The section handles its own internal padding/layout.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Section--full-bleed: opt out of the grid entirely.
 * Use on the section's root element when the whole section should be
 * unconstrained (hero, full-bleed banners, etc.). No box, no margins.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Sections with .section--full-bleed on their root opt out of the grid entirely.
 * No margin box — content spans full viewport width. Use for hero, full-bleed
 * banners, etc. Apply internal padding (e.g. 2rem) where you need it.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/*
 * Section--full-bleed: opt out of the grid entirely.
 * Use on the section's root element when the whole section should be
 * unconstrained (hero, full-bleed banners, etc.). No box, no margins—
 * you control layout from scratch.
 */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}
.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}

/* Full-bleed sections: no grid constraint, build from scratch */
.shopify-section:has(> .section--full-bleed) {
  grid-template-columns: 1fr;
}

.shopify-section:has(> .section--full-bleed) > * {
  grid-column: 1;
}
