/** Shopify CDN: Minification failed

Line 37:14 Expected identifier but found whitespace
Line 37:16 Unexpected "{"
Line 37:25 Expected ":"
Line 37:51 Expected ":"
Line 38:17 Expected identifier but found whitespace
Line 38:19 Unexpected "{"
Line 38:28 Expected ":"
Line 38:57 Expected ":"

**/
.welcome-bundle {
  background-color: rgb(var(--color-background));
  padding: 0;
  overflow: hidden;
}

.welcome-bundle__wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.welcome-bundle__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.welcome-bundle__wave--top {
  transform: rotate(180deg);
}

.welcome-bundle__content {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.welcome-bundle__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.welcome-bundle__heading {
  margin: 0 0 0.5rem;
  font-size: 32px !important;
  font-weight: 500;
  color: rgb(var(--color-foreground));
}

.welcome-bundle__subheading {
  margin: 0;
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.5rem;
}

.welcome-bundle__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 989px) {
    .welcome-bundle__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 749px) {
  .welcome-bundle__grid {
    grid-template-columns: 1fr;
  }
}

.welcome-bundle__item {
  display: flex;
}

.welcome-bundle__card {
  background: rgb(var(--color-background));
  border-radius: var(--card-corner-radius, 0.6rem);
  border: var(--card-border-width, 0.1rem) solid rgba(var(--color-foreground), 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.welcome-bundle__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.welcome-bundle__card-image {
  background: rgba(var(--color-foreground), 0.04);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #cccccc;
}

.welcome-bundle__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.welcome-bundle__card-image .placeholder-svg {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}

.welcome-bundle__card-body {
  padding: 1.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}

.welcome-bundle__card-title {
  margin: 0 0 0.75rem;
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
  font-weight: 500;
}

.welcome-bundle__card-description {
  color: rgba(var(--color-foreground), 0.65);
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex: 1;
}

.welcome-bundle__card-save {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(var(--color-button, 215 44 13));
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
}

.welcome-bundle__save-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgb(var(--color-button, 215 44 13));
  flex-shrink: 0;
}

@media screen and (max-width: 989px) {
  .welcome-bundle__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 749px) {
  .welcome-bundle__grid {
    grid-template-columns: repeat(2, 1fr); /* ← was 1fr, change to repeat(2, 1fr) */
    gap: 0.75rem;
  }

  .welcome-bundle__heading {
    margin: 0 0 0.5rem;
    font-size: 30px !important;
    font-weight: 500;
    color: rgb(var(--color-foreground));
}
}


.welcome-bundle__card {
  text-decoration: none;
  color: inherit;
}