/** Shopify CDN: Minification failed

Line 164:3 Expected "}" to go with "{"

**/
.shop-by-goal {
  background: var(--sbg-section-bg, #ffffff);
  padding: 48px 0;
}

.shop-by-goal__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.shop-by-goal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  text-align: center;
}

.shop-by-goal__heading {
  margin: 0;
  text-align: center;
  color: var(--sbg-heading-color, #1b2a3a);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.shop-by-goal__view-all {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sbg-link-color, #3d6b7d);
  text-decoration: none;
  white-space: nowrap;
}

.shop-by-goal__view-all:hover {
  text-decoration: underline;
}

.shop-by-goal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.shop-by-goal__tile,
.shop-by-goal__tile--no-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--sbg-tile-bg, #ffffff);
  border: 1px solid rgba(27, 42, 58, 0.08);
  border-radius: 12px;
  padding: 32px 20px 24px;
  text-decoration: none;
  color: var(--sbg-text-color, #1b2a3a);
  box-shadow: 0 1px 3px rgba(16, 30, 40, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

a.shop-by-goal__tile:hover {
  box-shadow: 0 6px 18px rgba(16, 30, 40, 0.09);
  transform: translateY(-2px);
}

.shop-by-goal__icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--sbg-icon-bg, #eaf1f3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shop-by-goal__icon-img {
  width: 87px;
  height: 87px;
  object-fit: contain;
}

.shop-by-goal__icon-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 42, 58, 0.12);
}

.shop-by-goal__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--sbg-text-color, #1b2a3a);
}

.shop-by-goal__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--sbg-link-color, #3d6b7d);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.shop-by-goal__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

a.shop-by-goal__tile:hover .shop-by-goal__arrow {
  transform: translateX(3px);
}

/* Tablet: 3 columns */
@media screen and (min-width: 750px) {
  .shop-by-goal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: use merchant-selected column count */
@media screen and (min-width: 990px) {
  .shop-by-goal__grid {
    grid-template-columns: repeat(var(--sbg-columns-desktop, 5), 1fr);
    gap: 24px;
  }

 .shop-by-goal__header {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    position: relative;
    gap: 0;
    margin-bottom: 48px;
  }

  .shop-by-goal__heading {
    margin: 0 auto;
      font-size: 28px;
  }

  .shop-by-goal__view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }