/** Shopify CDN: Minification failed

Line 120:26 Expected "}" to go with "{"

**/
.vp-hero {
  background: #f4ece1;
  text-align: center;
  padding: 64px 20px;
}
.vp-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}
.vp-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a6d3b;
  margin: 0 0 12px;
  font-weight: 600;
}
.vp-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 14px;
  color: #2b2118;
  font-weight: 600;
}
.vp-hero__subtitle {
  font-size: 16px;
  color: #5a4d3f;
  margin: 0 0 28px;
}
.vp-hero__button {
  display: inline-block;
  background: #2b2118;
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.vp-hero__button:hover {
  opacity: 0.85;
}

.vp-section-title {
  text-align: center;
  font-size: 22px;
  margin: 48px 0 24px;
  color: #2b2118;
}

.vp-categories {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 48px;
}
.vp-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.vp-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #2b2118;
  background: #faf6ef;
  border: 1px solid #ece2d2;
  border-radius: 10px;
  padding: 24px 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vp-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.vp-category-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}
.vp-category-card__icon {
  font-size: 32px;
}
.vp-category-card__label {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.vp-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 20px;
  border-top: 1px solid #ece2d2;
  background: #fff;
}
.vp-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5a4d3f;
}
.vp-trust__icon {
  font-size: 20px;
}

@media (max-width: 600px) {
  .vp-hero { padding: 48px 16px; }
  .vp-trust { gap: 24px; }