/* =============================================
   DONATION PAGE STYLES — BOCHI Cilacap
   ============================================= */

/* Info Section */
.donation-info-section {
  padding: 60px 0 40px;
}

.donation-info-section p {
  margin-bottom: 0;
}

/* Form Section */
.donation-form-section {
  padding: 40px 0 80px;
}

/* Mobile: force full-width columns in flexbox rows */
@media (max-width: 767px) {
  .donation-info-section .row > [class*="col-"],
  .donation-form-section .row > [class*="col-"],
  .recent-donors-section .row > [class*="col-"],
  .payment-section .row > [class*="col-"],
  .success-section .row > [class*="col-"] {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

/* Card Container */
.donation-card {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Steps */
.donation-step {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.donation-step:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #60606e;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #97c1c0;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Preset Amount Buttons */
.preset-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.preset-btn {
  padding: 14px 10px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #60606e;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.preset-btn:hover {
  border-color: #97c1c0;
  color: #97c1c0;
}

.preset-btn.active {
  border-color: #97c1c0;
  background: #97c1c0;
  color: #fff;
}

/* Custom Amount */
.custom-amount-wrapper {
  margin-top: 15px;
}

.custom-amount-wrapper label {
  font-size: 13px;
  font-weight: 700;
  color: #60606e;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.input-group {
  display: flex;
  align-items: stretch;
  border: 2px solid #e0e0e0;
  transition: border-color 0.25s ease;
}

.input-group:focus-within {
  border-color: #97c1c0;
}

.input-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #f5f5f5;
  color: #60606e;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-right: 2px solid #e0e0e0;
}

.custom-amount-input {
  flex: 1;
  border: none;
  padding: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #60606e;
  outline: none;
  background: transparent;
  min-width: 0;
}

.custom-amount-input::placeholder {
  color: #ccc;
}

.amount-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}

/* Channel List */
.channel-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.channel-loading {
  text-align: center;
  padding: 30px;
  color: #999;
  font-size: 14px;
}

.channel-loading .spin {
  font-size: 20px;
  margin-right: 8px;
}

.channel-group {
  margin-bottom: 5px;
}

.channel-group-title {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.25s ease;
}

.channel-group-title:hover {
  color: #60606e;
}

.channel-group-title.channel-group-open {
  color: #60606e;
}

.channel-chevron {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.channel-group-title.channel-group-open .channel-chevron {
  transform: rotate(180deg);
}

.channel-group-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0;
}

.channel-group-items:not(.channel-group-collapsed) {
  max-height: 600px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ── QRIS Recommended Card ── */
.channel-recommended {
  border: 2px solid #97c1c0;
  background: #f6fbfb;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 20px;
  position: relative;
}

.channel-recommended:hover {
  box-shadow: 0 4px 16px rgba(151, 193, 192, 0.25);
}

.channel-recommended.active {
  background: #97c1c0;
}

.channel-recommended.active .channel-recommended-name,
.channel-recommended.active .channel-recommended-desc,
.channel-recommended.active .channel-info {
  color: #fff;
}

.channel-recommended.active .channel-recommended-desc {
  color: rgba(255, 255, 255, 0.85);
}

.channel-recommended.active .channel-recommended-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.channel-recommended-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #97c1c0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.channel-recommended-body {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-recommended-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.channel-recommended-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-recommended-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #60606e;
  text-transform: uppercase;
}

.channel-recommended-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

/* Channel Item with Logo */
.channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: 2px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  min-height: 70px;
  gap: 6px;
}

.channel-logo {
  width: 36px;
  height: 28px;
  object-fit: contain;
}

.channel-item:hover {
  border-color: #97c1c0;
}

.channel-item.active {
  border-color: #97c1c0;
  background: #97c1c0;
  color: #fff;
}

.channel-item.active .channel-name {
  color: #fff;
}

.channel-item.active .channel-info {
  color: rgba(255, 255, 255, 0.8);
}

.channel-item.active .channel-logo {
  filter: brightness(0) invert(1);
}

.channel-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #60606e;
  text-transform: uppercase;
  line-height: 1.2;
}

.channel-info {
  font-size: 10px;
  color: #bbb;
}

/* Form Inputs */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #60606e;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.required {
  color: #f06956;
}

.optional {
  font-weight: 400;
  text-transform: none;
  font-size: 11px;
  color: #bbb;
}

.donation-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  background: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #60606e;
  outline: none;
  transition: border-color 0.25s ease;
}

.donation-input:focus {
  border-color: #97c1c0;
}

.donation-input::placeholder {
  color: #ccc;
}

.donation-textarea {
  resize: vertical;
  min-height: 80px;
}

.phone-hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #fbbd4c;
}

/* Mediashare */
.media-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #97c1c0;
  line-height: 1.5;
}

.media-hint i {
  margin-right: 4px;
  font-size: 13px;
}

#mediashare-group {
  border-top: 1px dashed rgba(151, 193, 192, 0.3);
  padding-top: 15px;
  margin-top: 10px;
}

#mediashare-group label {
  color: #97c1c0;
}

body.dark-mode .media-hint {
  color: #7fb5b4;
}

body.dark-mode #mediashare-group {
  border-top-color: rgba(151, 193, 192, 0.2);
}

/* Mediashare Duration Info */
.media-duration-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 13px;
  color: #2e7d32;
}

.media-duration-badge i {
  font-size: 16px;
}

.media-duration-scale {
  margin-top: 6px;
}

.media-duration-scale small {
  font-size: 11px;
  color: #999;
}

/* Media Preview */
.media-preview {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  background: #000;
}

.media-preview iframe {
  display: block;
  border-radius: 6px 6px 0 0;
}

.media-preview-info {
  background: #f5f5f5;
  padding: 8px 14px;
}

.media-preview-range {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #60606e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.media-preview-range i {
  color: #97c1c0;
}

.media-preview-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6fbfb;
  border: 1px solid #97c1c0;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 12px;
  font-size: 13px;
  color: #60606e;
}

.media-preview-platform i {
  font-size: 18px;
  color: #97c1c0;
}

/* Media Start Time Group */
.media-start-group {
  margin-top: 8px;
}

/* Dark mode mediashare */
[data-theme="dark"] .media-duration-badge {
  background: linear-gradient(135deg, #1b3a1b, #1a2e1a);
  border-color: #2e5a2e;
  color: #81c784;
}

[data-theme="dark"] .media-preview {
  border-color: #3e3e4e;
}

[data-theme="dark"] .media-preview-info {
  background: #222233;
}

[data-theme="dark"] .media-preview-range {
  color: #e0e0e0;
}

[data-theme="dark"] .media-preview-platform {
  background: #1a2a2a;
  border-color: #4a8a8a;
  color: #ccc;
}

/* Submit */
.donation-submit {
  margin-top: 10px;
}

.donate-btn {
  width: 100%;
  height: 55px;
  font-size: 14px;
  letter-spacing: 1px;
}

.donate-btn .btn-loading .spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}

.donate-btn.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.donation-error {
  background: #fff5f5;
  border: 1px solid #f06956;
  color: #f06956;
  padding: 12px 16px;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.5;
}

.donation-cooldown {
  background: #fff8e1;
  border: 1px solid #f9a825;
  color: #f57f17;
  padding: 12px 16px;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

#turnstile-widget {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

/* =============================================
   PAYMENT INSTRUCTIONS SECTION
   ============================================= */
.payment-section {
  padding: 60px 0 80px;
  background: #f5f5f5;
}

.payment-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Payment Header */
.payment-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.payment-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.payment-status-badge.awaiting {
  background: #fff8e1;
  color: #f9a825;
}

.payment-status-badge.success {
  background: #e8f5e9;
  color: #43a047;
}

.payment-status-badge.expired {
  background: #fce4ec;
  color: #e53935;
}

.payment-status-badge.failed {
  background: #fce4ec;
  color: #e53935;
}

.payment-amount-display {
  margin: 10px 0 15px;
}

.payment-label {
  display: block;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.payment-amount {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #60606e;
}

.payment-timer {
  font-size: 13px;
  color: #999;
}

.payment-timer strong {
  color: #f06956;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

/* Payment Body */
.payment-body {
  padding: 30px;
}

.payment-instruction {
  margin-bottom: 20px;
}

.payment-instruction-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #60606e;
  margin-bottom: 10px;
}

.payment-value-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  padding: 14px 16px;
}

.payment-value {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #60606e;
  word-break: break-all;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #97c1c0;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 10px;
}

.copy-btn:hover {
  background: #82b0af;
}

.copy-btn.copied {
  background: #43a047;
}

/* QR Code */
.qr-container {
  text-align: center;
  padding: 20px 0;
}

.qr-container img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border: 4px solid #eee;
  padding: 10px;
  background: #fff;
}

.qr-hint {
  margin-top: 12px;
  font-size: 13px;
  color: #999;
}

/* Redirect button for e-wallet / payurl channels */
.payment-redirect-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #97c1c0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.payment-redirect-btn:hover {
  background: #82b0af;
  color: #fff;
  text-decoration: none;
}

/* Payment Steps */
.payment-steps {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.payment-steps-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #60606e;
  margin-bottom: 12px;
}

.payment-steps ol {
  padding-left: 20px;
  margin: 0;
}

.payment-steps ol li {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  padding-left: 4px;
}

/* Payment Footer */
.payment-footer {
  padding: 20px 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

.back-btn {
  border: 2px solid #e0e0e0;
  min-width: 200px;
}

.back-btn:hover {
  border-color: #97c1c0;
  color: #97c1c0;
}

/* =============================================
   SUCCESS SECTION
   ============================================= */
.success-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.success-card {
  background: #fff;
  border-radius: 4px;
  padding: 60px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.success-icon {
  margin-bottom: 20px;
}

.success-icon i {
  font-size: 80px;
  color: #43a047;
}

.success-card h2 {
  color: #60606e;
  font-size: 24px;
  margin-bottom: 10px;
}

.success-details {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 20px;
  margin-top: 15px;
  display: inline-block;
  text-align: left;
}

.success-details .detail-row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 6px;
}

.success-details .detail-label {
  color: #999;
  min-width: 120px;
}

.success-details .detail-value {
  color: #60606e;
  font-weight: 600;
}

/* =============================================
   RECENT DONORS SECTION
   ============================================= */
.recent-donors-section {
  padding: 0 0 60px;
}

.recent-donors-card {
  background: #fff;
  border-radius: 4px;
  padding: 28px 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.recent-donors-title {
  font-size: 14px;
  font-weight: 700;
  color: #60606e;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-donors-title i {
  font-size: 20px;
  color: #97c1c0;
}

.recent-donors-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.donor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.donor-item:last-child {
  border-bottom: none;
}

.donor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.donor-name {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #60606e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.donor-time {
  font-size: 11px;
  color: #bbb;
}

.donor-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 12px;
}

.donor-amount {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #97c1c0;
  white-space: nowrap;
}

.donor-channel-logo {
  width: 28px;
  height: 20px;
  object-fit: contain;
}

.donor-channel-text {
  font-size: 10px;
  color: #bbb;
  text-transform: uppercase;
  font-weight: 600;
}

.recent-donors-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
  color: #bbb;
  font-size: 14px;
}

.recent-donors-empty i {
  font-size: 20px;
}

.recent-donors-loading {
  text-align: center;
  padding: 20px 0;
  color: #bbb;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .donation-card {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .donation-info-section {
    padding: 40px 0 25px;
  }

  .donation-form-section {
    padding: 25px 0 60px;
  }

  .donation-card {
    padding: 25px 18px;
  }

  .preset-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-group-items:not(.channel-group-collapsed) {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-recommended {
    padding: 14px 16px;
  }

  .channel-recommended-body {
    gap: 12px;
  }

  .channel-recommended-logo {
    width: 44px;
    height: 44px;
  }

  .channel-recommended-name {
    font-size: 13px;
  }

  .channel-item {
    min-height: 62px;
    padding: 10px 6px;
  }

  .channel-logo {
    width: 30px;
    height: 22px;
  }

  .payment-amount {
    font-size: 26px;
  }

  .payment-value-box {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .payment-value {
    word-break: break-all;
  }

  .copy-btn {
    margin-left: 0;
    justify-content: center;
  }

  .success-card {
    padding: 40px 20px;
  }

  .success-details {
    display: block;
  }

  .success-details .detail-row {
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
  }

  .recent-donors-card {
    padding: 22px 18px;
  }

  .recent-donors-section {
    padding: 0 0 40px;
  }

  .donor-amount {
    font-size: 12px;
  }

  .qr-container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .channel-group-items:not(.channel-group-collapsed) {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-amount-input {
    font-size: 16px;
  }

  .donation-card {
    padding: 20px 14px;
  }

  .preset-btn {
    font-size: 12px;
    padding: 12px 8px;
  }

  .channel-recommended {
    padding: 12px 14px;
  }

  .channel-recommended-logo {
    width: 38px;
    height: 38px;
  }

  .channel-recommended-badge {
    font-size: 9px;
    padding: 2px 8px;
    margin-bottom: 10px;
  }

  .channel-recommended-desc {
    font-size: 11px;
  }

  .channel-item {
    min-height: 58px;
    padding: 8px 4px;
    gap: 4px;
  }

  .channel-logo {
    width: 28px;
    height: 20px;
  }

  .channel-name {
    font-size: 10px;
  }

  .step-title {
    font-size: 14px;
  }

  .donor-name {
    font-size: 12px;
  }

  .donor-amount {
    font-size: 11px;
  }

  .donor-channel-logo {
    width: 22px;
    height: 16px;
  }
}

/* =============================================
   DARK MODE SUPPORT
   ============================================= */
[data-theme="dark"] .donation-card,
[data-theme="dark"] .payment-card,
[data-theme="dark"] .success-card {
  background: #1e1e2e;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .donation-step {
  border-bottom-color: #2e2e3e;
}

[data-theme="dark"] .step-title,
[data-theme="dark"] .form-group label,
[data-theme="dark"] .custom-amount-wrapper label,
[data-theme="dark"] .payment-instruction-title,
[data-theme="dark"] .payment-steps-title,
[data-theme="dark"] .payment-value,
[data-theme="dark"] .payment-amount,
[data-theme="dark"] .channel-name,
[data-theme="dark"] .success-card h2 {
  color: #e0e0e0;
}

[data-theme="dark"] .preset-btn {
  background: #2a2a3a;
  border-color: #3e3e4e;
  color: #ccc;
}

[data-theme="dark"] .preset-btn:hover {
  border-color: #97c1c0;
  color: #97c1c0;
}

[data-theme="dark"] .preset-btn.active {
  background: #97c1c0;
  border-color: #97c1c0;
  color: #fff;
}

[data-theme="dark"] .channel-item {
  background: #2a2a3a;
  border-color: #3e3e4e;
}

[data-theme="dark"] .channel-item:hover {
  border-color: #97c1c0;
}

[data-theme="dark"] .channel-item.active {
  background: #97c1c0;
  border-color: #97c1c0;
}

[data-theme="dark"] .channel-recommended {
  background: #1a2a2a;
  border-color: #97c1c0;
}

[data-theme="dark"] .channel-recommended.active {
  background: #97c1c0;
}

[data-theme="dark"] .channel-recommended-name {
  color: #e0e0e0;
}

[data-theme="dark"] .channel-recommended.active .channel-recommended-name {
  color: #fff;
}

[data-theme="dark"] .channel-group-title {
  border-bottom-color: #2e2e3e;
  color: #777;
}

[data-theme="dark"] .channel-group-title:hover,
[data-theme="dark"] .channel-group-title.channel-group-open {
  color: #ccc;
}

[data-theme="dark"] .donation-input {
  background: #2a2a3a;
  border-color: #3e3e4e;
  color: #e0e0e0;
}

[data-theme="dark"] .donation-input:focus {
  border-color: #97c1c0;
}

[data-theme="dark"] .donation-input::placeholder {
  color: #666;
}

[data-theme="dark"] .input-group {
  border-color: #3e3e4e;
}

[data-theme="dark"] .input-group:focus-within {
  border-color: #97c1c0;
}

[data-theme="dark"] .input-prefix {
  background: #222233;
  border-right-color: #3e3e4e;
  color: #ccc;
}

[data-theme="dark"] .custom-amount-input {
  color: #e0e0e0;
}

[data-theme="dark"] .payment-header {
  border-bottom-color: #2e2e3e;
}

[data-theme="dark"] .payment-value-box {
  background: #222233;
  border-color: #3e3e4e;
}

[data-theme="dark"] .payment-footer {
  border-top-color: #2e2e3e;
}

[data-theme="dark"] .back-btn {
  border-color: #3e3e4e;
  color: #ccc;
}

[data-theme="dark"] .back-btn:hover {
  border-color: #97c1c0;
  color: #97c1c0;
}

[data-theme="dark"] .payment-steps {
  border-top-color: #2e2e3e;
}

[data-theme="dark"] .success-details {
  background: #222233;
  border-color: #2e2e3e;
}

[data-theme="dark"] .success-details .detail-value {
  color: #e0e0e0;
}

[data-theme="dark"] .qr-container img {
  border-color: #3e3e4e;
}

[data-theme="dark"] .recent-donors-card {
  background: #1e1e2e;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .recent-donors-title {
  color: #e0e0e0;
}

[data-theme="dark"] .donor-item {
  border-bottom-color: #2e2e3e;
}

[data-theme="dark"] .donor-name {
  color: #e0e0e0;
}

[data-theme="dark"] .recent-donors-empty {
  color: #666;
}

/* Spin animation class (for icons) */
.spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}
