/* FLOATING DONATION BOX - CSS ONLY VERSION */
/* Add this to: Appearance → Additional CSS */

.floating-donation-box-static {
    position: fixed;
    top: 20%;
    right: 20px;
    width: 280px;
    background: linear-gradient(135deg, #a50066 0%, #8a0054 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(165, 0, 102, 0.3);
    z-index: 1000;
}

.floating-donation-box-static h3 {
    color: white;
    font-size: 22px;
    margin: 0 0 15px 0;
    text-align: center;
}

.floating-donation-box-static p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: center;
}

.floating-donation-box-static .donation-btn {
    display: block;
    background: white;
    color: #a50066 !important;
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-donation-box-static .donation-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hide on mobile and tablet */
@media (max-width: 1024px) {
    .floating-donation-box-static {
        display: none;
    }
}

/* MOBILE DONATION WIDGET - CSS */
/* Add this to your existing Additional CSS (below the floating box CSS) */

.mobile-donation-widget {
    background: linear-gradient(135deg, #a50066 0%, #8a0054 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(165, 0, 102, 0.25);
    text-align: center;
    /* Only show on mobile/tablet */
    display: none;
}

.mobile-donation-widget h4 {
    color: white;
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.mobile-donation-widget p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.mobile-donation-widget .donation-btn-mobile {
    display: inline-block;
    background: white;
    color: #a50066 !important;
    text-align: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-donation-widget .donation-btn-mobile:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Show only on tablets and phones */
@media (max-width: 1024px) {
    .mobile-donation-widget {
        display: block;
    }
}

/* Make it more compact on very small phones */
@media (max-width: 480px) {
    .mobile-donation-widget {
        padding: 15px;
        margin: 20px 0;
    }
    
    .mobile-donation-widget h4 {
        font-size: 16px;
    }
    
    .mobile-donation-widget p {
        font-size: 13px;
    }
}