.donation-progress {
    width: 100%;
    background: #f3f3f3;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.progress-label {
    font-family: 'Montserrat', Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #f5b400, #ff7300);
    border-radius: 12px 0 0 12px;
    position: relative;
    transition: width 1s ease-in-out;
}

/* Безперервний бар */
.infinite-fill {
    width: 100% !important;
    background: linear-gradient(120deg,
        #f5b400 0%,
        #ff7300 25%,
        #ffc400 50%,
        #ff7300 75%,
        #f5b400 100%);
    background-size: 300% 100%;
    animation: shimmerFlow 3s ease-in-out infinite;
}

@keyframes shimmerFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.progress-percent {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
}

.raised-locale {
    margin-left: 3px;
}
.raised-goal {
    margin-left: 5px;
}
.progress-percent_infinite {
    font-size: 20px;
}
