/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 23:27 Unexpected "{"
Line 24:27 Unexpected "{"
Line 25:27 Unexpected "{"
Line 26:27 Unexpected "{"
Line 31:27 Unexpected "{"
Line 37:27 Unexpected "{"
Line 38:27 Unexpected "{"
Line 39:27 Unexpected "{"
Line 44:19 Unexpected "{"
... and 84 more hidden warnings

**/
<style>
/* Make the overall page background black */
body:has(.donation-section-{{ section.id }}) {
  background: #000 !important;
}

/* Make the main content wrapper black too */
body:has(.donation-section-{{ section.id }}) main,
body:has(.donation-section-{{ section.id }}) #MainContent,
body:has(.donation-section-{{ section.id }}) .content-for-layout,
body:has(.donation-section-{{ section.id }}) .shopify-section {
  background: #000 !important;
}

/* Remove Dawn's huge default page spacing (this is the BIG one) */
body:has(.donation-section-{{ section.id }}) .page-margin {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove any extra padding that keeps pushing content down */
body:has(.donation-section-{{ section.id }}) .main-page-title,
body:has(.donation-section-{{ section.id }}) .page-width,
body:has(.donation-section-{{ section.id }}) .page-width--narrow {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* Full black background on the page */
.donation-section-{{ section.id }} {
  background: #000 !important;
  width: 100%;
}

/* Container / layout */
.donation-section-{{ section.id }} .donation-form-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .donation-section-{{ section.id }} .donation-form-container {
    padding: 4rem 2rem 3rem 2rem;
  }
}

.donation-section-{{ section.id }} .donation-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.donation-section-{{ section.id }} .donation-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.donation-section-{{ section.id }} .donation-description {
  font-size: 1rem;
  color: #999999;
  max-width: 42rem;
  margin: 0 auto;
}

.donation-section-{{ section.id }} .donation-card {
  background-color: #0d0d0d;
  border: 1px solid #333333;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.donation-section-{{ section.id }} .donation-card-content {
  padding: 1.5rem;
}

.donation-section-{{ section.id }} .donation-form-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.donation-section-{{ section.id }} .donation-radio-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.donation-section-{{ section.id }} .donation-radio-option {
  position: relative;
}

.donation-section-{{ section.id }} .donation-radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  appearance: none;
  -webkit-appearance: none;
}

.donation-section-{{ section.id }} .donation-radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 2px solid #262626;
  border-radius: 0.5rem;
  background-color: #000000;
  cursor: pointer;
  transition: all 0.2s;

}

.donation-section-{{ section.id }} .donation-radio-label:hover {
  background-color: #ff8800;
  color: #000000;
}

.donation-section-{{ section.id }} .donation-radio-label:hover .donation-radio-label-text {
  color: #000000;
}

.donation-section-{{ section.id }} .donation-radio-input:checked + .donation-radio-label {
  border-color: #ff8800;
  background-color: #ff8800;
}

.donation-section-{{ section.id }} .donation-radio-input:checked + .donation-radio-label .donation-radio-label-text {
  color: #000000;
}

.donation-section-{{ section.id }} .donation-radio-label-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.donation-section-{{ section.id }} .donation-input-wrapper {
  position: relative;
  width: 100%;
}

.donation-section-{{ section.id }} .donation-input-prefix {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999999;
}

.donation-section-{{ section.id }} .donation-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 1.75rem;
  background-color: #262626;
  border: 1px solid #333333;
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.donation-section-{{ section.id }} .donation-input:focus {
  outline: none;
  border-color: #ff8800;
  box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.1);
}

.donation-section-{{ section.id }} .donation-button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.donation-section-{{ section.id }} .donation-button:hover {
  background-color: #ffffff;
  color: #000000;
}

.donation-section-{{ section.id }} .donation-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.donation-section-{{ section.id }} .donation-footer-text {
  font-size: 0.875rem;
  color: #999999;
  text-align: center;
  margin-top: 1rem;
}

.donation-section-{{ section.id }} .donation-error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.donation-section-{{ section.id }} .donation-error-message.show {
  display: block;
}

/* =========================================
   FIX: full-width + centered donation block
   ========================================= */

/* keep the section full width + black */
.donation-section-{{ section.id }} {
  background: #000 !important;
  width: 100%;
  padding: 0 !important;
}

/* make the container behave like a "page" that centers its contents */
.donation-section-{{ section.id }} .donation-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 2rem !important;

  /* centers heading + card together */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* keeps it fitting within viewport */
  min-height: calc(100vh - var(--header-height, 140px));
}

/* heading spacing + readability */
.donation-section-{{ section.id }} .donation-header {
  width: 100%;
  text-align: center;
  margin-bottom: 1.25rem !important;
}

.donation-section-{{ section.id }} .donation-title {
  color: #fff !important;
  margin-bottom: 0.4rem !important;
}

.donation-section-{{ section.id }} .donation-description {
  color: #aaa !important;
}

/* make card full width but not massive */
.donation-section-{{ section.id }} .donation-card {
  width: 100%;
  max-width: 900px;
}

/* =========================================
   FIX: center donation block + move it up
   ========================================= */

/* force the whole section to behave like a centered hero */
.donation-section-{{ section.id }} {
  display: flex;
  justify-content: center;
}

/* center container + move it up from the bottom */
.donation-section-{{ section.id }} .donation-form-container {
  margin: 0 auto !important;
  width: 100%;
  max-width: 1000px;

  /* pushes the whole block upward */
  min-height: calc(100vh - var(--header-height, 140px));
  justify-content: center !important;
  padding-top: 2rem !important;

  /* adjust this to control where it sits */
  padding-top: 3rem !important;
  padding-bottom: 4rem !important;
}
/* =========================================
   FIX: stack header above form (1 column)
   ========================================= */

.donation-section-{{ section.id }} {
  display: block !important;
}

.donation-section-{{ section.id }} .donation-form-container {
  display: flex !important;
  flex-direction: column !important; /* ✅ stack */
  align-items: center !important;    /* ✅ center */
  justify-content: flex-start !important;

  max-width: 1000px;
  margin: 0 auto !important;
  width: 100%;

  /* controls how high on the page it sits */
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* ensure header is centered and not behaving like a column */
.donation-section-{{ section.id }} .donation-header {
  width: 100%;
  text-align: center !important;
  margin-bottom: 2rem !important;
}

/* center the card and keep your nice width */
.donation-section-{{ section.id }} .donation-card {
  width: 100%;
  max-width: 1000px;
}
</style>