/* Selection Progress Bar Component */

.selection-progress-container {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.selection-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #FF2727 0%, #FF6B7A 50%, #FFB3BA 100%);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 39, 39, 0.6);
    transform-origin: left;
    will-change: width;
}

.selection-progress-bar.animate {
    animation: progressCountdown 8s linear forwards;
}

@keyframes progressCountdown {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* ═════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - Progress Bar
   ═════════════════════════════════════════════════════════════ */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .selection-progress-container {
        height: 10px;
        margin-bottom: 11px;
    }
}

/* Mobile Landscape (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .selection-progress-container {
        height: 10px;
        margin-bottom: 10px;
    }
}

/* Mobile Portrait (375px - 599px) */
@media (max-width: 599px) and (min-width: 375px) {
    .selection-progress-container {
        height: 10px;
        margin-bottom: 10px;
    }
}

/* Small Mobile (< 375px) */
@media (max-width: 374px) {
    .selection-progress-container {
        height: 10px;
        margin-bottom: 9px;
    }
}

/* Landscape orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .selection-progress-container {
        height: 4px;
        margin-bottom: 8px;
    }
}
