/* Compact checkout reviews */
.checkout-reviews {
  --review-accent: var(--brand-2, #0ea5e9);
  margin-top: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.checkout-reviews-prayer {
  --review-accent: #0ea5e9;
}

.checkout-reviews-song {
  --review-accent: #a855f7;
}

.checkout-reviews-entry {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.checkout-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-review-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.checkout-review-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.checkout-review-dot.active {
  width: 18px;
  background: var(--review-accent);
}

.checkout-review-dot:focus-visible {
  outline: 2px solid var(--review-accent);
  outline-offset: 3px;
}

.checkout-review {
  min-height: 82px;
}

.checkout-review-stars {
  color: #f59e0b;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
}

.checkout-review p {
  margin: 7px 0 0;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.48;
}

.checkout-review-byline {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 500px) {
  .checkout-reviews-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .checkout-review {
    min-height: 104px;
  }
}
