/** Shopify CDN: Minification failed

Line 68:8 Expected identifier but found whitespace
Line 68:10 Unexpected "{"
Line 68:19 Expected ":"
Line 68:45 Expected ":"
Line 69:9 Expected identifier but found whitespace
Line 69:11 Unexpected "{"
Line 69:20 Expected ":"
Line 69:46 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:earn-points (INDEX:30) */
.earn-points-section {
  background: #fff;
}
.earn-points-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.earn-points-overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 8px;
}
.earn-points-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}
.earn-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .earn-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.earn-points-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.earn-points-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.earn-points-circle {
  width: {{ section.settings.circle_size }}px;
  height: {{ section.settings.circle_size }}px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.earn-points-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.earn-points-icon-placeholder {
  width: 32px;
  height: 32px;
  background: #ccc;
  border-radius: 4px;
  display: block;
}
.earn-points-badge {
  display: inline-block;
  background: #3d00e0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
}
.earn-points-label {
  font-size: 13px;
  color: #111;
  text-align: center;
  margin: 0;
}
/* END_SECTION:earn-points */

/* START_SECTION:tier-comparison (INDEX:142) */
.tc-section {
    background: #f0ede8;
    padding: 64px 40px;
    font-family: inherit;
  }

  .tc-header {
    max-width: 1100px;
    margin: 0 auto 40px auto;
  }

  .tc-label {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    display: block;
  }

  .tc-headline {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px 0;
    line-height: 1.1;
  }

  .tc-subtext {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 580px;
    margin: 0;
  }

  .tc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .tc-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 24px 32px 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .tc-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.11);
  }

  .tc-icon {
    height: 44px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
  }

  .tc-icon img {
    max-height: 44px;
    max-width: 110px;
    object-fit: contain;
  }

  .tc-name {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
    line-height: 1.1;
  }

  .tc-subtitle {
    font-size: 13px;
    color: #999;
    margin: 0 0 20px 0;
  }

  .tc-points-box {
    background: #f7f6f4;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 7px;
  }

  .tc-points-num {
    font-size: 50px;
    font-weight: 800;
    color: #111;
    line-height: 1;
  }

  .tc-points-lbl {
    font-size: 14px;
    color: #777;
  }

  .tc-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
  }

  .tc-benefit {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 9px;
  }

  .tc-benefit.active {
    color: #111;
  }

  .tc-benefit.inactive {
    color: #ccc;
  }

  .tc-check {
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
  }

  .tc-benefit.active .tc-check {
    color: #2d7a2d;
  }

  .tc-benefit.inactive .tc-check {
    color: #ddd;
  }

  @media (max-width: 860px) {
    .tc-grid {
      grid-template-columns: 1fr;
    }
    .tc-headline {
      font-size: 30px;
    }
  }
/* END_SECTION:tier-comparison */