.gcc-progress-wrapper{

    width:100%;
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

    position:relative;

}

.gcc-progress-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;

}

.gcc-progress-title{

    font-size:20px;
    font-weight:700;
    color:#1f2937;

}

.gcc-progress-percentage{

    font-size:22px;
    font-weight:700;
    color:#16a34a;

}

.gcc-progress-bar{

    position:relative;
    width:100%;
    height:14px;
    background:#e5e7eb;
    border-radius:100px;
    overflow:hidden;

}

.gcc-progress-fill{

    height:100%;
    background:#16a34a;
    border-radius:100px;
    transition:width .4s ease;

}

.gcc-progress-stage{

    margin-top:18px;
    font-size:15px;
    color:#555;

}

.gcc-progress-stage strong{

    color:#16a34a;

}

/* ------------------------------------
   Stage Timeline
------------------------------------ */

.gcc-stage-timeline{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
    position:relative;
    margin-top:35px;

}

.gcc-stage-item{

    flex:1;
    min-width:70px;
    text-align:center;
    position:relative;
    z-index:2;

}

.gcc-stage-connector{

    position:absolute;

    top:9px;

    left:55%;

    width:90%;

    height:2px;

    z-index:1;

}

.gcc-stage-connector.completed{

    background:#16a34a;

}

.gcc-stage-connector.upcoming{

    background:#d1d5db;

}

.gcc-stage-dot{

    width:20px;
    height:20px;
    border-radius:50%;
    margin:0 auto 10px;
    background:#d1d5db;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:12px;
    font-weight:700;

    position:relative;
    z-index:2;

}

.gcc-completed .gcc-stage-dot{

    background:#16a34a;
    color:#fff;

}

.gcc-current .gcc-stage-dot{

    background:#16a34a;

    box-shadow:
        0 0 0 6px rgba(22,163,74,.15),
        0 0 14px rgba(22,163,74,.6);

}

.gcc-stage-name{

    font-size:14px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:6px;

}

.gcc-stage-price{

    font-size:12px;
    color:#6b7280;

}

@keyframes gcc-pulse{

    0%{

        box-shadow:
            0 0 0 0 rgba(22,163,74,.45);

    }

    70%{

        box-shadow:
            0 0 0 12px rgba(22,163,74,0);

    }

    100%{

        box-shadow:
            0 0 0 0 rgba(22,163,74,0);

    }

}

.gcc-current .gcc-stage-dot{

    animation:gcc-pulse 2s infinite;

}

/* =======================================================
   Mobile Timeline
======================================================= */

@media (max-width:768px){

    .gcc-stage-timeline{

        overflow-x:auto;

        overflow-y:hidden;

        flex-wrap:nowrap;

        justify-content:flex-start;

        gap:18px;

        padding-bottom:10px;

        -webkit-overflow-scrolling:touch;

        scroll-behavior:smooth;

    }

    .gcc-stage-item{

        flex:0 0 85px;

        min-width:85px;

    }

    .gcc-stage-timeline::-webkit-scrollbar{

        display:none;

    }

    .gcc-stage-timeline{

        scrollbar-width:none;

    }

}

/* =======================================================
   Mobile Scroll Fade
======================================================= */

@media (max-width:768px){

    .gcc-progress-wrapper::after{

        content:"";

        position:absolute;

        top:92px;

        right:0;

        width:40px;

        height:150px;

        pointer-events:none;

        background:linear-gradient(
            to left,
            #ffffff,
            rgba(255,255,255,0)
        );

    }

}
