/** Shopify CDN: Minification failed

Line 462:0 Unexpected "}"

**/
/* =========================================================
   GLOBAL PRIORITY
   ========================================================= */

.gc-dp__modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.gc-dp__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.gc-dp__box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100% - 32px));
  background: var(--gc-bg);
  color: var(--gc-text);
  border-radius: 14px;
  padding: var(--gc-pad);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.gc-dp__modal[hidden] {
  display: none;
}

/* Root should not affect layout */
.gc-dp {
  position: relative;
  height: 0;
  overflow: visible;
  font-size: var(--gc-font);
  color: var(--gc-text);
}

/* =========================================================
   HEADER
   ========================================================= */

.gc-dp__top {
  display: grid;
  gap: 10px;
  padding-right: 28px;
}

.gc-dp__title {
  font-weight: 700;
  font-size: 1.1em;
}

.gc-dp__title p {
  margin: 0;
}

/* Close button */
.gc-dp__close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: inherit;
}

/* =========================================================
   STEP INDICATOR (NON-CLICKABLE PROGRESS)
   ========================================================= */

.gc-dp__steps {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Base step */
.gc-dp__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85em;
  font-weight: 500;
  opacity: 0.35;
  cursor: default;
}

/* Step dot */
.gc-dp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
}

/* Current step */
.gc-dp__pill[data-state="current"] {
  opacity: 1;
  font-weight: 600;
}

.gc-dp__pill[data-state="current"] .gc-dp__dot {
  opacity: 1;
}

/* Completed step */
.gc-dp__pill[data-state="done"] {
  opacity: 0.7;
}

.gc-dp__pill[data-state="done"] .gc-dp__dot {
  opacity: 0.7;
}

/* =========================================================
   BODY CONTENT
   ========================================================= */

.gc-dp__body {
  margin-top: 14px;
}

.gc-dp__section-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.gc-dp__section-title p {
  margin: 0 0 10px 0;
}

/* Rich text blocks */
.gc-dp__rich {
  line-height: 1.45;
}

.gc-dp__rich p {
  margin: 0 0 10px 0;
}

.gc-dp__rich p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   FORM ELEMENTS
   ========================================================= */

.gc-dp__field {
  margin-top: 12px;
}

.gc-dp__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.gc-dp__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  color: #111;
  box-sizing: border-box;
}

.gc-dp__textarea {
  resize: vertical;
  min-height: 90px;
}

.gc-dp__check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

/* Errors & hints */
.gc-dp__err {
  margin-top: 6px;
  font-size: 0.9em;
  color: #b00020;
}

.gc-dp__hint {
  margin-top: 8px;
  font-size: 0.95em;
  opacity: 0.75;
}

/* =========================================================
   ACTIONS
   ========================================================= */

.gc-dp__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.gc-dp__btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.85);
  background: rgba(0,0,0,0.85);
  color: #fff;
  cursor: pointer;
}

.gc-dp__btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.gc-dp__btn--ghost {
  background: transparent;
  color: inherit;
  border-color: rgba(0,0,0,0.25);
}

/* =========================================================
   DONATION AMOUNTS
   ========================================================= */

.gc-dp__amounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.gc-dp__amount {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}

.gc-dp__amount input {
  margin: 0;
}

/* =========================================================
   QR + SUCCESS
   ========================================================= */

.gc-dp__qr-wrap,
.gc-dp__success-img-wrap {
  display: grid;
  place-items: center;
  margin-top: 14px;
}

.gc-dp__qr {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
}

.gc-dp__success-img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
}

.gc-dp__status {
  margin-top: 12px;
  font-size: 0.95em;
}

/* ===============================
   HEADER CENTERING
   =============================== */

.gc-dp__top {
  display: grid;
  gap: 14px;
  text-align: center;
  padding-right: 0;
}

.gc-dp__title {
  font-weight: 700;
  font-size: 1.15em;
}

.gc-dp__title p {
  margin: 0;
}

/* ===============================
   PROGRESS STEPS
   =============================== */

.gc-dp__steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 6px;
}

.gc-dp__pill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 70px;
  font-size: 0.8em;
  font-weight: 500;
  color: rgba(0,0,0,0.35);
  opacity: 0.5;
}

.gc-dp__dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  font-weight: 600;
  background: transparent;
}

.gc-dp__pill span:last-child {
  font-size: 0.75em;
  line-height: 1.2;
}

.gc-dp__pill:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  right: -35px;
  width: 70px;
  height: 2px;
  background: currentColor;
  opacity: 0.25;
}

.gc-dp__pill[data-state="current"] {
  color: #111;
  opacity: 1;
  font-weight: 700;
}

.gc-dp__pill[data-state="current"] .gc-dp__dot {
  background: #111;
  color: #fff;
}

.gc-dp__pill[data-state="done"] {
  color: rgba(0,0,0,0.7);
  opacity: 0.9;
}

.gc-dp__pill[data-state="done"] .gc-dp__dot {
  background: rgba(0,0,0,0.1);
}

.gc-dp__pill[data-state="next"] {
  color: rgba(0,0,0,0.35);
  opacity: 0.5;
}

/* ===============================
   PROGRESS DOT COLORS (EDITABLE)
   =============================== */

.gc-dp__dot {
  background: var(--gc-step-upcoming);
  opacity: 0.6;
}

/* Upcoming */
.gc-dp__pill[data-state="next"] {
  color: var(--gc-step-upcoming);
  opacity: 0.5;
}

/* Current */
.gc-dp__pill[data-state="current"] {
  color: var(--gc-step-active);
  opacity: 1;
  font-weight: 600;
}

.gc-dp__pill[data-state="current"] .gc-dp__dot {
  background: var(--gc-step-active);
  opacity: 1;
}

/* Done */
.gc-dp__pill[data-state="done"] {
  color: var(--gc-step-done);
  opacity: 0.85;
}

.gc-dp__pill[data-state="done"] .gc-dp__dot {
  background: var(--gc-step-done);
  opacity: 0.85;
}

/* ===============================
   MOBILE PROGRESS STEP COMPRESSION
   =============================== */

/* Mobile: show steps in a window and center current step */
@media (max-width: 480px) {
  .gc-dp__steps {
    overflow: hidden;
    padding: 4px 12px;
    display: block;
  }
}

  .gc-dp__steps-track {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    will-change: transform;
    transition: transform 220ms ease;
  }

  .gc-dp__pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Desktop stays normal */
@media (min-width: 481px) {
  .gc-dp__steps-track {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* QR section spacing */
.gc-dp__qr-wrap {
  margin-bottom: 16px;
}

/* Rich text below QR */
.gc-dp__qr-wrap + .gc-dp__rich {
  margin-top: 12px;
}

.gc-dp__qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gc-dp__qr-download {
  font-size: 0.95em;
  padding: 8px 14px;
}

.gc-dp__step[data-gc-dp-step="success"] .gc-dp__actions {
  justify-content: flex-start;
}

.gc-dp__qr-download,
.gc-dp__step[data-gc-dp-step="success"] a {
  text-decoration: none;
  justify-content: center;
}

.gc-dp__step[data-gc-dp-step="success"] .gc-dp__actions {
  justify-content: center;
  margin-top: 24px;
}

.gc-dp__step[data-gc-dp-step="intro"] .gc-dp__actions {
  justify-content: center;
  margin-top: 24px;
}
