/* Order Tracking Progress Bar */
.order-tracking-progress-wrapper {
    position: relative;
    padding: 24px 0 32px 0;
}

.order-tracking-progress-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Line nền xám - chạy từ tâm icon đầu đến tâm icon cuối */
.order-tracking-progress-line-gray {
    position: absolute;
    top: 20px; /* Tâm icon = 40px / 2 = 20px từ top của icon */
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 0;
}

/* Line đỏ - từ tâm step 1 đến tâm step 2 */
.order-tracking-progress-line-red {
    position: absolute;
    top: 20px; /* Tâm icon = 40px / 2 = 20px từ top của icon */
    left: 20px;
    height: 2px;
    width: calc(33.33% - 0px);
    background-color: #dc2626;
    z-index: 1;
}

.order-tracking-progress-step {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-tracking-progress-icon {
    position: relative;
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    border: 2px solid white;
}

.order-tracking-progress-icon.active {
    background-color: #dc2626;
    color: white;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.order-tracking-progress-icon.pending {
    background-color: #e5e7eb;
    color: #9ca3af;
}

.order-tracking-progress-label {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.order-tracking-progress-label.active {
    color: #dc2626;
}

.order-tracking-progress-label.pending {
    color: #9ca3af;
}

@media (max-width: 640px) {
    .order-tracking-progress-wrapper {
        padding: 16px 0 24px 0;
    }
    
    .order-tracking-progress-line-gray {
        top: 16px; /* Tâm icon mobile = 32px / 2 = 16px từ top của icon */
        left: 16px;
        right: 16px;
    }
    
    .order-tracking-progress-line-red {
        top: 16px; /* Tâm icon mobile = 32px / 2 = 16px từ top của icon */
        left: 16px;
    }
    
    .order-tracking-progress-icon {
        width: 32px;
        height: 32px;
    }
    
    .order-tracking-progress-label {
        font-size: 10px;
    }
}

