/** Shopify CDN: Minification failed

Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:51 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 23:57 Expected ":"
Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
... and 26 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:starter-bundles (INDEX:45) */
.sb-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background-color: {{ section.settings.section_bg }};
}

.sb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sb-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.sb-header__text { flex: 1; min-width: 240px; }

.sb-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 .6rem;
  color: {{ section.settings.heading_color }};
}

.sb-desc {
  font-size: .9375rem;
  line-height: 1.65;
  margin: 0;
  color: {{ section.settings.body_color }};
  max-width: 540px;
}

/* --- Tabs --- */
.sb-tabs {
  display: flex;
  gap: 4px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 4px;
  align-self: center;
}

.sb-tab {
  border: none;
  background: transparent;
  padding: 7px 20px;
  border-radius: 999px;
  font-size: .8125rem;
  cursor: pointer;
  color: #6b7280;
  font-weight: 500;
  transition: all .18s;
}

.sb-tab--active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

/* --- Grid wrapper --- */
.sb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border: 2px dashed {{ section.settings.border_color }};
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
}

.sb-grid--hidden { display: none; }

@media (max-width: 900px) { .sb-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .sb-grid { grid-template-columns: 1fr; } }

/* --- Cards --- */
.sb-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 14px;
}

.sb-card--featured { border-color: #d8b4fe; }

/* Badge */
.sb-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: {{ section.settings.badge_bg }};
  color: {{ section.settings.badge_color }};
  font-size: .6875rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .04em;
}

/* Vibe pill */
.sb-vibe-pill {
  display: inline-block;
  background: #ede9fe;
  color: #5b21b6;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: .6rem;
}

.sb-card__top { flex: 1; }

.sb-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 .4rem;
  color: #111;
}

.sb-card__desc {
  font-size: .8125rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 1rem;
}

/* Items */
.sb-card__items {
  list-style: none;
  padding: .75rem;
  margin: 0 0 1rem;
  background: #faf9ff;
  border-radius: 8px;
  border: 1px solid #ede9fe;
}

.sb-card__items li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .8125rem;
  color: #4b5563;
  padding: 3px 0;
  line-height: 1.4;
}

.sb-card__items li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: {{ section.settings.check_color }};
}

.sb-card__bottom { margin-top: auto; }

.sb-card__note {
  font-size: .75rem;
  color: #9ca3af;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 .875rem;
}

/* Button */
.sb-card__btn {
  display: inline-block;
  background: {{ section.settings.btn_bg }};
  color: {{ section.settings.btn_color }};
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
}

.sb-card__btn:hover { opacity: .85; transform: translateY(-1px); }
.sb-card__btn:active { transform: translateY(0); }
/* END_SECTION:starter-bundles */