/** Shopify CDN: Minification failed

Line 111:13 Expected identifier but found whitespace
Line 111:20 Unexpected ";"

**/
/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: 1.6;
  color: var(--color-body-text);
  background-color: var(--color-body-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.3;
}

h1 { font-size: calc(var(--font-heading-base-size) * 1); }
h2 { font-size: calc(var(--font-heading-base-size) * 0.75); }
h3 { font-size: calc(var(--font-heading-base-size) * 0.6); }
h4 { font-size: calc(var(--font-heading-base-size) * 0.5); }

a {
  color: inherit;
  text-decoration: underline;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.skip-to-content-link:focus {
  position: static;
  width: auto;
  height: auto;
}

/* Main Content */
.main-content {
  min-height: 60vh;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-primary-button);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: #234010;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.button--secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.button--secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.button--primary {
  background: var(--color-primary-button);
  color: var(--color-white);
}

.button--primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.button--secondary {
  background: var(--color-white);
  color: var(--color-primary-button);
  border: 2px solid var(--color-primary-button);
}

.button--secondary:hover {
  background: var(--color-primary-button);
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 { font-size: calc(var(--font-heading-base-size) * 0.7); }
  h2 { font-size: calc(var(--font-heading-base-size) * 0.55); }
  h3 { font-size: calc(var(--font-heading-base-size) * 0.45); }
}
