/* ===== DESIGN TOKENS ===== */
:root {
  --emerald: #0B3D2E;
  --emerald-light: #145A43;
  --gold: #D4A93D;
  --gold-light: #E8C96A;
  --cream: #F8F4E9;
  --cream-dark: #EDE7D9;
  --charcoal: #1A1A1A;
  --text-body: #2D2D2D;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --red-soft: #C0392B;
  --green-success: #27AE60;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:'Inter',sans-serif;background:var(--cream);color:var(--text-body);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;border:none;font-family:inherit}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ===== TYPOGRAPHY ===== */
.font-display{font-family:'Playfair Display',serif}
.font-arabic{font-family:'Amiri',serif}
h1,h2,h3{font-family:'Playfair Display',serif;color:var(--emerald);line-height:1.2}

/* ===== UTILITY ===== */
.container{width:100%;max-width:480px;margin:0 auto;padding:0 20px}
@media(min-width:768px){.container{max-width:720px}}
@media(min-width:1024px){.container{max-width:960px}}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 68vh;
  min-height: 68svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 24px;
}
.hero__bg{position:absolute;inset:0;z-index:0}
.hero__bg img{width:100%;height:100%;object-fit:cover}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(11,61,46,.92) 0%,rgba(11,61,46,.6) 40%,rgba(11,61,46,.2) 70%,transparent 100%);z-index:1}
.hero__content{position:relative;z-index:2;padding:0 24px;text-align:center}
.hero__eyebrow{display:inline-block;background:rgba(212,169,61,.2);border:1px solid var(--gold);color:var(--gold-light);font-size:.75rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:6px 16px;border-radius:var(--radius-full);margin-bottom:16px;backdrop-filter:blur(4px)}
.hero__title{font-family:'Playfair Display',serif;font-size:clamp(1.75rem,6vw,3rem);color:var(--white);margin-bottom:12px;text-shadow:0 2px 20px rgba(0,0,0,.3)}
.hero__subtitle{color:rgba(255,255,255,.85);font-size:clamp(.95rem,2.5vw,1.15rem);margin-bottom:28px;max-width:520px;margin-left:auto;margin-right:auto}
.hero__cta{display:inline-flex;align-items:center;gap:8px;background:var(--gold);color:var(--emerald);font-size:1.1rem;font-weight:700;padding:16px 36px;border-radius:var(--radius-full);box-shadow:0 4px 24px rgba(212,169,61,.4);transition:all .3s ease;animation:pulse-glow 2.5s ease-in-out infinite}
.hero__cta:hover{transform:translateY(-2px);box-shadow:0 6px 32px rgba(212,169,61,.55)}
@keyframes pulse-glow{0%,100%{box-shadow:0 4px 24px rgba(212,169,61,.4)}50%{box-shadow:0 4px 36px rgba(212,169,61,.65)}}
.hero__trust{display:flex;justify-content:center;gap:20px;margin-top:20px;flex-wrap:wrap}
.hero__trust-item{display:flex;align-items:center;gap:6px;color:rgba(255,255,255,.75);font-size:.75rem}
.hero__trust-item svg{width:16px;height:16px;flex-shrink:0;fill:var(--gold)}

/* ===== SECTION COMMON ===== */
.section{padding:56px 0}
.section--cream{background:var(--cream)}
.section--white{background:var(--white)}
.section--emerald{background:var(--emerald);color:var(--white)}
.section__badge{display:inline-block;background:rgba(212,169,61,.15);color:var(--gold);font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:5px 14px;border-radius:var(--radius-full);margin-bottom:12px}
.section__title{font-size:clamp(1.5rem,4vw,2.2rem);margin-bottom:8px;text-align:center}
.section__subtitle{color:var(--text-muted);text-align:center;max-width:520px;margin:0 auto 32px;font-size:.95rem}
.section--emerald .section__subtitle{color:rgba(255,255,255,.7)}

/* ===== PROBLEM SECTION ===== */
.problems{display:flex;flex-direction:column;gap:16px;max-width:400px;margin:0 auto}
.problem-item{display:flex;align-items:flex-start;gap:14px;background:var(--white);padding:18px 20px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);border-left:4px solid var(--red-soft)}
.problem-item__icon{width:36px;height:36px;border-radius:50%;background:rgba(192,57,43,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem}
.problem-item__text{font-size:.92rem}
.problem-item__text strong{color:var(--charcoal)}

/* ===== IMPACT CARDS ===== */
.impact-grid{display:grid;grid-template-columns:1fr;gap:20px}
@media(min-width:600px){.impact-grid{grid-template-columns:1fr 1fr}}
.impact-card{position:relative;border-radius:var(--radius-lg);overflow:hidden;min-height:280px;display:flex;flex-direction:column;justify-content:flex-end;padding:24px}
.impact-card__bg{position:absolute;inset:0}
.impact-card__bg img{width:100%;height:100%;object-fit:cover}
.impact-card__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(11,61,46,.88),rgba(11,61,46,.3))}
.impact-card__content{position:relative;z-index:1;color:var(--white)}
.impact-card__icon{font-size:2rem;margin-bottom:8px}
.impact-card__title{font-family:'Playfair Display',serif;font-size:1.25rem;margin-bottom:6px;color:#fff}
.impact-card__desc{font-size:.88rem;color:rgba(255,255,255,.8);line-height:1.5}

/* ===== PACKAGES ===== */
.packages-scroll{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding:4px 4px 20px;scrollbar-width:none}
.packages-scroll::-webkit-scrollbar{display:none}
@media(min-width:768px){.packages-scroll{display:grid;grid-template-columns:repeat(2,1fr);overflow:visible}}
@media(min-width:1024px){.packages-scroll{grid-template-columns:repeat(4,1fr)}}
.pkg-card {
  min-width: 275px;
  max-width: 285px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media(min-width:768px) {
  .pkg-card {
    min-width: 0;
    max-width: none;
  }
}
.pkg-card:hover, .pkg-card--active {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pkg-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
@media(min-width:768px) {
  .pkg-dots {
    display: none;
  }
}
.pkg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-dot--active {
  background: var(--gold);
  transform: scale(1.25);
}
.pkg-card__ribbon{position:absolute;top:14px;right:-8px;background:var(--gold);color:var(--emerald);font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;padding:4px 14px 4px 10px;border-radius:4px 0 0 4px;box-shadow:0 2px 8px rgba(212,169,61,.3)}
.pkg-card__ribbon::after{content:'';position:absolute;right:0;bottom:-6px;border:3px solid #B08A2E;border-right-color:transparent;border-bottom-color:transparent}
.pkg-card__icon{font-size:2.2rem;margin-bottom:12px}
.pkg-card__title{font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--emerald);margin-bottom:6px}
.pkg-card__price{font-size:1.8rem;font-weight:800;color:var(--emerald);margin-bottom:8px}
.pkg-card__price span{font-size:.85rem;font-weight:400;color:var(--text-muted)}
.pkg-card__desc{font-size:.85rem;color:var(--text-muted);line-height:1.5;flex:1;margin-bottom:16px}
.pkg-card__btn{width:100%;padding:12px;background:var(--emerald);color:var(--white);border-radius:var(--radius-sm);font-weight:600;font-size:.95rem;transition:all .25s ease;display:flex;align-items:center;justify-content:center;gap:6px}
.pkg-card__btn:hover{background:var(--emerald-light)}

/* ===== ITEM PICKER & CART PROGRESS ===== */
.cart-header {
  margin-bottom: 24px;
  text-align: center;
}
.cart-header__title {
  font-size: clamp(1.4rem, 4.5vw, 1.85rem);
  color: var(--emerald);
  margin-top: 8px;
}
.cart-progress {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 16px auto 0;
  max-width: 440px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.cart-progress__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 8px;
}
.cart-progress__total {
  background: var(--emerald);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}
.cart-progress__bar-bg {
  height: 10px;
  background: var(--cream-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 6px;
  position: relative;
}
.cart-progress__bar {
  height: 100%;
  background: var(--gold);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-progress__bar--met {
  background: var(--green-success);
}
.cart-progress__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.cart-progress__hint--met {
  color: var(--green-success);
  font-weight: 700;
}

.item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.item-row--active {
  border-color: var(--gold);
  background: rgba(212, 169, 61, 0.03);
  box-shadow: var(--shadow-md);
}
.item-row__icon {
  width: 40px;
  height: 40px;
  background: rgba(11, 61, 46, 0.05);
  color: var(--emerald);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.item-row--active .item-row__icon {
  background: var(--gold);
  color: var(--emerald);
}
.item-row__info {
  flex: 1;
  min-width: 0;
}
.item-row__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.35;
}
.item-row__price {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.item-row__stepper {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.stepper-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: var(--cream);
  color: var(--emerald);
}
.stepper-btn:hover {
  background: var(--emerald);
  color: var(--white);
}
.stepper-btn:active {
  transform: scale(0.9);
}
.stepper-val {
  width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--emerald);
}


/* ===== SADAQAH BANNER ===== */
.sadaqah-banner{position:relative;border-radius:var(--radius-lg);overflow:hidden;padding:48px 24px;text-align:center;min-height:200px;display:flex;align-items:center;justify-content:center}
.sadaqah-banner__bg{position:absolute;inset:0}
.sadaqah-banner__bg img{width:100%;height:100%;object-fit:cover}
.sadaqah-banner__overlay{position:absolute;inset:0;background:rgba(11,61,46,.75)}
.sadaqah-banner__content{position:relative;z-index:1}
.sadaqah-banner__ornament{color:var(--gold);font-size:1.4rem;margin-bottom:8px}
.sadaqah-banner__text{font-family:'Amiri',serif;font-size:clamp(1.2rem,3.5vw,1.6rem);color:var(--gold-light);line-height:1.5;max-width:500px;margin:0 auto}
.sadaqah-banner__sub{color:rgba(255,255,255,.7);font-size:.85rem;margin-top:12px;font-style:italic}

/* ===== PAYMENT SECTION ===== */
.payment{background:var(--white);text-align:center;padding-bottom:100px}
.payment__total{font-size:2.5rem;font-weight:800;color:var(--emerald);margin-bottom:4px}
.payment__total-label{color:var(--text-muted);font-size:.85rem;margin-bottom:24px}
.payment__methods{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:28px;max-width:320px;margin-left:auto;margin-right:auto}
@media(min-width:600px){.payment__methods{display:flex;flex-wrap:wrap;justify-content:center;max-width:none}}
.payment__method{background:var(--cream);border:1px solid var(--cream-dark);border-radius:var(--radius-sm);padding:8px 14px;font-size:.78rem;color:var(--text-muted);display:flex;align-items:center;gap:6px}
.payment__method svg{width:18px;height:18px}
.payment__submit{width:100%;max-width:400px;padding:18px;background:var(--gold);color:var(--emerald);font-size:1.15rem;font-weight:700;border-radius:var(--radius-full);box-shadow:0 4px 24px rgba(212,169,61,.35);transition:all .3s ease;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:8px}
.payment__submit:hover{transform:translateY(-2px);box-shadow:0 6px 32px rgba(212,169,61,.5)}
.payment__submit:disabled{opacity:.5;cursor:not-allowed;transform:none;box-shadow:none}
.payment__reassure{margin-top:16px;font-size:.8rem;color:var(--text-muted)}
.payment__badges{display:flex;justify-content:center;gap:24px;margin-top:20px;flex-wrap:wrap}
.payment__badge{display:flex;align-items:center;gap:6px;font-size:.75rem;color:var(--text-muted)}
.payment__badge svg{width:18px;height:18px;fill:var(--green-success)}

/* ===== STICKY BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2.5px solid var(--gold);
  padding: 12px 20px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-bar--visible {
  transform: translateY(0);
}
.sticky-bar__info {
  flex: 1;
}
.sticky-bar__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sticky-bar__total {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--emerald);
  display: inline-block;
}
.sticky-bar__btn {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(212, 169, 61, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sticky-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 169, 61, 0.5);
}
.sticky-bar__btn:active {
  transform: translateY(0);
}

@keyframes pop-bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); color: var(--gold); }
  100% { transform: scale(1); }
}
.pop-animation {
  animation: pop-bounce 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== SOCIAL PROOF ===== */
.social-proof{text-align:center;padding:12px;background:rgba(212,169,61,.08);border-radius:var(--radius-sm);margin-bottom:24px;font-size:.85rem;color:var(--emerald);font-weight:500}
.social-proof svg{width:16px;height:16px;vertical-align:middle;fill:var(--gold);margin-right:4px}

/* ===== THANK YOU MODAL ===== */
.thankyou-overlay{position:fixed;inset:0;z-index:200;background:rgba(0,0,0,.6);backdrop-filter:blur(6px);display:none;align-items:center;justify-content:center;padding:20px}
.thankyou-overlay--visible{display:flex}
.thankyou{background:var(--white);border-radius:var(--radius-lg);max-width:420px;width:100%;max-height:90vh;overflow-y:auto;text-align:center;position:relative}
.thankyou__header{padding:40px 24px 24px;background:linear-gradient(135deg,var(--emerald),var(--emerald-light));border-radius:var(--radius-lg) var(--radius-lg) 0 0;color:var(--white)}
.thankyou__icon{font-size:3rem;margin-bottom:12px}
.thankyou__title{font-family:'Playfair Display',serif;font-size:1.5rem;margin-bottom:8px}
.thankyou__dua{font-family:'Amiri',serif;font-size:1rem;color:rgba(255,255,255,.8);font-style:italic}
.thankyou__body{padding:24px}
.thankyou__summary{background:var(--cream);border-radius:var(--radius-sm);padding:16px;margin-bottom:20px;text-align:left}
.thankyou__summary-row{display:flex;justify-content:space-between;padding:6px 0;font-size:.88rem;border-bottom:1px solid var(--cream-dark)}
.thankyou__summary-row:last-child{border:none;font-weight:700;color:var(--emerald);font-size:1rem;padding-top:10px}
.thankyou__receipt-btn{width:100%;padding:14px;background:var(--emerald);color:var(--white);border-radius:var(--radius-sm);font-weight:600;margin-bottom:16px;transition:all .25s ease}
.thankyou__receipt-btn:hover{background:var(--emerald-light)}
.thankyou__share-label{font-size:.8rem;color:var(--text-muted);margin-bottom:10px}
.thankyou__share{display:flex;justify-content:center;gap:12px}
.thankyou__share-btn{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:var(--white);transition:all .2s ease}
.thankyou__share-btn:hover{transform:scale(1.1)}
.thankyou__share-btn--wa{background:#25D366}
.thankyou__share-btn--fb{background:#1877F2}
.thankyou__share-btn--ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.thankyou__close{margin-top:20px;font-size:.85rem;color:var(--text-muted);background:none;text-decoration:underline}

/* ===== FOOTER ===== */
.footer{background:var(--charcoal);color:rgba(255,255,255,.7);padding:40px 0 100px;font-size:.82rem;text-align:center}
.footer__name{font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--gold);margin-bottom:8px}
.footer__reg{margin-bottom:16px;font-size:.75rem}
.footer__links{display:flex;justify-content:center;gap:20px;margin-bottom:16px}
.footer__links a{color:rgba(255,255,255,.5);transition:color .2s}
.footer__links a:hover{color:var(--gold)}
.footer__closing{font-family:'Amiri',serif;font-size:1rem;color:var(--gold-light);margin-top:16px}

/* ===== DIVIDER ===== */
.divider{height:40px;background:url('images/pattern.png') center/200px repeat;opacity:.08}

/* ===== ANIMATIONS & SHEEN ===== */
.fade-up{opacity:0;transform:translateY(24px);transition:all .6s cubic-bezier(.4,0,.2,1)}
.fade-up--visible{opacity:1;transform:translateY(0)}

/* Sheen / Blade Animation */
.btn-sheen {
  position: relative;
  overflow: hidden;
}
.btn-sheen::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3.5s infinite ease-in-out;
}
@keyframes shine {
  0% { left: -75%; }
  15% { left: 125%; }
  100% { left: 125%; }
}

/* ===== AUTO-SLIDING GALLERY ===== */
.donation-slider {
  overflow: hidden;
  width: 100%;
  background: var(--emerald);
  padding: 30px 0;
  position: relative;
}
.donation-slider__track {
  display: flex;
  width: calc(280px * 8); /* 8 items (4 original + 4 clone) */
  animation: scroll-marquee 28s linear infinite;
}
.donation-slider__track:hover {
  animation-play-state: paused;
}
.donation-slider__item {
  width: 280px;
  height: 180px;
  flex-shrink: 0;
  padding: 0 10px;
  position: relative;
}
.donation-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.donation-slider__label {
  position: absolute;
  bottom: 12px;
  left: 20px;
  right: 20px;
  background: rgba(11, 61, 46, 0.9);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-280px * 4)); }
}

/* ===== FORM IN PAYMENT ===== */
.payment__form{max-width:400px;margin:0 auto 20px;display:flex;flex-direction:column;gap:12px}
.payment__input{width:100%;padding:14px 16px;border:2px solid var(--cream-dark);border-radius:var(--radius-sm);font-size:.95rem;font-family:inherit;transition:border-color .2s;background:var(--cream)}
.payment__input:focus{outline:none;border-color:var(--gold)}
.payment__input::placeholder{color:var(--text-muted)}

/* ===== DONOR BOARD (WALL OF HONOR) ===== */
.donor-board {
  max-width: 400px;
  margin: 32px auto 0;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.donor-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--emerald) 50%, var(--gold) 100%);
}
.donor-board__header {
  text-align: center;
  margin-bottom: 16px;
}
.donor-board__badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-success);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.donor-board__title {
  font-size: 1.15rem;
  color: var(--emerald);
  margin-bottom: 2px;
}
.donor-board__subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.donor-board__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-dark) transparent;
}
.donor-board__list::-webkit-scrollbar {
  width: 4px;
}
.donor-board__list::-webkit-scrollbar-thumb {
  background: var(--cream-dark);
  border-radius: 4px;
}
.donor-row {
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  transition: all 0.5s ease;
}
.donor-row--highlight {
  animation: row-sparkle 1.5s ease-out;
  border-left-color: var(--green-success);
}
@keyframes row-sparkle {
  0% { background: rgba(212, 169, 61, 0.3); transform: scale(1.03); }
  100% { background: var(--cream); transform: scale(1); }
}
.donor-row__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.donor-row__details {
  flex: 1;
}
.donor-row__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 4px;
}
.donor-row__name svg {
  width: 12px;
  height: 12px;
  fill: var(--green-success);
}
.donor-row__time {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.donor-row__amount {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--emerald);
  margin-left: auto;
}

/* ===== LIVE TOAST NOTIFICATION ===== */
.toast-container {
  position: fixed;
  bottom: 84px; /* stays clear of sticky bar */
  left: 20px;
  z-index: 105;
  pointer-events: none;
}
@media(max-width: 600px) {
  .toast-container {
    left: 12px;
    right: 12px;
    bottom: 90px;
  }
}
.live-toast {
  background: rgba(11, 61, 46, 0.96);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  margin-bottom: 8px;
}
.live-toast--visible {
  transform: translateY(0);
  opacity: 1;
}
.live-toast__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 169, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.live-toast__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}
.live-toast__text {
  font-size: 0.82rem;
  line-height: 1.4;
}
.live-toast__name {
  font-weight: 700;
  color: var(--gold-light);
}
.live-toast__amount {
  font-weight: 800;
}
.live-toast__time {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1px;
}

