/* Donation Box Styling */
.donation-box {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.donation-box h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.donation-box p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.donation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.donation-buttons a {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donation-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ko-fi button styling to match the image */
.kofi-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #29abe0;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  transition: all 0.2s ease;
}

.kofi-button:hover {
  background-color: #1a8dbd;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.kofi-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.kofi-button img {
  margin-right: 10px;
  height: 22px;
  width: auto;
}

.donation-section {
  margin-bottom: 1.5rem;
}

.donation-section h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.donation-section p {
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

.local-payment-options {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background-color: hsl(var(--card) / 0.8);
  border: 1px dashed hsl(var(--border));
}

.local-payment-options h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.mobile-money {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mobile-money-option {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background-color: hsl(var(--accent) / 0.05);
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.mobile-money-header {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.mobile-money-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 1.05rem;
}

.mobile-money-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-money-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.detail-label {
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  min-width: 110px;
}

.detail-value {
  font-family: monospace;
  padding: 0.25rem 0.5rem;
  background-color: hsl(var(--accent) / 0.1);
  border-radius: 4px;
  color: hsl(var(--foreground));
}

.payment-note {
  font-size: 0.9rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed hsl(var(--border) / 0.5);
}

.supporter-perks {
  background-color: hsl(var(--accent) / 0.1);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.supporter-perks ul {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.supporter-perks li {
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

/* Dark mode adjustments */
[data-theme="dark"] .donation-box {
  background-color: hsl(var(--card) / 0.8);
}

[data-theme="light"] a:hover {
  color: hsl(var(--muted-foreground));
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .donation-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
