/** Shopify CDN: Minification failed

Line 76:0 Unexpected "}"

**/
/* Typography */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background: #f5f7fa;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #014d4e;
}
a {
  color: #014d4e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ff4300;
}

/* Buttons */
button, .btn {
  background: #ff4300;
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
button:hover, .btn:hover {
  background: #014d4e;
}

/* Forms */
input[type="search"], select {
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}
}

