/* ==============================================================
   Holiday Gifts Gamification 2025 – Donation buttons
   ==============================================================*/

.hgg2025-gamification_donation-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.hgg2025-gamification_donate-button {
  padding: 10px 16px;
  border: none;
  border-radius: 20px !important;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hgg2025-gamification_donate-button.hgg2025-gamification_empty:hover {
  background-color: #d9d6d4 !important;
  color: #000 !important;
}

.hgg2025-gamification_donate-button.hgg2025-gamification_once:hover {
  background-color: #ffe100 !important;
  color: #000 !important;
}

.hgg2025-gamification_donate-button.hgg2025-gamification_monthly:hover {
  background-color: #f7931e !important;
  color: #000 !important;
}


.hgg2025-gamification_donate-button:hover,
.hgg2025-wfp-gamification-donate-button:hover {
  opacity: 1;
  box-shadow: none;
  transform: none;
}

.hgg2025-gamification_donate-button.hgg2025-gamification_empty {
  background-color: #d9d6d4;
  color: #000;
  font-weight: 600;
  cursor: default;
}

.hgg2025-gamification_donate-button.hgg2025-gamification_once {
  background-color: #ffe100;
  color: black;
}

.hgg2025-gamification_donate-button.hgg2025-gamification_monthly {
  background-color: #f7931e;
  color: black;
}

.hgg2025-gamification_donate-button:disabled {
  background-color: #ccc !important;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

/* -------- UA (WFP) -------- */

.hgg2025-wfp-gamification-donate-button {
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hgg2025-wfp-gamification-donate-button.hgg2025-wfp-once {
  background-color: #ffe100;
  color: black;
}

.hgg2025-wfp-gamification-donate-button.hgg2025-wfp-monthly {
  background-color: #f7931e;
  color: black;
}

.hgg2025-wfp-gamification-donate-button:disabled {
  background-color: #ccc !important;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

/* -------- Breakpoints -------- */

@media (max-width: 1024px) {
  .hgg2025-wfp-gamification-donate-button {
    padding: 9px 14px;
    font-size: 15px;
    border-radius: 18px;
  }
  .hgg2025-gamification_donation-buttons {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .hgg2025-wfp-gamification-donate-button {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 16px;
  }
  .hgg2025-gamification_donation-buttons {
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .hgg2025-wfp-gamification-donate-button {
    padding: 7px 10px;
    font-size: 13px;
    border-radius: 14px;
  }
}
