/** Shopify CDN: Minification failed

Line 54:20 Expected ":"

**/
/* Our Values Section */
/* All customizable values use CSS variables set from section settings */

.values {
  background-color: var(--values-bg, #ffffff);
  color: var(--values-text, #333333);
}

.values__inner {
  /* max-width: 1200px;
  margin: 0 auto; */
}

.values__section-heading {
  margin: 0 0 2rem;
  font-weight: 700;
  font-size: var(--values-heading-size-mobile, 28px);
  line-height: 1.2;
  color: var(--values-heading-color, #1a1a1a);
  letter-spacing: -0.02em;
}

/* Mobile grid */
.values__grid {
  display: grid;
  grid-template-columns: repeat(var(--values-columns-mobile, 1), 1fr);
  gap: var(--values-gap-mobile, 24px);
}

/* Desktop grid */
@media screen and (min-width: 750px) {
  .values__section-heading {
    font-size: var(--values-heading-size-desktop, 36px);
    margin-bottom: 3rem;
  }

  .values__grid {
    grid-template-columns: repeat(var(--values-columns-desktop, 2), 1fr);
    gap: var(--values-gap-desktop, 32px);
  }
}

/* Value item */
.values__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 560px;s
}

.values__number {
  display: block;
  font-weight: 700;
  font-size: var(--values-number-size-mobile, 32px);
  line-height: 1.1;
  color: var(--values-heading-color, #1a1a1a);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 750px) {
  .values__number {
    font-size: var(--values-number-size-desktop, 40px);
  }
}

.values__item-heading {
  margin: 0 0 2rem;
  font-weight: 700;
  font-size: var(--values-block-heading-size-mobile, 18px);
  line-height: 1.3;
  color: var(--values-heading-color, #1a1a1a);
}

@media screen and (min-width: 750px) {
  .values__item-heading {
    font-size: var(--values-block-heading-size-desktop, 20px);
  }
}

.values__item-text {
  margin: 0 0 1rem;
  font-size: var(--values-text-size-mobile, 14px);
  line-height: 1.5;
  color: var(--values-text, #333333);
}

.values__item-text p {
  margin: 0 0 0.5em;
}

.values__item-text p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .values__item-text {
    font-size: var(--values-text-size-desktop, 16px);
  }
}

/* Button */
.values__button {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: var(--values-button-bg, #000000);
  color: var(--values-button-text, #ffffff) !important;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-top: auto;
  border-radius: 4px;
  line-height: 1.4;
}

.values__button:hover {
  background-color: var(--values-button-bg-hover, #333333);
  color: var(--values-button-text-hover, #ffffff) !important;
}
