/* ===== TIER PROGRESS (index only) ===== */
.tier-progress {
  padding: 4px 0 0;
  display: none;
  font-family: 'Work Sans', sans-serif;
  grid-column: 1 / -1;
}

.tier-progress.visible {
  display: block;
}

.tier-progress .progress-track {
  position: relative;
  height: 2px;
  background: rgba(60, 60, 59, 0.15);
  margin: 0;
}

.tier-progress .progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #9B020D 0%, #C4122F 60%, #C7A352 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-progress #tierMs0 {
  left: 0%;
}

.tier-progress #tierMs1 {
  left: 50%;
}

.tier-progress #tierMs2 {
  left: 100%;
}

.tier-progress .tick {
  position: absolute;
  top: -5px;
  bottom: -5px;
  width: 1px;
  background: #3C3C3B;
  opacity: 0.35;
  transition: all 0.3s;
}

.tier-progress .tick.reached {
  background: #9B020D;
  opacity: 1;
  top: -6px;
  bottom: -6px;
}

.tier-progress .tick.peak {
  background: #C7A352;
  opacity: 1;
}

.tier-progress .labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0;
}

.tier-progress .label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  text-align: center;
}

.tier-progress .label .pct {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: #3C3C3B;
  line-height: 1;
  transition: color 0.3s;
}

.tier-progress .label .amt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3C3C3B;
  opacity: 0.7;
  font-weight: 500;
}

.tier-progress .label.reached .pct {
  color: #9B020D;
}

.tier-progress .msg {
  text-align: center;
  margin-top: 4px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: #C7A352;
  letter-spacing: 0.01em;
}

.tier-progress .msg strong {
  font-weight: 500;
  color: #9B020D;
}

.tier-progress .msg .star {
  margin-right: 4px;
}

/* Maxed state — everything gold */
.tier-progress.maxed .progress-fill {
  background: #C7A352;
}

.tier-progress.maxed .tick {
  background: #C7A352 !important;
  opacity: 1;
}

.tier-progress.maxed .label .pct {
  color: #C7A352;
}

.tier-progress.maxed .label .amt {
  color: #C7A352;
  opacity: 1;
}

.tier-progress.maxed .msg {
  color: #C7A352;
  font-weight: 500;
}

/* ===== Panini logo in hero badge ===== */
.hero-badge .panini-logo {
  height: 18px;
  width: auto;
  border-radius: 2px;
}

/* ===== FLOATER — Page layout ===== */
.floater-inner {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .floater-inner {
    grid-template-columns: 1fr auto;
  }

  .floater-payment {
    grid-column: 1;
  }

  .floater-totals {
    grid-column: 2;
  }

  .tier-progress {
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .floater-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 767px) {
  .tier-progress .label .pct {
    font-size: 13px;
  }

  .tier-progress .label .amt {
    font-size: 9px;
  }

  .tier-progress .msg {
    font-size: 14px;
  }
}