/** Shopify CDN: Minification failed

Line 28:17 Expected identifier but found bad string token
Line 28:18 Unterminated string token

**/
.seed-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.seed-hero__media {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.seed-hero__media::after{
      content: "";
    background: #000;
    /* background: linear-gradient(90deg, #00000080, #fff0);
    position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;'
    opacity:0.1;
}
.seed-hero__media picture,
.seed-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seed-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 480px;
  padding: 48px 56px;
}

@media (max-width: 768px) {
  .seed-hero__inner {
    min-height: 260px;
    padding: 32px 24px;
    align-items: center;
  }
}

.seed-hero__content {
  max-width: 420px;
}

.seed-hero__title {
  font-family: var(--font-heading-family, serif);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .seed-hero__title {
    font-size: 32px;
  }
}

.seed-hero__subtitle {
  font-family: var(--font-body-family, sans-serif);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 14px 0;
}

@media (max-width: 768px) {
  .seed-hero__subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }
}

.seed-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1a1a1a;
  font-family: var(--font-body-family, sans-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.seed-hero__btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
