/* ===== Donate Page - Redesigned ===== */

.donate-page {
  padding: 0 0 20px;
}

/* ---- Header ---- */
.jw-section .donate-header {
  text-align: center;
  margin-bottom: 48px;
}

.jw-section .donate-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
}

.jw-section .donate-subtitle {
  font-size: 1.2rem;
  color: #999;
  margin: 0;
}

.jw-section .donate-divider {
  width: 56px;
  height: 3px;
  background: #E77800;
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---- Layout ---- */
.donate-container {
  width: 100%;
}

/* ---- Intro Card ---- */
.donate-intro {
  background: linear-gradient(135deg, #fff9f0, #fff);
  border: 1px solid #f0e6d8;
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.donate-intro p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px;
}

.donate-intro p:last-child {
  margin-bottom: 0;
}

.donate-intro strong {
  color: #E77800;
}

/* ---- Payment Methods Section ---- */
.donate-methods-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
}

.donate-methods-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #999;
  margin: 0 0 32px;
}

.donate-methods {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

/* ---- QR Code Card ---- */
.donate-qrcard {
  flex: 1;
  max-width: 460px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 36px 32px 32px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.donate-qrcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.donate-qrcard__icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.donate-qrcard__icon-wrapper--alipay {
  background: linear-gradient(135deg, #1677FF, #0D5FDB);
}

.donate-qrcard__icon-wrapper--wechat {
  background: linear-gradient(135deg, #07C160, #059B4E);
}

.donate-qrcard__icon {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.donate-qrcard__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px;
}

.donate-qrcard__qrcode {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.donate-qrcard__qrcode img {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.donate-qrcard__hint {
  font-size: 1.2rem;
  color: #aaa;
  margin: 0;
}

/* ---- Thank You Section ---- */
.donate-thanks {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.donate-thanks__icon {
  text-align: center;
  margin-bottom: 12px;
}

.donate-thanks__icon svg {
  width: 40px;
  height: 40px;
  fill: #E77800;
}

.donate-thanks__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
}

.donate-thanks__desc {
  text-align: center;
  font-size: 1.3rem;
  color: #999;
  margin: 0 0 28px;
}

.donate-thanks__divider {
  width: 40px;
  height: 2px;
  background: #E77800;
  border-radius: 1px;
  margin: 0 auto 28px;
}

.donate-thanks__list {
  font-size: 1.35rem;
  line-height: 2;
  color: #666;
  margin: 0;
}

.donate-thanks__note {
  text-align: center;
  font-size: 1.2rem;
  color: #bbb;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

/* ---- Heart Icon SVG inline (no external dep) ---- */
.donate-icon-heart {
  display: inline-block;
}

/* ===== Responsive ===== */

@media (max-width: 860px) {
  .donate-methods {
    flex-direction: column;
    align-items: center;
  }

  .donate-qrcard {
    max-width: 400px;
    width: 100%;
  }

  .donate-intro {
    padding: 28px 24px;
  }

  .donate-thanks {
    padding: 28px 24px;
  }
}

@media (max-width: 540px) {
  .donate-header {
    margin-bottom: 32px;
  }

  .jw-section .donate-header h1 {
    font-size: 1.8rem;
  }

  .jw-section .donate-subtitle {
    font-size: 1.1rem;
  }

  .donate-intro {
    padding: 24px 20px;
  }

  .donate-intro p {
    font-size: 1.4rem;
  }

  .donate-methods-title {
    font-size: 1.6rem;
  }

  .donate-qrcard {
    padding: 24px 20px;
  }

  .donate-qrcard__qrcode img {
    width: 180px;
  }

  .donate-thanks {
    padding: 24px 20px;
  }

  .donate-thanks__title {
    font-size: 1.6rem;
  }

  .donate-thanks__list {
    font-size: 1.25rem;
  }
}

@media (max-width: 400px) {
  .donate-intro {
    padding: 20px 16px;
  }

  .donate-qrcard {
    padding: 20px 16px;
  }

  .donate-qrcard__qrcode img {
    width: 160px;
  }

  .donate-thanks {
    padding: 20px 16px;
  }
}
