/* Raku Rewards / loyalty program page */
.rewards-page {
  max-width: 1100px;
}

.rewards-hero {
  margin-bottom: 28px;
  text-align: center;
}

.rewards-hero .page-title {
  justify-content: center;
}

.rewards-hero .page-sub {
  margin-left: auto;
  margin-right: auto;
}

.rewards-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.rewards-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.rewards-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rewards-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.rewards-tier-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.rewards-tier--silver .rewards-tier-badge {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.rewards-tier--gold .rewards-tier-badge {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.rewards-tier--platinum .rewards-tier-badge {
  background: linear-gradient(135deg, #a78bfa, #6d28d9);
}

.rewards-tier-name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.rewards-tier-intro {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  min-height: 2.8em;
}

.rewards-tier-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--surface2);
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.rewards-tier-list li + li {
  margin-top: 6px;
}

.rewards-tier-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-light);
}

.rewards-section {
  margin-bottom: 16px;
}

.rewards-section-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.rewards-section-title i {
  color: var(--primary);
}

.rewards-section-sub {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.rewards-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rewards-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.rewards-bullet-list li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rewards-bullet-list--plain li {
  padding-left: 18px;
  position: relative;
}

.rewards-bullet-list--plain li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.rewards-cta {
  margin-top: 28px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-pale), rgba(212, 134, 150, 0.12));
  border: 1px solid rgba(45, 138, 45, 0.15);
  text-align: center;
}

.rewards-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  color: var(--text);
}

.rewards-cta p {
  margin: 0 auto 18px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.rewards-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.rewards-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.rewards-btn--primary {
  background: var(--primary);
  color: #fff;
}

.rewards-btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.rewards-btn--outline {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.rewards-btn--outline:hover {
  background: var(--primary-pale);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .rewards-tiers {
    grid-template-columns: 1fr;
  }

  .rewards-tier-intro {
    min-height: 0;
  }
}
