#donation-widget {
  padding: 30px;
  border: 2px solid #ddd;
  margin-bottom: 30px;
  background: #f9f9f9;
  font-family: inherit;
  box-sizing: border-box;
}

.donation-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: left;
}

.donation-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.preset-buttons {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preset-btn {
  background: #eee;
  border: 1px solid #ccc;
  padding: 10px 18px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.preset-btn.active,
.preset-btn:hover {
  background-color: #333;
  color: #fff;
}

#custom-donation-amount {
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
  font-size: 16px;
  box-sizing: border-box;
}

#donation-submit {
  width: 100%;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* ✅ Mobile & Tablet Responsive */
@media (max-width: 768px) {
  #donation-widget {
    padding: 20px;
  }

  .donation-title {
    font-size: 22px;
  }

  .donation-subtitle {
    font-size: 14px;
  }

  .preset-btn {
    flex: 1 1 45%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .preset-btn {
    flex: 1 1 100%;
  }
}
/*New Style for donation at checkout page*/
.donation-checkout-box {
  margin: 30px 0;
  padding: 20px;
  border: 2px dashed #ccc;
  background: #f9f9f9;
  text-align: left;
}

.donation-checkout-title {
  font-size: 22px;
  color: #333;
  font-family: 'Jost', sans-serif;
  margin-bottom: 10px;
}

.donation-checkout-subtitle {
  font-size: 15px;
  color: #666;
  font-family: 'Jost', sans-serif;
  margin-bottom: 20px;
}

.donation-checkout-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.donation-preset-btn,
.donation-custom-toggle {
  padding: 10px 15px;
  background: #eee;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}

.donation-preset-btn.active,
.donation-preset-btn:hover,
.donation-custom-toggle:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.donation-custom-amount-wrap {
  margin-bottom: 15px;
}

.donation-custom-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
}

.donation-update-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: 0.3s;
}

.donation-update-btn:hover {
  background: #333;
}
.donation-checkout-buttons .donation-preset-btn {
    transition: all 0.3s ease;
}
#custom-amount{
  background: black;
  color: white;
}
