
.sticky-funding-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #f2e300;
    color: #0b2340;
    padding: 16px 26px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #0b2340;
}

.sticky-funding-btn:hover {
    background: #0b2340;
    color: #f2e300;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.sticky-funding-btn i {
    font-size: 1.2rem;
}

.sticky-funding-btn .btn-dofinansowania {
    font-weight: 700;
    letter-spacing: 0.3px;
}



/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 768px) {
    .sticky-funding-btn {
        bottom: 20px;
        right: 20px;
        padding: 16px 24px;
        font-size: 0.9rem;
    }

    .sticky-funding-btn i {
        font-size: 1.2rem;
    }
}

/* Small Mobile - Tylko ikona */
@media (max-width: 480px) {
    .sticky-funding-btn {
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .sticky-funding-btn .btn-dofinansowania {
        display: none;
    }

    .sticky-funding-btn i {
        font-size: 1.5rem;
        margin: 0;
    }
}
