/* ========================
   Progress Bar Styles
   ======================== */

/* Linear Progress Bar */
.lp-progress-linear {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.lp-progress-linear .lp-progress-fill {
    height: 100%;
    background: var(--lp-accent, #DC501E);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--lp-accent, #DC501E);
}

@keyframes lp-progress-animation {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 100%; }
}

.lp-progress-linear.lp-animating .lp-progress-fill {
    animation: lp-progress-animation 2s cubic-bezier(0.1, 0.6, 0.35, 1) infinite;
}

/* Circular Progress Ring */
.lp-progress-circular {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-progress-circular svg {
    position: absolute;
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
}

.lp-progress-circle-track {
    fill: none;
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 3;
}

.lp-progress-circle-fill {
    fill: none;
    stroke: var(--lp-accent, #DC501E);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 276;
    stroke-dashoffset: 276;
    transition: stroke-dashoffset 0.3s ease;
}

@keyframes lp-progress-circular-animation {
    0% { stroke-dashoffset: 276; }
    100% { stroke-dashoffset: 0; }
}

.lp-progress-circular.lp-animating .lp-progress-circle-fill {
    animation: lp-progress-circular-animation 2s cubic-bezier(0.1, 0.6, 0.35, 1) infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lp-progress-circular svg {
        width: 100px;
        height: 100px;
    }
}
