/** Shopify CDN: Minification failed

Line 177:11 Expected identifier but found whitespace
Line 177:20 Unexpected ";"

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

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */

@import url('customer.css');


:root {
  /* Navbar Font Variables */
  --navbar-font-family: "Plus Jakarta Sans", sans-serif;
  --navbar-font-weight: 500;
  --navbar-font-style: normal;
  --navbar-font-size: 15px;
  --navbar-line-height: 1; /* instead of 100% */
  --navbar-letter-spacing: 0;
  --navbar-vertical-align: middle;
  --primary-color: #326B3F;
}

/* Force Light Mode across all devices */
:root {
  color-scheme: light;
}

:root {
  /* Brand */
  --primary-color: #326B3F;

  /* Base */
  --color-white: #ffffff;
  --color-black: #000000;

  /* Text */
  --color-text-light: #909090;
  --color-nav-text: #484848;

  /* Backgrounds */
  --color-bg-light: #F5F5F5;

  /* UI / States */
  --color-wishlist-red: #FF0000;
  --color-cart: #1E293B;

  /* Badges */
  --color-badge-dark-yellow: #FFEA84;
  --color-badge-yellow: #FBE699;
  --color-badge-orange: #FFE2BF;
}


/* Global style for Desktop Heading H1 - 20 SemiBold */
.h1-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  vertical-align: middle;
}


h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
}

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

body {
  display: flex;
  flex-direction: column;
  font-family: var(--navbar-font-family);
  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;
}

/** Theme styles below */
body {
  font-family: var(--font-primary--family);
  background-color: var(--color-background);
  color: var(--color-foreground);
}

/** Section layout utilities */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 *
 * By default, a minimum content margin is set on the left and right
 * sides of the section and the content is centered in the viewport to
 * not exceed the maximum page width.
 *
 * When a child element is given the `full-width` class, it will span
 * the entire viewport.
 */
/* .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);

  /* This is required to make <img> elements work as background images */
  position: relative;
  grid-template-columns: var(--content-grid);
  display: grid;
  width: 100%;
} */

/* Child elements, by default, are constrained to the central column of the grid. */
.shopify-section > * {
  grid-column: 2;
}

/* Child elements that use the full-width utility class span the entire viewport. */
.shopify-section > .full-width {
  grid-column: 1 / -1;
}

.primary-button {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500; /* default */
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover & Focus */
.primary-button:hover,
.primary-button:focus {
  background-color: #3f6d4e;
  transform: translateY(-2px);
}

/* Active */
.primary-button:active {
  transform: translateY(0);
}

/* -- 500 weight -- */
.primary-button--medium {
  font-weight: 500;
}

/* 600 weight */
.primary-button--semibold {
  font-weight: 600;
}

