/** Shopify CDN: Minification failed

Line 120:26 Expected ":"

**/
/* Base Styles - MYNEEED Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }

/* Typography */
h1, h2, h3, h4 { margin-bottom: 1rem; line-height: 1.2; }
h1 { font-size: 3.6rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
.rte p { margin-bottom: 1rem; }

/* Buttons */
.button {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.4rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid;
}

.button--primary {
  background: #2C3E50;
  color: #fff;
  border-color: #2C3E50;
}

.button--primary:hover { background: #1a252f; }
.button--full-width { width: 100%; }

/* Grid */
.grid { display: grid; gap: 2.4rem; }
.grid--4-col { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 989px) {
  .grid--4-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 749px) {
  .grid--4-col { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.2rem; }
}

/* Cards */
.card {
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content { padding: 2rem; }
.card__title { font-size: 1.8rem; margin-bottom: 1rem; }
.card__price { font-size: 2rem; font-weight: 700; color: #2C3E50; }

/* Forms */
input, select, textarea {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  font-family: inherit;
}

select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 1.6rem center;
  padding-right: 4rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* Utilities */
.text-center { text-center; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
