.floating-donate-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.floating-donate-btn {
    display: flex;
    align-items: center;
    background-color: #d32f2f; /* Editorial red */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-donate-btn:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.heart-icon {
    margin-right: 8px;
    font-size: 20px;
    color: #ffcdd2;
}

/* Hide text on small mobile screens to keep it compact */
@media (max-width: 768px) {
    .floating-donate-btn {
        padding: 15px;
        border-radius: 50%;
    }
    .btn-text {
        display: none;
    }
    .heart-icon {
        margin-right: 0;
    }
}
