:root {
  --page-bg: #f7ecd9;
  --paper: #fffaf0;
  --paper-soft: #fdf7ea;
  --accent: #d87810;
  --accent-dark: #8a190f;
  --accent-deep: #9b3d00;
  --text: #26160f;
  --gold: #efb24e;
  --gold-soft: #f8e0a7;
  --border: #e1b15d;
  --shadow: 0 10px 30px rgba(102, 49, 7, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), rgba(247, 236, 217, 0.65) 34%, rgba(240, 219, 177, 0.5) 100%),
    linear-gradient(180deg, #f9efdc 0%, #f6e7cb 100%);
  color: var(--text);
  font-family: "Noto Sans Devanagari", sans-serif;
}

.site-shell {
  width: min(1536px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.96), rgba(248, 240, 224, 0.96));
  border: 2px solid #d7af62;
  box-shadow: 0 0 0 1px rgba(255, 233, 188, 0.6) inset;
}

.app-loading,
.app-error {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-size: 24px;
  color: var(--accent-dark);
}

.page {
  overflow: hidden;
}

.i18n {
  display: inline-block;
  width: 100%;
  line-height: inherit;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.i18n--center {
  text-align: center;
}

.i18n--brand {
  line-height: 1.06;
}

.i18n--nav {
  text-align: center;
}

.i18n--button {
  text-align: center;
}

.i18n--hero-title {
  line-height: 1.02;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 18px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 235, 0.96)),
    var(--paper);
  border-bottom: 1px solid rgba(164, 95, 23, 0.2);
  position: relative;
  z-index: 3;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand__mark {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex: none;
  border-radius: 50%;
  border: 2px solid #bf7d1d;
  box-shadow: 0 8px 20px rgba(128, 56, 10, 0.14);
  background: #fff8e2;
}

.brand__copy {
  min-width: 0;
}

.brand__name {
  margin: 0;
  color: #6d170f;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 34px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand__domain {
  margin: 6px 0 0;
  font-size: 18px;
  color: #603318;
  letter-spacing: 0.3px;
}

.nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 12px;
  border: 0;
  background: transparent;
  color: #211710;
  font: 600 16px/1.1 "Noto Sans Devanagari", sans-serif;
  text-align: center;
  cursor: default;
}

.nav__label {
  display: block;
}

.nav__item.is-active {
  color: #2d241c;
}

.nav__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7770d, #f0aa43);
}

.nav__icon,
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  fill: currentColor;
  flex: none;
}

.donate-btn,
.hero__cta,
.plan__action {
  border: 0;
  color: #fff8ef;
  cursor: default;
  font-family: inherit;
  background:
    linear-gradient(180deg, #e48818 0%, #d1740d 52%, #b95a00 100%);
  box-shadow: 0 12px 18px rgba(123, 55, 0, 0.18), inset 0 1px 0 rgba(255, 230, 190, 0.5);
}

.donate-top,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  width: 110px;
  cursor: pointer;
  font-family: inherit;
  padding: 15px 24px;
  border-radius: 12px;
  color: #fff6de;
  font-size: 18px;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
  background: linear-gradient(180deg, #ff9a1d, #cd6507);
  box-shadow: 0 10px 22px rgba(178, 78, 6, 0.24);
  white-space: nowrap;
  justify-self: end;
}

.donate-btn {
  min-height: 58px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero__content {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(690px, 63%);
  padding: 44px 0 30px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__media {
  width: 100%;
}

.hero__media--desktop {
  display: block;
  position: relative;
  z-index: 0;
}

.hero__media--mobile {
  display: none;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__image--desktop {
  width: 100%;
  height: auto;
}

.hero__title {
  margin: 0;
  color: #7d0d08;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero__divider {
  width: 520px;
  max-width: 92%;
  margin: 18px 0 18px;
  display: block;
}

.hero__subtitle {
  margin: 0 0 24px;
  color: #000;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  -webkit-text-stroke: 2px #ffffff;
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(255, 249, 233, 0.38),
    0 0 10px rgba(255, 246, 218, 0.18);
}

.hero__subtitle-line {
  display: block;
}

.hero__cta {
  min-height: 58px;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.hero__cta .icon {
  width: 32px;
  height: 32px;
}

.hero__overlay {
  position: absolute;
  right: -4px;
  bottom: -2px;
  z-index: 1;
  width: min(676px, 46%);
  max-width: none;
  pointer-events: none;
}

.plans {
  position: relative;
  z-index: 2;
  margin-top: -4px;
  padding: 18px 32px 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 238, 224, 0.98)),
    radial-gradient(circle at top, rgba(255, 248, 232, 0.9), rgba(244, 234, 214, 0.9));
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 36px 16px 18px;
  border: 2px solid #e8ac47;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.94), rgba(254, 250, 239, 0.92) 48%, rgba(250, 244, 229, 0.96) 100%);
  box-shadow: 0 10px 16px rgba(122, 68, 16, 0.08), inset 0 0 0 1px rgba(255, 249, 233, 0.7);
}

.plan__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  max-width: calc(100% - 44px);
  padding: 9px 16px 10px;
  border-radius: 12px 12px 18px 18px;
  background:
    linear-gradient(180deg, #cb740f 0%, #a44c00 100%);
  box-shadow: 0 8px 16px rgba(115, 58, 2, 0.18), inset 0 1px 0 rgba(255, 223, 165, 0.45);
  color: #fff8f1;
  text-align: center;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 600;
}

.plan__badge::before,
.plan__badge::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border-top: 2px solid #d7a04c;
}

.plan__badge::before {
  left: -10px;
  border-left: 2px solid #d7a04c;
  border-radius: 10px 0 0 0;
}

.plan__badge::after {
  right: -10px;
  border-right: 2px solid #d7a04c;
  border-radius: 0 10px 0 0;
}

.plan__laurel {
  position: absolute;
  top: 42px;
  width: 32px;
  height: 78px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.95;
}

.plan__laurel--left {
  left: 18px;
}

.plan__laurel--right {
  right: 18px;
  transform: scaleX(-1);
}

.plan__icon {
  width: 76px;
  height: 76px;
  margin: 28px auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at top, #ffd170, #f3a937);
  border: 2px solid #bf7b18;
  color: #75420c;
}

.plan__icon .icon {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.plan__amount {
  margin: 0;
  color: #781911;
  text-align: center;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.plan__caption {
  margin: 8px 0 10px;
  text-align: center;
  color: #211710;
  font-size: 15px;
  font-weight: 600;
}

.plan__benefits-title {
  margin: 8px 0 6px;
  color: #911f10;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
}

.plan__benefits {
  flex: 1;
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
  color: #2b1b13;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
}

.plan__benefits li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.plan__benefits li:last-child {
  margin-bottom: 0;
}

.plan__benefits li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0.08em;
  font-size: 18px;
  line-height: 1;
  color: #7f120d;
}

.plan__action {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
}

.notice {
  padding: 0 32px 30px;
  background: linear-gradient(180deg, rgba(247, 238, 224, 0.98), rgba(247, 238, 224, 0.9));
}

.notice__panel {
  display: grid;
  grid-template-columns: 132px repeat(5, minmax(0, 1fr));
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.96), rgba(251, 244, 228, 0.96));
  border: 1px solid rgba(224, 193, 143, 0.86);
  box-shadow: 0 10px 16px rgba(123, 80, 24, 0.08);
}

.notice__title {
  display: grid;
  place-items: center;
  padding: 14px 12px;
  background: linear-gradient(180deg, #b61914 0%, #8f1211 100%);
  color: #fff9ef;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 22px;
  line-height: 1.14;
  font-weight: 700;
  text-align: center;
}

.notice__item {
  display: flex;
  gap: 12px;
  padding: 10px 16px 10px 18px;
  border-left: 1px solid rgba(226, 188, 131, 0.85);
  color: #24150f;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.notice__index {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #7f120d;
  color: #fff6eb;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.notice__text {
  margin-top: 2px;
}

.donation-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(52, 20, 8, 0.62);
  backdrop-filter: blur(4px);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.donation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.donation-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 217, 144, 0.42), transparent 25%),
    linear-gradient(180deg, #fffdf7, #fff6e5);
  border: 2px solid rgba(204, 133, 41, 0.82);
  box-shadow: 0 30px 60px rgba(58, 18, 4, 0.24);
}

.donation-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #6d170f;
  background: rgba(255, 243, 214, 0.95);
  box-shadow: 0 8px 18px rgba(101, 40, 8, 0.12);
  font-size: 28px;
  line-height: 1;
}

.donation-modal-head {
  margin-bottom: 18px;
  padding-right: 52px;
}

.donation-modal-head h3 {
  margin: 0 0 8px;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 34px;
  line-height: 1.1;
  color: #6d170f;
  font-weight: 700;
}

.donation-modal-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #5a3422;
}

.selected-amount-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(244, 195, 79, 0.2);
  border: 1px solid rgba(204, 133, 41, 0.34);
  color: #6d170f;
  font-size: 15px;
  font-weight: 700;
}

.selected-amount-chip.is-empty {
  display: none;
}

.donation-modal-form {
  display: grid;
  gap: 18px;
}

.payment-summary {
  display: grid;
  gap: 14px;
}

.payment-summary__headline {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f2b14;
}

.total-amount {
  text-align: right;
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff9ef;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(90deg, #8f2b14, #cb6508);
  box-shadow: 0 14px 28px rgba(126, 48, 7, 0.22);
}

.payment-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.payment-summary__item {
  padding: 14px 14px 13px;
  border-radius: 16px;
  border: 1px solid rgba(207, 148, 57, 0.26);
  background: rgba(255, 250, 239, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.payment-summary__item span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #7a4827;
  font-weight: 700;
}

.payment-summary__item strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: #6d170f;
  font-weight: 800;
}

.payment-summary__note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(204, 133, 41, 0.34);
  background: rgba(255, 235, 203, 0.62);
  color: #663719;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.payment-summary__note.is-hidden {
  display: none;
}

.donation-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.donation-field.full {
  grid-column: 1 / -1;
}

.donation-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.3;
  color: #5f3318;
  font-weight: 700;
}

.donation-field input,
.donation-field textarea {
  width: 100%;
  border: 1px solid rgba(205, 145, 51, 0.48);
  border-radius: 14px;
  padding: 13px 15px;
  font: 600 16px/1.4 "Noto Sans Devanagari", sans-serif;
  color: #412519;
  background: rgba(255, 252, 244, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

.donation-field input:focus,
.donation-field textarea:focus {
  outline: 2px solid rgba(226, 132, 20, 0.26);
  border-color: rgba(205, 116, 18, 0.9);
}

.btn-donate {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 15px 18px;
  border-radius: 16px;
  color: #fff8e7;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #ff9518, #cc6008);
  box-shadow: 0 14px 26px rgba(175, 72, 5, 0.22);
}

.footer {
  background:
    linear-gradient(180deg, #fffdf7, #fff8ea);
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding: 28px 30px 30px;
  position: relative;
  z-index: 1;
}

.footer-main > div:not(:last-child) {
  border-right: 1px solid rgba(214, 169, 93, 0.36);
  padding-right: 26px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo-mark {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid #bf7d1d;
  box-shadow: 0 8px 20px rgba(128, 56, 10, 0.14);
  overflow: hidden;
  flex: 0 0 auto;
  background: #fff8e2;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand h5,
.footer-col h5 {
  margin: 0 0 10px;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 22px;
  line-height: 1.12;
  color: #6d170f;
  font-weight: 700;
}

.footer p,
.footer li {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #4f301f;
  list-style: none;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  display: inline-flex;
  margin-top: 4px;
  color: #71351c;
}

.footer-contact-icon .icon {
  width: 17px;
  height: 17px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  position: relative;
  padding: 14px 24px;
  text-align: center;
  color: #ffe8b4;
  background: linear-gradient(90deg, #5b110d, #7a1b11 38%, #60120d);
  border-top: 1px solid rgba(255, 216, 140, 0.2);
  font-size: 18px;
  line-height: 1.5;
  overflow: hidden;
}

.footer-bottom::before,
.footer-bottom::after {
  content: "";
  position: absolute;
  bottom: -22px;
  width: 130px;
  height: 130px;
  opacity: 0.9;
  background:
    radial-gradient(circle at 50% 50%, transparent 36%, rgba(224, 160, 57, 0.9) 36.4%, transparent 39%),
    repeating-conic-gradient(from 0deg, rgba(224, 160, 57, 0.85) 0deg 12deg, transparent 12deg 24deg);
  mask:
    radial-gradient(circle at center, transparent 0 25%, #000 25.5% 68%, transparent 68.5%),
    linear-gradient(#000, #000);
}

.footer-bottom::before {
  left: -28px;
}

.footer-bottom::after {
  right: -28px;
  transform: scaleX(-1);
}

.footer-bottom .cow-sep {
  color: #e2a43d;
  margin: 0 10px;
  vertical-align: -5px;
}

@media (max-width: 1320px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .topbar__actions {
    justify-content: center;
  }

  .hero {
    padding: 38px 24px 28px;
  }

  .hero__content {
    width: min(760px, 72%);
  }

  .hero__title {
    font-size: 56px;
  }

  .plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice__panel {
    grid-template-columns: 132px repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main > div:nth-child(2) {
    border-right: 0;
  }

  .footer-main > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(214, 169, 93, 0.36);
    padding-bottom: 20px;
  }

  .donation-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: 100%;
    border-width: 1px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-direction: row;
    gap: 10px;
    min-width: 0;
  }

  .brand__mark {
    width: 52px;
    height: 52px;
  }

  .brand__name {
    font-size: 22px;
    white-space: normal;
  }

  .brand__domain {
    display: none;
  }

  .topbar__actions {
    width: auto;
    justify-content: flex-end;
    flex: none;
  }

  .donate-top,
  .lang-toggle {
    width: auto;
    min-width: 108px;
    padding: 12px 16px;
    justify-content: center;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 2px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero::after {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero__content {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 0 16px;
    display: block;
  }

  .hero__media--desktop {
    display: none;
  }

  .hero__media--mobile {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
    font-size: 17px;
  }

  .hero__overlay {
    position: relative;
    display: block;
    width: min(100%, 540px);
    margin: 20px auto 0;
    right: auto;
    bottom: auto;
  }

  .plans {
    padding: 18px 16px 14px;
  }

  .plans__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .plan {
    min-height: auto;
  }

  .notice {
    padding: 0 16px 20px;
  }

  .notice__panel {
    grid-template-columns: 1fr;
  }

  .notice__item {
    border-left: 0;
    border-top: 1px solid rgba(226, 188, 131, 0.85);
  }

  .donation-modal {
    padding: 14px;
  }

  .donation-modal-panel {
    padding: 24px 16px 18px;
    border-radius: 22px;
  }

  .donation-modal-head {
    padding-right: 40px;
  }

  .donation-modal-head h3 {
    font-size: 28px;
  }

  .total-amount {
    font-size: 28px;
  }

  .payment-summary__grid {
    grid-template-columns: 1fr;
  }

  .payment-summary__item strong {
    font-size: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 16px;
  }

  .footer-main > div,
  .footer-main > div:nth-child(2) {
    border-right: 0;
  }

  .footer-main > div:not(:last-child) {
    border-bottom: 1px solid rgba(214, 169, 93, 0.36);
    padding-right: 0;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-bottom {
    font-size: 16px;
    padding: 14px 16px;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }
}
