/* ===== DONATION PAGE STYLES ===== */

/* Donation Hero Section - Premium & Mobile-First */
.donate-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    /* Support for background image */
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Better for mobile */
    
    /* Fallback gradient if no image */
    background-color: #d62d8c;
    
    padding: 8rem 1rem 4rem;
}

/* Dark overlay for better text contrast */
.donate-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(214, 45, 140, 0.85) 0%,
        rgba(123, 45, 126, 0.8) 50%,
        rgba(44, 62, 80, 0.75) 100%
    );
    z-index: 1;
}

/* Animated gradient overlay for depth */
.donate-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    animation: pulseOverlay 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseOverlay {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

.donate-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.donate-hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
    color: var(--white-color);
    padding: 0 1.25rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.donate-hero__label {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: var(--font-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.donate-hero__label:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.donate-hero__title {
    font-size: 2rem;
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.donate-hero__description {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.95;
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: var(--font-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Mobile Optimizations */
@media screen and (max-width: 374px) {
    .donate-hero {
        min-height: 60vh;
        padding: 7rem 0.875rem 3.5rem;
    }
    
    .donate-hero__content {
        padding: 0 1rem;
    }
    
    .donate-hero__label {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }
    
    .donate-hero__title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .donate-hero__description {
        font-size: 0.9375rem;
        line-height: 1.65;
    }
}

/* Small Mobile (375px - 575px) */
@media screen and (min-width: 375px) and (max-width: 575px) {
    .donate-hero {
        min-height: 62vh;
        margin-top: 10rem;
    }
    
    .donate-hero__title {
        font-size: 2.1rem;
    }
    
    .donate-hero__description {
        font-size: 1.0625rem;
    }
}

/* Large Mobile / Small Tablet (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .donate-hero {
        min-height: 65vh;
        padding: 8.5rem 1.5rem 4.5rem;
    }
    
    .donate-hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.75rem;
    }
    
    .donate-hero__description {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

/* Notice Section */
.donate-notice {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
}

.notice-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(214, 45, 140, 0.08);
}

.notice-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 16px rgba(214, 45, 140, 0.25);
    margin: 0 auto;
}

.notice-card__icon i {
    font-size: 2.25rem;
    color: var(--white-color);
}

.notice-card__content {
    text-align: center;
}

.notice-card__title {
    font-size: 1.75rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.notice-card__text {
    font-size: 1.0625rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.notice-card__alternative {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(248, 158, 59, 0.08), rgba(255, 193, 7, 0.08));
    border: 2px solid rgba(248, 158, 59, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-card__alt-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    box-shadow: 0 3px 12px rgba(248, 158, 59, 0.2);
    flex-shrink: 0;
}

.notice-card__alt-icon i {
    font-size: 1.25rem;
    color: var(--white-color);
}

.notice-card__alt-text {
    font-size: 0.9375rem;
    color: var(--dark-color);
    line-height: 1.7;
    text-align: left;
}

.notice-card__alt-text strong {
    color: var(--accent-orange);
    font-weight: var(--font-bold);
}

.notice-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50px;
    font-weight: var(--font-semibold);
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(214, 45, 140, 0.2);
}

/* Donation Tiers */
.donation-tiers {
    background: var(--white-color);
    padding: 5rem 0;
}

.tiers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(214, 45, 140, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(214, 45, 140, 0.15);
}

.tier-card--featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(214, 45, 140, 0.2);
}

.tier-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: var(--font-semibold);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(214, 45, 140, 0.3);
}

.tier-card__header {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    color: var(--white-color);
}

.tier-card__header--bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.tier-card__header--silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.tier-card__header--gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.tier-card__name {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-card__amount {
    font-size: 3rem;
    font-weight: var(--font-bold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tier-card__crypto {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.tier-card__content {
    padding: 2rem;
}

.tier-card__impact {
    font-size: 1.125rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.tier-card__benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier-card__benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.tier-card__benefits i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Crypto Wallets Section */
.crypto-wallets {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

/* Crypto Slider */
.crypto-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 3rem;
}

.crypto-slider__container {
    overflow: hidden;
    border-radius: 20px;
}

.crypto-slider__wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Slider Navigation Buttons */
.crypto-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(214, 45, 140, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-slider__nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(214, 45, 140, 0.35);
}

.crypto-slider__nav:active {
    transform: translateY(-50%) scale(0.95);
}

.crypto-slider__nav--prev {
    left: 0;
}

.crypto-slider__nav--next {
    right: 0;
}

/* Slider Indicators */
.crypto-slider__indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.crypto-slider__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(214, 45, 140, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.crypto-slider__indicator:hover {
    background: rgba(214, 45, 140, 0.4);
    transform: scale(1.2);
}

.crypto-slider__indicator.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 32px;
    border-radius: 6px;
}

.wallets__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.wallet-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(214, 45, 140, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.wallet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(214, 45, 140, 0.12);
    border-color: rgba(214, 45, 140, 0.15);
}

.wallet-card--featured {
    border-color: var(--primary-color);
}

.wallet-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: var(--font-semibold);
    box-shadow: 0 2px 8px rgba(214, 45, 140, 0.3);
}

.wallet-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wallet-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white-color);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wallet-card__icon--btc {
    background: linear-gradient(135deg, #f7931a, #e88b17);
}

.wallet-card__icon--eth {
    background: linear-gradient(135deg, #627eea, #5a6fd8);
}

.wallet-card__icon--xmr {
    background: linear-gradient(135deg, #ff6600, #e65c00);
}

.wallet-card__icon--usdt {
    background: linear-gradient(135deg, #26a17b, #229c72);
}

.wallet-card__icon--ltc {
    background: linear-gradient(135deg, #345d9d, #2e5290);
}

.wallet-card__icon--bch {
    background: linear-gradient(135deg, #8dc351, #7eb248);
}

.wallet-card__name {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.wallet-card__network {
    font-size: 0.875rem;
    color: var(--gray-color);
}

.wallet-card__qr {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px dashed rgba(214, 45, 140, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
}

.qr-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.qr-placeholder p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.wallet-card__address {
    margin-top: 1.5rem;
}

.wallet-card__address label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.address-input {
    display: flex;
    gap: 0.5rem;
}

.address-input input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.8125rem;
    color: var(--dark-color);
    background: rgba(214, 45, 140, 0.03);
    transition: all 0.3s ease;
}

.address-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white-color);
}

.copy-btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-weight: var(--font-semibold);
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #b8256f, #621f63);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 45, 140, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

/* Alternative Payment */
.alternative-payment {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(248, 158, 59, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 16px;
}

.alternative-payment__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.alternative-payment__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    box-shadow: 0 4px 16px rgba(248, 158, 59, 0.25);
}

.alternative-payment__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.alternative-payment__text h3 {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.alternative-payment__text p {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.btn--alternative {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    color: var(--white-color);
    border-radius: 12px;
    font-weight: var(--font-semibold);
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(248, 158, 59, 0.2);
    transition: all 0.3s ease;
    align-self: center;
}

.btn--alternative:hover {
    background: linear-gradient(135deg, #e08b2e, #e6a800);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(248, 158, 59, 0.3);
}

/* Trust & Transparency */
.donate-trust {
    background: var(--white-color);
    padding: 5rem 0;
}

.trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.trust-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(214, 45, 140, 0.1);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.12);
}

.trust-stat__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 16px rgba(214, 45, 140, 0.2);
}

.trust-stat__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.trust-stat__number {
    font-size: 3.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-stat__label {
    font-size: 1.0625rem;
    color: var(--gray-color);
    font-weight: var(--font-medium);
}

/* Impact Stories */
.impact-stories {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.03), rgba(123, 45, 126, 0.03));
    border-radius: 16px;
    border: 2px solid rgba(214, 45, 140, 0.1);
}

.impact-stories__title {
    font-size: 1.75rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.impact-stories__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.impact-story {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white-color);
    border-radius: 12px;
    border: 1px solid rgba(214, 45, 140, 0.1);
    transition: all 0.3s ease;
}

.impact-story:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(214, 45, 140, 0.1);
}

.impact-story i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.impact-story p {
    font-size: 0.9375rem;
    color: var(--gray-color);
    line-height: 1.7;
}

/* FAQ Section */
.donate-faq {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(214, 45, 140, 0.06);
    border: 2px solid rgba(214, 45, 140, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(214, 45, 140, 0.12);
    border-color: rgba(214, 45, 140, 0.15);
}

.faq-item__question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.faq-item__question i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.faq-item__answer {
    font-size: 0.9375rem;
    color: var(--gray-color);
    line-height: 1.8;
    padding-left: 2.5rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: var(--font-semibold);
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.3);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 1.25rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile (up to 768px) */
@media screen and (max-width: 767px) {
    .crypto-slider {
        padding: 0 1rem;
    }
    
    .crypto-slider__nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .crypto-slider__nav--prev {
        left: -0.5rem;
    }
    
    .crypto-slider__nav--next {
        right: -0.5rem;
    }
    
    .notice-card__alternative {
        flex-direction: column;
    }
    
    .notice-card__alt-icon {
        align-self: center;
    }
    
    .notice-card__alt-text {
        text-align: center;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item__question {
        font-size: 1rem;
    }
    
    .faq-item__question i {
        font-size: 1.25rem;
    }
    
    .faq-item__answer {
        padding-left: 2rem;
        font-size: 0.875rem;
    }
}

/* Tablets (768px and up) */
@media screen and (min-width: 768px) {
    .donate-hero {
        min-height: 68vh;
        padding: 9rem 2rem 5rem;
        background-attachment: scroll; /* Keep scroll on tablets */
    }
    
    .donate-hero__label {
        font-size: 0.875rem;
        padding: 0.75rem 2rem;
    }
    
    .donate-hero__title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .donate-hero__description {
        font-size: 1.1875rem;
        line-height: 1.85;
    }
    
    .notice-card {
        flex-direction: row;
        text-align: left;
    }
    
    .notice-card__icon {
        margin: 0;
    }
    
    .notice-card__content {
        text-align: left;
    }
    
    .tiers__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wallets__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .impact-stories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop (992px and up) */
@media screen and (min-width: 992px) {
    .donate-hero {
        min-height: 72vh;
        padding: 10rem 2rem 6rem;
        background-attachment: fixed; /* Parallax effect on desktop */
    }
    
    .donate-hero__label {
        font-size: 0.9375rem;
        padding: 0.875rem 2.25rem;
        margin-bottom: 2rem;
    }
    
    .donate-hero__title {
        font-size: 3.75rem;
        margin-bottom: 2.25rem;
        letter-spacing: -1px;
    }
    
    .donate-hero__description {
        font-size: 1.3125rem;
        line-height: 1.9;
        max-width: 700px;
    }
    
    .wallets__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
    .tier-card__content {
        padding: 2.5rem;
    }
}
